summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/thuthesis/thuthesis-example.tex
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-06-13 03:02:55 +0000
committerNorbert Preining <norbert@preining.info>2020-06-13 03:02:55 +0000
commit2d0067edb74f15b431d7a1e3a42b4f525986cef0 (patch)
tree06198722777ad0af165eb45b12960c56b226b0cf /macros/latex/contrib/thuthesis/thuthesis-example.tex
parentc2fde990c352049f8aa6bc9629fee95bad518cde (diff)
CTAN sync 202006130302
Diffstat (limited to 'macros/latex/contrib/thuthesis/thuthesis-example.tex')
-rw-r--r--macros/latex/contrib/thuthesis/thuthesis-example.tex75
1 files changed, 75 insertions, 0 deletions
diff --git a/macros/latex/contrib/thuthesis/thuthesis-example.tex b/macros/latex/contrib/thuthesis/thuthesis-example.tex
new file mode 100644
index 0000000000..93113b7a6a
--- /dev/null
+++ b/macros/latex/contrib/thuthesis/thuthesis-example.tex
@@ -0,0 +1,75 @@
+% !TeX encoding = UTF-8
+% !TeX program = xelatex
+% !TeX spellcheck = en_US
+
+\documentclass[degree=master]{thuthesis}
+ % 学位 degree:
+ % doctor | master | bachelor | postdoc
+ % 学位类型 degree-type:
+ % academic(默认)| professional
+
+
+% 论文基本配置,加载宏包等全局配置
+\input{thusetup.tex}
+
+
+\begin{document}
+
+% 封面
+\maketitle
+
+% 使用授权的说明
+\copyrightpage
+% 将签字扫描后授权文件 scan-auth.pdf 替换原始页面
+% \copyrightpage[scan-auth.pdf]
+
+\frontmatter
+\input{data/abstract.tex}
+
+% 目录
+\tableofcontents
+
+% 符号对照表
+\input{data/denotation}
+
+
+% 正文部分
+\mainmatter
+\input{data/chap01}
+\input{data/chap02}
+
+
+% 其它部分
+\backmatter
+
+%% 本科生要求的几个索引。
+% \listoffigures % 插图索引
+% \listoftables % 表格索引
+
+% 参考文献
+\bibliographystyle{thuthesis-numeric} % 顺序编码制
+% \bibliographystyle{thuthesis-author-year} % 著者-出版年制
+% \bibliographystyle{thuthesis-bachelor} % 本科生参考文献的著录格式
+\bibliography{ref/refs}
+
+% 致谢
+\input{data/acknowledgements}
+
+% 声明
+\statement
+% 将签字扫描后的声明n'g statement.pdf 替换原始页面
+% \copyrightpage[statement.pdf]
+
+% 附录
+\appendix
+\input{data/appendix}
+% \input{data/appendix-survey} % 本科生:外文资料的调研阅读报告
+% \input{data/appendix-translation} % 本科生:外文资料的书面翻译
+
+% 个人简历
+\input{data/resume}
+
+% 本科生的综合论文训练记录表
+% \includepdf[pages=-]{scan-record.pdf}
+
+\end{document}