2 Star 2 Fork 0

孙永科/西南林业大学Latex模板

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
<!DOCTYPE html>
<html lang="cn">
<head>
<!-- 2019-11-26 Tue 13:52 -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>《西南林业大学本科毕业论文LaTeX模版》使用说明</title>
<meta name="generator" content="Org mode">
<meta name="author" content="王晓林">
<link rel="stylesheet" href="https://cs6.swfu.edu.cn/org.css" type="text/css">
<script type="text/javascript">
/*
@licstart  The following is the entire license notice for the
JavaScript code in this tag.

Copyright (C) 2012-2019 Free Software Foundation, Inc.

The JavaScript code in this tag is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License (GNU GPL) as published by the Free Software
Foundation, either version 3 of the License, or (at your option)
any later version.  The code is distributed WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.

As additional permission under GNU GPL version 3 section 7, you
may distribute non-source (e.g., minimized or compacted) forms of
that code without the copy of the GNU GPL normally required by
section 4, provided you include this license notice and a URL
through which recipients can access the Corresponding Source.


@licend  The above is the entire license notice
for the JavaScript code in this tag.
*/
<!--/*--><![CDATA[/*><!--*/
 function CodeHighlightOn(elem, id)
 {
   var target = document.getElementById(id);
   if(null != target) {
     elem.cacheClassElem = elem.className;
     elem.cacheClassTarget = target.className;
     target.className = "code-highlighted";
     elem.className   = "code-highlighted";
   }
 }
 function CodeHighlightOff(elem, id)
 {
   var target = document.getElementById(id);
   if(elem.cacheClassElem)
     elem.className = elem.cacheClassElem;
   if(elem.cacheClassTarget)
     target.className = elem.cacheClassTarget;
 }
/*]]>*///-->
</script>
</head>
<body>
<div id="content">
<h1 class="title">《西南林业大学本科毕业论文LaTeX模版》使用说明</h1>
<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#orgfc5bf2c">文件清单</a></li>
<li><a href="#org3e7ff43">各文件的使用说明</a>
<ul>
<li><a href="#org7a0a69a">swfuthesis.cls</a></li>
<li><a href="#org2f9727a">tutorial &#x2014; 一个可以当模板用的小教程</a></li>
</ul>
</li>
<li><a href="#org74f5f36">注意事项</a></li>
</ul>
</div>
</div>

<div id="outline-container-orgfc5bf2c" class="outline-2">
<h2 id="orgfc5bf2c">文件清单</h2>
<div class="outline-text-2" id="text-orgfc5bf2c">
<p>
本模版的最新版本可以从 <a href="https://github.com/wx672/texmf/tree/master/doc/latex/swfu/swfcthesis/tutorial">github</a> 下载。 模版目录中包含如下内容:
</p>
<ul class="org-ul">
<li><a href="./swfuthesis.cls"><b>swfuthesis.cls</b></a> &#x2014; 是论文模版的class文件,它决定了论文的排版格式</li>
<li><a href="./readme.html"><b>readme.html</b></a> &#x2014; 本说明文件</li>
<li><a href="./tutorial"><b>tutorial</b></a> &#x2014; 小教程,同时也是一个标准模板。其中包括
<ul class="org-ul">
<li><a href="tutorial/tutorial.tex"><b>tutorial.tex</b></a> &#x2014; 源文件</li>
<li><a href="tutorial/tutorial.pdf"><b>tutorial.pdf</b></a> &#x2014; 编译好的PDF</li>
<li><a href="tutorial/tutorial.bib"><b>tutorial.bib</b></a> &#x2014; 参考文献</li>
<li><a href="./tutorial/tutorial.mkv"><b>tutorial.mkv</b></a> &#x2014; 20分钟视频教程</li>
</ul></li>
</ul>
</div>
</div>

<div id="outline-container-org3e7ff43" class="outline-2">
<h2 id="org3e7ff43">各文件的使用说明</h2>
<div class="outline-text-2" id="text-org3e7ff43">
</div>
<div id="outline-container-org7a0a69a" class="outline-3">
<h3 id="org7a0a69a">swfuthesis.cls</h3>
<div class="outline-text-3" id="text-org7a0a69a">
<ul class="org-ul">
<li>通常你不需要改动 <a href="./swfuthesis.cls"><code>swfuthesis.cls</code></a> 文件,将 <code>\documentclass{swfuthesis}</code> 做为TeX文件的开始即可。</li>
<li>写论文时,请参照 <a href="./tutorial/tutorial.tex"><code>tutorial.tex</code></a> 文件的开始部分。</li>
</ul>
</div>
</div>
<div id="outline-container-org2f9727a" class="outline-3">
<h3 id="org2f9727a">tutorial &#x2014; 一个可以当模板用的小教程</h3>
<div class="outline-text-3" id="text-org2f9727a">
<ul class="org-ul">
<li><p>
<a href="tutorial/tutorial.tex"><b>tutorial.tex</b></a> &#x2014; 源文件
</p>

<p>
编译:
</p>
<pre class="example">
latexmk tutorial
</pre>

<p>
前提是你安装并配置好了 <code>latexmk</code> 。你可以参考我的 <a href="https://github.com/wx672/dotfile/blob/master/dot.latexmkrc"><code>.latexmkrc</code></a> 文件。
</p></li>
</ul>
</div>
</div>
</div>


<div id="outline-container-org74f5f36" class="outline-2">
<h2 id="org74f5f36">注意事项</h2>
<div class="outline-text-2" id="text-org74f5f36">
<ol class="org-ol">
<li>不要随意改动你不理解的东西,以免造成不必要的麻烦。</li>
<li>建议用 <code>Emacs + AucTeX</code> 来编辑TeX文件。</li>
<li>如有任何问题或建议,欢迎 <a href="mailto:wx672ster@gmail.com">email</a> 联系。</li>
</ol>
</div>
</div>
</div>
<div id="postamble" class="status">
<p class="author">Author: 王晓林</p>
<p class="date">Created: 2019-11-26 Tue 13:52</p>
<p class="validation"><a href="http://validator.w3.org/check?uri=referer">Validate</a></p>
</div>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TeX/LaTeX
1
https://gitee.com/sunyongke/swfu-latex.git
git@gitee.com:sunyongke/swfu-latex.git
sunyongke
swfu-latex
西南林业大学Latex模板
master

搜索帮助