summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/thuthesis/example/main.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/thuthesis/example/main.tex')
-rw-r--r--Master/texmf-dist/doc/latex/thuthesis/example/main.tex64
1 files changed, 64 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/thuthesis/example/main.tex b/Master/texmf-dist/doc/latex/thuthesis/example/main.tex
new file mode 100644
index 00000000000..82199808dc4
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/thuthesis/example/main.tex
@@ -0,0 +1,64 @@
+%%% Local Variables:
+%%% mode: latex
+%%% TeX-master: t
+%%% End:
+
+\documentclass[doctor]{thuthesis}
+% \documentclass[bachelor|master|doctor,dvips|dvipdfm,secret,openany|openright,arialtoc,arialtitle]{thuthesis}
+
+% 所有其它可能用到的包都统一放到这里了,可以根据自己的实际添加或者删除。
+\usepackage{thutils}
+
+% 你可以在这里修改配置文件中的定义,导言区可以使用中文。
+% \def\myname{薛瑞尼}
+
+\begin{document}
+
+% 定义所有的eps文件在 figures 子目录下
+\graphicspath{{figures/}}
+
+
+%%% 封面部分
+\frontmatter
+\input{data/cover}
+\makecover
+
+% 目录
+\tableofcontents
+
+% 符号对照表
+\input{data/denotation}
+
+
+%%% 正文部分
+\mainmatter
+\include{data/chap01}
+\include{data/chap02}
+
+
+%%% 其它部分
+\backmatter
+% 插图索引
+\listoffigures
+% 表格索引
+\listoftables
+% 公式索引
+\listofequations
+
+
+% 参考文献
+\bibliographystyle{thubib}
+\bibliography{ref/refs}
+
+
+% 致谢
+\include{data/ack}
+
+% 附录
+\begin{appendix}
+\input{data/appendix01}
+\end{appendix}
+
+% 个人简历
+\include{data/resume}
+\end{document}