cucthesis
Author
blueloveTH
Last Updated
3 years ago
License
LaTeX Project Public License 1.3c
Abstract
Thesis Template of Communication University of China
Thesis Template of Communication University of China
% 完整编译: xelatex -> bibtex -> xelatex -> xelatex
\documentclass[UTF8,AutoFakeBold=1,AutoFakeSlant,zihao=-4]{cucugthesis}
\usepackage{enumerate}
\usepackage{algorithm}
\usepackage{algorithmicx}
\usepackage{algpseudocode}
\floatname{algorithm}{算法}
\renewcommand{\algorithmicrequire}{\textbf{输入:}}
\renewcommand{\algorithmicensure}{\textbf{输出:}}
% 在这里填写你的论文题目
\newcommand{\thesisTitle}{如何使用{\LaTeX}生成本科毕业论文} % 论文的中文名称
\newcommand{\thesisTitleEN}{Generation of an Undergraduate Thesis Using {\LaTeX}} % 论文的英文名称
% 在这里填写你的相关信息
\newcommand{\yourDept}{计算机与网络空间安全学院}
\newcommand{\yourMajor}{计算机科学与技术}
\newcommand{\yourName}{张同学}
\newcommand{\yourNameEN}{Y. Zhang}
\newcommand{\yourClass}{2017级计算机科学与技术}
\newcommand{\yourMentor}{周老师}
\newcommand{\studentID}{201720111222333}
\begin{document}
% 封面(自动生成)
\coverpage
% 中文摘要
\begin{abstract}
在准备毕业论文的过程中,学生们经常会被文本格式的设置与调整等问题所困扰。究其原因主要有以下两点:(1)使用Microsoft Word进行论文的编辑与排版,能够产生``得所见即所得''的效果,但是格式的设置通常非常繁琐,大家需要从准备毕业设计工作中分出很多时间与精力来投入其中。(2)一旦学院对本科毕业论文的格式有所调整,传达给学生时很难保证大家都能领会新的要求并完全执行到位。因此,我们准备了一个本科毕业设计的Latex模板,连同论文格式的类文件一同提供给大家。希望能够为大家在准备毕业论文的过程中减轻负担,能够生成排版质量精美的论文。
\keywords{本科毕业论文;{\LaTeX}模板;排版} % 中文关键词
\end{abstract}
% 英文摘要
\begin{abstractEN}
Here comes the English version of your abstract...
\keywordsEN{undergraduate thesis, {\LaTeX}, typesetting} % 英文关键词
\end{abstractEN}
% 目录(自动生成)
\contentpage
\include{section_01} % 第一章,在保存.tex文件时一定使用UTF-8编码。
\include{section_02} % 第二章
\include{section_03} % 第三章
\include{section_04}
\include{section_05}
% 参考文献数据库(所有需要引用的参考文献写入references.bib文件中)
\begin{references}
\bibliography{references.bib}
\end{references}
\appendix
\include{appendix_A} % 附件A,如果没有可以将此部分内容做成注释或删除即可
%\nonumsection{后记} % 如果不需要,请将此部分内容做成注释或删除即可
%后记一般用于就某个问题提出引人深思的看法,让读者能够进行更深层次的思考。
\end{document}