91 lines
2.6 KiB
TeX
Executable File
91 lines
2.6 KiB
TeX
Executable File
% !TEX program = xelatex
|
||
|
||
%1. 规范硕士导言
|
||
% \documentclass[master,ttf]{nudtpaper}
|
||
%2. 规范博士导言
|
||
% \documentclass[doctor,twoside,ttf]{nudtpaper}
|
||
%3. 建议使用OTF字体获得较好的页面显示效果
|
||
% OTF字体从网上获得,各个系统名称统一。
|
||
% 如果你下载的是最新的(1201)OTF英文字体,建议修改nudtpaper.cls,使用
|
||
% Times New Roman PS Std
|
||
% \documentclass[doctor,twoside,otf]{nudtpaper}
|
||
% 另外,新版的论文模板提供了方正字体选项FZ,效果也不错哦
|
||
% \documentclass[doctor,twoside,fz]{nudtpaper}
|
||
%4. 如果想生成盲评,传递anon即可,仍需修改个人成果部分
|
||
% \documentclass[master,otf,anon]{nudtpaper}
|
||
%
|
||
|
||
\documentclass[master,otf,twoside]{nudtpaper}
|
||
\usepackage{mynudt}
|
||
\classification{TP301}
|
||
\serialno{15060025}
|
||
\confidentiality{公开}
|
||
\UDC{004.41}
|
||
|
||
% 面向开源社区的高效代码审查技术研究
|
||
|
||
% \title{面向大众化贡献的高效代码审查技术研究}
|
||
% \displaytitle{面向大众化贡献的高效代码审查技术研究}
|
||
\title{面向大众化协同开发的贡献审查关键技术研究}
|
||
\displaytitle{面向大众化协同开发的贡献审查关键技术研究}
|
||
\entitle{Research on Contribution Review of Crowdsourcing Collaborative Development}
|
||
|
||
\zhdate{\zhtoday}
|
||
\endate{\entoday}
|
||
|
||
\author{李志星}
|
||
\enauthor{LI Zhixing}
|
||
\supervisor{尹刚\quad{}副研究员}
|
||
% \cosupervisor{王五\quad{}副教授} % 没有就空着
|
||
\ensupervisor{Associate Prof. Yin Gang}
|
||
|
||
\subject{计算机科学与技术}
|
||
\ensubject{Computer Science and Technology}
|
||
|
||
\researchfield{群体化软件开发}
|
||
|
||
% \encosupervisor{}
|
||
\papertype{工学}
|
||
\enpapertype{Engineering}
|
||
% 加入makenomenclature命令可用nomencl制作符号列表。
|
||
|
||
\begin{document}
|
||
\graphicspath{{figures/}}
|
||
% 制作封面,生成目录,插入摘要,插入符号列表 \\
|
||
% 默认符号列表使用denotation.tex,如果要使用nomencl \\
|
||
% 需要注释掉denotation,并取消下面两个命令的注释。 \\
|
||
% cleardoublepage% \\
|
||
% printnomenclature% \\
|
||
\maketitle
|
||
\frontmatter
|
||
\tableofcontents
|
||
\listoftables
|
||
\listoffigures
|
||
|
||
\midmatter
|
||
|
||
\input{data/abstract}
|
||
\input{data/denotation}
|
||
|
||
%书写正文,可以根据需要增添章节; 正文还包括致谢,参考文献与成果
|
||
\mainmatter
|
||
\input{data/introduction}
|
||
\input{data/chap02}
|
||
\input{data/chap03}
|
||
\input{data/chap04}
|
||
\input{data/conclusion}
|
||
\input{data/ack}
|
||
|
||
\phantomsection
|
||
\addcontentsline{toc}{chapter}{参考文献}
|
||
\bibliographystyle{bstutf8}
|
||
\bibliography{ref/refs}
|
||
|
||
\input{data/resume}
|
||
% 最后,需要的话还要生成附录,全文随之结束。
|
||
\appendix
|
||
\backmatter
|
||
\input{data/appendix01}
|
||
|
||
\end{document}
|