-
Notifications
You must be signed in to change notification settings - Fork 1
/
thesis.tex
114 lines (106 loc) · 3.37 KB
/
thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
%%
%% This is file `thesis.tex',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% nudtpaper.dtx (with options: `thesis')
%%
%% This is a generated file.
%%
%% Copyright (C) 2012 by Liu Benyuan <liubenyuan@gmail.com>
%%
%% This file may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either version 1.3a
%% of this license or (at your option) any later version.
%% The latest version of this license is in:
%%
%% http://www.latex-project.org/lppl.txt
%%
%% and version 1.3a or later is part of all distributions of LaTeX
%% version 2004/10/01 or later.
%%
%% To produce the documentation run the original source files ending with `.dtx'
%% through LaTeX.
%%
%% Any Suggestions : LiuBenYuan <liubenyuan@gmail.com>
%% Thanks Xue Ruini <xueruini@gmail.com> for the thuthesis class!
%% Thanks sofoot for the original NUDT paper class!
%%
%1. 规范硕士导言
% \documentclass[master,ttf]{nudtpaper}
%2. 规范博士导言
% \documentclass[doctor,twoside,ttf]{nudtpaper}
%3. 如果使用是Vista
% \documentclass[master,ttf,vista]{nudtpaper}
%4. 建议使用OTF字体获得较好的页面显示效果
% OTF字体从网上获得,各个系统名称统一,不用加vista选项
% 如果你下载的是最新的(1201)OTF英文字体,建议修改nudtpaper.cls,使用
% Times New Roman PS Std
% \documentclass[doctor,twoside,otf]{nudtpaper}
%5. 如果想生成盲评,传递anon即可,仍需修改个人成果部分
% \documentclass[master,otf,anon]{nudtpaper}
%
\documentclass[master,otf,twoside]{nudtpaper}
\usepackage{mynudt}
\classification{TP393}
\serialno{11060065}
\confidentiality{公开}
\UDC{004}
%% \title{国防科大学位论文\LaTeX{}模板\\使用手册}
\title{函数式并行程序语言研究}
%% \displaytitle{国防科学技术大学学位论文\LaTeX{}模板}
\displaytitle{函数式并行程序语言研究}
\author{苏醒}
\zhdate{\zhtoday}
\entitle{Research on Parallel Functional Programming Language}
\enauthor{Su Xing}
\endate{\entoday}
\subject{计算机科学与技术}
\ensubject{Computer Science and Technology}
\researchfield{系统软件}
\supervisor{窦文华\quad{}教授}
%% \cosupervisor{王五\quad{}副教授} % 没有就空着
\ensupervisor{Professor Dou Wenhua}
%% \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/chap01}
\input{data/chap02}
\input{data/chap03}
\input{data/chap04}
\input{data/chap05}
\input{data/chap06}
%\input{data/help}
\input{data/ack}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{参考文献}
\bibliographystyle{bstutf8}
\bibliography{ref/refs}
\input{data/resume}
\input{data/resume2}
% 最后,需要的话还要生成附录,全文随之结束。
\appendix
\backmatter
\input{data/appendix01}
\input{data/appendix02}
\end{document}