diff options
author | Karl Berry <karl@freefriends.org> | 2020-06-12 21:01:26 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-06-12 21:01:26 +0000 |
commit | c862b5452d8ad2e4a80b25807e1b9bc4de5ce938 (patch) | |
tree | b5a1a003049f3ab18c359a1573e76bccbfa733b6 /Master/texmf-dist/doc/latex/thuthesis/thuthesis-example.tex | |
parent | beb3e9e089df5acf554296e64bf8595f97491281 (diff) |
thuthesis (12jun20)
git-svn-id: svn://tug.org/texlive/trunk@55523 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/thuthesis/thuthesis-example.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/thuthesis/thuthesis-example.tex | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/thuthesis/thuthesis-example.tex b/Master/texmf-dist/doc/latex/thuthesis/thuthesis-example.tex new file mode 100644 index 00000000000..93113b7a6a7 --- /dev/null +++ b/Master/texmf-dist/doc/latex/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} |