This repository has been archived by the owner on Mar 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4b52e52
Showing
25 changed files
with
2,691 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.aux | ||
.log | ||
.lof | ||
.lot | ||
.bbl | ||
.blg | ||
.thm | ||
.toc | ||
.out | ||
.loa | ||
.synctex.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2015 whzecomjm | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# 南科大毕业论文LaTex模板 | ||
本模板主要基于中科大的毕业论文模板修改而成,由一个学长修改成南科大格式,原[repo](https://github.com/whzecomjm/sustcthesis)。我主要做了如下修改: | ||
1. 添加了适用于Linux/Unix的脚本用于生成/清理PDF文件 | ||
2. 修改了新版的校徽和校名。 | ||
3. 删除不必要的信息。 | ||
|
||
![screenshot 2019-03-24 23.33.42](https://ws4.sinaimg.cn/large/006tKfTcgy1g1eb6auhdmj30kq0qx775.jpg) | ||
|
||
## 目录结构 | ||
|
||
1. `bib`存放**Bibtex**引用文件。 | ||
2. `figures` 存放图片文件。 | ||
3. `chapter`存放章节`tex`文件。 | ||
4. `main.pdf`输出论文 | ||
|
||
## 编译: | ||
|
||
本模板使用XeLaTeX进行编译,编译流程如下: | ||
|
||
<center>XeLaTex -> BibTeX -> XeLaTeX * 2</center> | ||
|
||
### 1. Mac & Linux | ||
|
||
```shell | ||
# 生成PDF | ||
$ chmod +x make clean | ||
$ ./make | ||
# 清理 | ||
$ ./clean | ||
``` | ||
|
||
### 2. Windows | ||
|
||
点击`make.bat`或者`clean.bat`. | ||
|
||
效果请查看样例[PDF](). | ||
|
||
## Tips | ||
|
||
推荐在Mac下使用**MacTeX**,Windows下使用**TeXlive**. |
Empty file.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
\begin{cnabstract} | ||
本文主要说明了.... | ||
|
||
\keywords{关键词1, 关键词2} | ||
\end{cnabstract} | ||
|
||
\begin{enabstract} | ||
English Abstract Here | ||
|
||
\enkeywords{keyword1, keyword2} | ||
\end{enabstract} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
\chapter{Experiment Results} | ||
\label{chap:appA} | ||
Some descriptions here. | ||
\section{Subsection} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
\chapter{Preface} | ||
\label{chap:chap-preface} | ||
\vskip 28pt | ||
|
||
\begin{flushright} | ||
|
||
Alan Mathison Turing | ||
|
||
March, 2019 at SUSTech | ||
|
||
\end{flushright} | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
\chapter{} | ||
\label{chap:chap-two} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
\chapter*{Conclusions} | ||
\label{chap:conclusion} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
\begin{denotation} | ||
\item[$\mathbb{Q}$] rational number field | ||
\end{denotation} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
\chapter*{诚信承诺书} | ||
\label{chap:honest} | ||
|
||
\begin{enumerate} | ||
\item 本人郑重承诺所呈交的毕业设计(论文),是在导师的指导下,独立进行研究工作所取得的成果,所有数据、图片资料均真实可靠。 | ||
\item 除文中已经注明引用的内容外,本论文不包含任何其他人或集体已经发表或撰写过的作品或成果。对本论文的研究作出重要贡献的个人和集体,均已在文中以明确的方式标明。 | ||
\item 本人承诺在毕业论文(设计)选题和研究内容过程中没有抄袭他人研究成果和伪造相关数据等行为。 | ||
\item 在毕业论文(设计)中对侵犯任何方面知识产权的行为,由本人承担相应的法律责任。 | ||
\end{enumerate} | ||
|
||
\vskip 3\baselineskip | ||
|
||
|
||
\begin{flushright} | ||
|
||
作者签名: \underline{\hspace{4cm}} | ||
\vskip \baselineskip | ||
\underline{\hspace{1.4cm}}年\underline{\hspace{0.7cm}}月\underline{\hspace{0.7cm}}日 | ||
|
||
\end{flushright} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
\chapter{Introduction} | ||
\label{chp:introduction} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
\begin{thanks} | ||
感谢所有为此\LaTeX{}模板做出贡献的人 | ||
\vskip 18pt | ||
|
||
\begin{flushright} | ||
|
||
Alan Mathison Turing | ||
|
||
March, 2019 | ||
|
||
\end{flushright} | ||
|
||
\end{thanks} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
find . -name '*.aux' -delete | ||
find . -name '*.log' -delete | ||
find . -name '*.lof' -delete | ||
find . -name '*.bbl' -delete | ||
find . -name '*.blg' -delete | ||
find . -name '*.thm' -delete | ||
find . -name '*.toc' -delete | ||
find . -name '*.out' -delete | ||
find . -name '*.loa' -delete | ||
find . -name '*.synctex.gz' -delete |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
del *.aux /s | ||
del *.log /s | ||
del *.lof /s | ||
del *.lot /s | ||
del *.bbl /s | ||
del *.blg /s | ||
del *.thm /s | ||
del *.toc /s | ||
del *.out /s | ||
del *.loa /s |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
% !TEX program = xelatex | ||
\documentclass[bachelor,openright,notchinese]{sustcthesis} | ||
% 默认twoside 双面打印 | ||
% 将master修改为bachelor, doctor or master | ||
% 要使用adobe字体,添加adobefonts选项 | ||
% 使用euler数学字体,如不愿使用,去掉euler | ||
% 使用外文写作,请添加notchinese | ||
|
||
% 设置图形文件的搜索路径 | ||
\graphicspath{{figures/}} | ||
|
||
% 用到的宏包 | ||
\usepackage{algorithmicx} | ||
|
||
|
||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
%% 封面部分 | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% 中文封面内容 | ||
\title{毕业论文}%一般情况下扉页和封皮、书脊共用一个标题文本,可以不用定义\spinetitle(仅硕博有用), \covertitle(本硕博均有用)和\encovertitle(仅本科有用)。特殊情况见下。 | ||
%特殊情况1:本例中\title命令里含有换行控制字符,这会导致制作书脊的时候出现错误,例如如果你注释掉\spinetitle{...}这一行就会报错。这时需要定义一个不含换行等命令的\spinetitle,这并不表示\spinetitle里不能有任何命令——只能使用有限的命令。 | ||
%特殊情况2:本例中标题过长,所以需要缩小书脊标题的字号。 | ||
%特殊情况3:本例中中英文混排,由于tex竖排的原理限制,中英文基线不重合,所以需要人工调整英文的基线。具体调整量根据不同字体有所不同。 | ||
%\covertitle{六次循环域} | ||
%\covertitle{中文题目第一行\\中文题目第二行} | ||
%不要在此调整封皮字体大小! Do not set Cover Page font size here! | ||
%特殊情况4:本例中\title中含有多个换行,导致标题超过了两行。根据制本厂规定,封皮标题不能超过两行。因此需要定义封皮使用的标题\covertitle. 如果你注释掉这一行,就会发现封皮不符合规定。 | ||
%\encovertitle{On Cyclic Sextic Fields} | ||
%\encovertitle{English Title Line 1\\English Title Line 2\\English Title Line 3} | ||
%不要在此调整封皮字体大小! Do not set Cover Page font size here! | ||
%特殊情况5:仅本科生有用。本科封皮中有英文标题,不超过三行。与上类似。 | ||
\author{张 \ 三 } | ||
\depart{计算机科学与工程}%系别,硕博请用系代号,本科请用全称如 | ||
\major{计算机专业}%专业,硕博请用全称,本科不需要 | ||
\advisor{XXXX \ 教授} | ||
% \coadvisor{XXX\ 教授,\ XXX\ 教授}%第二导师,没有请注释掉 | ||
\studentid{XXXXX}%For bachelor only | ||
\submitdate{二〇一九年三月} | ||
|
||
% 英文封面内容 | ||
\entitle{Bachelor Thesis} | ||
\enauthor{Alan Mathison Turing} | ||
\studentid{XXXX} | ||
\endepart{Computer Science and Engineering} | ||
\enmajor{Computer Science} | ||
\enadvisor{Prof. XXX} | ||
% \encoadvisor{} | ||
% \encoadvisorsec{} | ||
\ensubmitdate{March, 2019} | ||
|
||
\begin{document} | ||
|
||
% 封面 | ||
\maketitle | ||
|
||
%特别注意,以下述顺序为准,在对应部分添加文档部件,切勿颠倒顺序: | ||
%本科论文的文档部件顺序是: | ||
% frontmatter:致谢、目录、中文摘要、英文摘要、 | ||
% mainmatter: 正文章节 | ||
% backmatter: 参考文献或资料注释、附录 | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
%% 前言部分 | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
\frontmatter | ||
\makeatletter | ||
|
||
\ifustc@bachelor | ||
%%%%%%%%%%%%%%%%% | ||
%本科论文修改这里 | ||
%%%%%%%%%%%%%%%%% | ||
% 致谢 | ||
\include{chapter/honest} | ||
\include{chapter/chap-preface} | ||
|
||
|
||
%目录部分 | ||
%目录 | ||
\tableofcontents | ||
%默认表格、插图、算法索引名称分别为“表格索引”、“插图索引”和“算法索引” | ||
%如果需要自行修改lot,lof,loa的名称,请定义 | ||
%\ustclotname{...} | ||
%\ustclofname{...} | ||
%\ustcloaname{...} | ||
|
||
% 表格索引 | ||
%\ustclot | ||
% 插图索引 | ||
%\ustclof | ||
%算法索引 | ||
%如果需要使用算法环境并列出算法索引,请加入补充宏包。 | ||
%\ustcloa | ||
|
||
% 摘要 | ||
\include{chapter/abstract}%此文件中含有中英文摘要 | ||
\include{chapter/denotation} | ||
|
||
\else | ||
%%%%%%%%%%%%%%%%% | ||
%硕博论文修改这里 | ||
%%%%%%%%%%%%%%%%% | ||
% 摘要 | ||
\include{chapter/abstract}%此文件中含有中英文摘要 | ||
% 目录 | ||
\tableofcontents | ||
%默认表格、插图、算法索引名称分别为“表格索引”、“插图索引”和“算法索引” | ||
%如果需要自行修改lot,lof,loa的名称,请定义 | ||
%\ustclotname{...} | ||
%\ustclofname{...} | ||
%\ustcloaname{...} | ||
|
||
% 表格索引 | ||
\ustclot | ||
% 插图索引 | ||
\ustclof | ||
%算法索引 | ||
%如果需要使用算法环境并列出算法索引,请加入补充宏包。 | ||
%\ustcloa | ||
|
||
%符号说明,需要加入补充包 | ||
\include{chapter/denotation}%不是必需的,如果不想列出请注释掉 | ||
\fi | ||
\makeatother | ||
|
||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
%% 正文部分 | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
\mainmatter | ||
\include{chapter/introduction} | ||
%自行添加 | ||
\include{chapter/chapter2} | ||
\include{chapter/conclusion} | ||
|
||
|
||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
%% 附件部分 | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
\backmatter | ||
%结语 | ||
|
||
% 参考文献 | ||
% 使用 BibTeX | ||
% 选择参考文献的排版格式。注意ustcbib这个格式不保证完全符合要求,请自行决定是否使用 | ||
\bibliographystyle{sustcbib}%{GBT7714-2005NLang-UTF8} | ||
\bibliography{bib/tex} | ||
\nocite{*} % for every item | ||
% 不使用 BibTeX | ||
% \include{chapter/bib} | ||
% 附录,没有请注释掉 | ||
\begin{appendix} | ||
|
||
\include{chapter/chap-appA} | ||
|
||
\end{appendix} | ||
\include{chapter/thanks} | ||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
./clean | ||
xelatex main | ||
bibtex main | ||
xelatex main | ||
xelatex main | ||
./clean | ||
open main.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
call clean | ||
|
||
xelatex main | ||
|
||
bibtex main | ||
|
||
xelatex main | ||
|
||
xelatex main | ||
call clean | ||
main.pdf |
Oops, something went wrong.