summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/cquthesis/main.tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-06-11 23:07:59 +0000
committerKarl Berry <karl@freefriends.org>2016-06-11 23:07:59 +0000
commit05fd0dcbb7c348f3e41ed7d500a2e2cf64f7c4b4 (patch)
tree7a20c14f00aaaafeddbff95a81fedc959289b16f /Master/texmf-dist/doc/latex/cquthesis/main.tex
parent876b86d0b964599f049d2ae7d670b73308961d4a (diff)
cquthesis (11jun16)
git-svn-id: svn://tug.org/texlive/trunk@41372 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/cquthesis/main.tex')
-rw-r--r--Master/texmf-dist/doc/latex/cquthesis/main.tex80
1 files changed, 80 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/cquthesis/main.tex b/Master/texmf-dist/doc/latex/cquthesis/main.tex
new file mode 100644
index 00000000000..d51b68c3c77
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/cquthesis/main.tex
@@ -0,0 +1,80 @@
+% !TeX encoding = UTF-8
+%% \textbf{重庆大学}通用毕业论文\LaTeXe{}模板
+%%% 使用前请先阅读使用文档和用户协议,内有详细介绍。Happy Texing! :)
+%% =======================================================
+\documentclass%
+ [type=bachelor, ]{cquthesis}%
+% 可用选项:
+% type=[bachelor|master|doctor], % 必选,毕业论文类型,以下项目不填时为默认
+% liberalformat, % 可选,仅适用本科生,使用文学类论文标题格式,默认未打开
+% proffesionalmaster=[true|false], % 可选,仅适用研究生,是(true)否(false)专业硕士,默认为否
+% printmode=[oneside|twoside|auto], % 可选,论文打印方式,默认采用auto按页数要求自动判定
+% openany,|openright, % 可选,双面打印时每章的第一页仅右页开启,默认左右页开启(openany)
+% seriftoc, % 可选,目录中的不同级别采用不同的字号和字体,适用于三级标题很多的情况
+% continuoustoc, % 可选,目录和索引不会自动新开一页,适用于索引内容较少时
+% draft, % 写作期间可选,不渲染图片,关闭外围功能,加快预览速度,默认未开启
+
+% 请在cquthesis.sty文件中定义其他会用到的宏包和自己的变量
+% 这样可以防止main.tex太过臃肿。
+\usepackage{cquthesis}
+
+% 定义所有的图片文件在 figures 子目录下
+\graphicspath{{figures/}}
+
+%*** 写作时,使用这个命令只渲染你想查看的部分,提升工作效率,定稿时注释掉整行
+%\includeonly{contents/experiment,contents/analysis,}
+
+\begin{document}
+
+\input{contents/cover}
+\makecover %%% 封面部分
+
+
+\frontmatter %%%前置部分(封面后绪论前)
+%% 摘要
+\makeabstract
+%% 目录,注意需要多次编译才能更新
+\tableofcontents
+%% 插图索引,可选,如不用可注释掉
+\listoffigures
+%% 表格索引,可选
+\listoftables
+%% 公式索引,可选
+\listofequations
+%% 符号对照表,可选
+\input{contents/denotation}
+
+
+\mainmatter %%% 主体部分(绪论开始,结论为止)
+%* 子文件的多少和内容由你决定(最好以章为单位),基本原则是提速预览、脉络清晰、管理容易。
+
+
+\include{contents/introduction}
+\include{contents/experiment}
+\include{contents/analysis}
+\include{contents/conclusion}
+%\include{contents/yourFreeChoise}
+
+
+\backmatter %%% 后置部分(致谢、参考文献、附录等)
+
+
+%% 致谢
+\include{contents/ack}
+%% 参考文献
+% 顺序编码制:cqunumerical
+% 注意:至少需要引用一篇参考文献,否则下面两行会引起编译错误。
+\bibliographystyle{cqunumerical}
+\bibliography{ref/refs}
+
+
+%% 附录(按ABC...分节,证明、推导、程序、个人简历等)
+\appendix
+
+% 个人简历
+\include{contents/appendix}
+%% 原创声明和授权说明书,可选:用扫描页替换
+%\cquauthpage[contents/authscan.pdf]
+\cquauthpage
+
+\end{document}