-
Notifications
You must be signed in to change notification settings - Fork 35
/
nputhesis.dtx
1228 lines (1183 loc) · 42.4 KB
/
nputhesis.dtx
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% \iffalse meta-comment
% !TeX program = XeLaTeX
% !TeX encoding = UTF-8
%
% Copyright (C) 2020 by Zongze Yang <yangzongze@gmail.com>
%
% It may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3b
% of this license or (at your option) any later version.
% The latest version of this license is in
% https://www.latex-project.org/lppl.txt
% and version 1.3b or later is part of all distributions of LaTeX
% version 2005/12/01 or later.
%
%<*internal>
\iffalse
%</internal>
%<*readme>
* NPU 博士、硕士学位论文 \LaTeX 模板
=nputhesis= 是基于\LaTeX 的 =ctexbook= 文类编写的[[https://www.nwpu.edu.cn][西北工业大学]]博士、硕士论文格式文类, 基本实现了[[http://gs.nwpu.edu.cn/info/2021/5046.htm][博士、硕士学位论文撰写规定]]的要求.
** \TeX 环境
=sample.tex= 源文件使用 =UTF8= 编码在 =TeXLive 2019= 下使用引擎 =xelatex= 及 =pdflatex=
编译通过. 其他环境未测试.
(* 推荐使用新版 =TeXLive= 下的 =xelatex= 进行编译 *)
** 如何使用
1. 如何使用该文类
在 \TeX 文档开头使用 =nputhesis= 文类即可, 如
=\documentclass[twoside,UTF8,phd,AutoFakeBold]{nputhesis}=.
这里使用 =AutoFakeBold= 为外封面的字体加黑. 在 TeXLive 2019 之前的版本中,
启用该选项将导致 =xelatex= 编译生成的 =pdf= 文件内容复制时显示为乱码, 进而导致查重报告显示为乱码.
解决方法有以下三种:
1) 升级 TeXLive 到 2019 版.
2) 使用 Adobe 字体. 首先自行下载安装 Adobe 字体, 然后在 =tex= 源文件导言区重新定义相关字体, 如
#+BEGIN_SRC tex
\documentclass[twoside, UTF8, phd, dbr, AutoFakeBold]{nputhesis}
% 导言区
\renewcommand{\songti}{\CJKfontspec{Adobe Song Std L}} % adobe 宋体
\renewcommand{\kaishu}{\CJKfontspec{Adobe Kaiti Std R}} % adobe 楷体
\renewcommand{\heiti}{\CJKfontspec{Adobe Heiti Std R}} % adobe 黑体
\renewcommand{\fangsong}{\CJKfontspec{Adobe Fangsong Std R}} % adobe 仿宋
% other command
\begin{document}
正文
\end{document}
#+END_SRC
3) 去掉 =AutoFakeBold= 选项. 这样会导致外封面字体不能加黑.
2. 如何编译
推荐使用 `latexmk' 命令进行编译, 编译命令如下
#+BEGIN_SRC shell
latexmk -xelatex -synctex=1 nputhesis-sample.tex
#+END_SRC
3. 符号表的生成
由于符号表需要使用外部程序 `makeindex' 辅助生成, 所以我们添加了 `latexmkrc' 文件,
只要使用上述 `latexmk' 命令符号表可以自动生成, 否则, 需要手动调用 'makeindex' 程序
#+BEGIN_SRC shell
makeindex nputhesis-sample.nlo -s nomencl.ist -o nputhesis-sample.nls -t nputhesis-sample.nlg
#+END_SRC
*** 文档选项说明
1. 由于 =nputhesis= 基于 =book= 实现, =book= 文类的选项这里均能是使用, 如 =twoside=.
2. =nputhesis= 新定义的选项
- =UTF8= : 传递给宏包 =ctexcap=, 用于中文标题处理.
- =phd= : 使用博士论文模板, 默认选项.
- =ma= : 使用硕士论文模板.
- =dbr= : 用于隐藏作者和导师名, 需要使用命令 =\dbr=.
- =blankinfo= : 空白页信息开关, 用于在偶数空白页显示 `This Page Intentionally Left Blank!`, 默认不显示.
*** 使用的宏包及定义的环境
该文类内部已包含宏包 =geometry=, =xcolor=, =fancyhdr=, =titletoc=, =caption=, =ulem=,
=amsthm=, =amsmath=, =amsfonts=, =setspace=, =longtable=, =booktabs=, =tabularx=,
=multirow=, =graphicx=, =ctex=, =nomencl=, =multicol=.
1. 使用了 =amsthm= 宏包定义了定理格式 =nputheorem= 和 =npuplain=, 并默认启用 =npuplain=.
在文档中 =\newtheorem{theorem}{定理}[section]= 定义新环境将默认使用格式. 若需更改将
要定义的定理格式为其他格式, 如 =nputheorem=, 请使用如下命令:
#+BEGIN_SRC tex
\theoremstyle{nputheorem}
\newtheorem{npu-thm}{斜体定理}[section]
#+END_SRC
那么 =npu-thm= 环境将使用 =nputheorem= 格式.
2. 符号表生成使用了宏包 =nomencl= . 在需要显示符号表的地方使用命令 =\printnomenclature= 即可,
模板中符号表在目录后. 添加符号请使用命令 =\nomenclature{<sym>}{<text explanation>}=.
*** 关于参考文献得说明
推荐使用 =biblatex= 宏包生成参考文献. 若确实需要使用 =bst= 文件生成参考文件, 可以考虑
使用 [[https://github.com/Haixing-Hu][@Haixing-Hu]] 编写的 `bst' 文件
[[https://github.com/Haixing-Hu/GBT7714-2005-BibTeX-Style][`gbt7741-2005.bst']].
** 其他链接
1. [[https://github.com/polossk][@polossk]]: [[https://github.com/polossk/LaTeX-Template-For-NPU-Thesis][LaTeX-Template-For-NPU-Thesis]]
2. [[https://github.com/NPUSCG][@NPUSCG]]: [[https://github.com/NPUSCG/npu-dissertation-proposal][西北工业大学研究生选题报告表 \LaTeX 模板]]
3. [[https://github.com/Haixing-Hu][@Haixing-Hu]]: [[https://github.com/Haixing-Hu/GBT7714-2005-BibTeX-Style][`gbt7741-2005.bst']].
** License
MIT License
Copyright (c) 2020 Yang Zongze (yangzongze@gmail.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
%</readme>
%<*internal>
\fi
\def\nameofplainTeX{plain}
\ifx\fmtname\nameofplainTeX\else
\expandafter\begingroup
\fi
%</internal>
%<*install>
\input docstrip.tex
\keepsilent
\askforoverwritefalse
\preamble
Copyright (C) 2020 by Zongze Yang <yangzongze@gmail.com>
It may be distributed and/or modified under the conditions of the LaTeX
Project Public License, either version 1.3b of this license or (at your
option) any later version. The latest version of this license is in
https://www.latex-project.org/lppl.txt
and version 1.3b or later is part of all distributions of LaTeX version
2005/12/01 or later.
\endpreamble
\postamble
This work consists of the file nputhesis.dtx
and the derived files nputhesis.ins,
nputhesis.pdf,
nputhesis.cls,
nputhesis-sample.tex,
nputhesis-sample.pdf and
README.org
\endpostamble
\generate
{
\usedir{tex/latex/nputhesis}
\file{nputhesis.cls} {\from{\jobname.dtx}{class}}
%</install>
%<*internal>
\usedir{source/latex/nputhesis}
\file{\jobname.ins} {\from{\jobname.dtx}{install}}
%</internal>
%<*install>
\usedir{doc/latex/nputhesis}
\file{nputhesis-sample.tex} {\from{\jobname.dtx}{sample}}
\nopreamble\nopostamble
\file{README.org} {\from{\jobname.dtx}{readme}}
}
\Msg{*************************************************************}
\Msg{* *}
\Msg{* To finish the installation you have to move the following *}
\Msg{* files into a directory searched by TeX: *}
\Msg{* *}
\Msg{* \space\space nputhesis.cls *}
\Msg{* *}
\Msg{* To produce the documentation run the files ending with *}
\Msg{* `.dtx' through XeLaTeX. *}
\Msg{* *}
\Msg{* Happy TeXing *}
\Msg{*************************************************************}
%</install>
%<install>\endbatchfile
%<*internal>
\ifx\fmtname\nameofplainTeX
\expandafter\endbatchfile
\else
\expandafter\endgroup
\fi
%</internal>
%<*driver>
\ProvidesFile{nputhesis.dtx}
%</driver>
%<class>\NeedsTeXFormat{LaTeX2e}
%<class>\ProvidesClass{nputhesis}
%<*class>
[2020/06/16 v1.0.0 NPU Thesis Template]
%</class>
%<*driver>
\documentclass{ctxdoc}
\usepackage{booktabs}
\EnableCrossrefs
\CodelineIndex
\RecordChanges
\begin{document}
\DocInput{nputhesis.dtx}
\IndexLayout
\PrintChanges
\PrintIndex
\end{document}
%</driver>
% \fi
% \changes{v1.0.0}{2020/04/21}{Revise the README file}
% \changes{v1.0.0}{2020/02/18}{Initial version use dtx}
% \changes{v0.6.2}{2020/01/10}{Adjust the skip of the chapter title}
% \changes{v0.6.2}{2020/01/10}{Make the line under the title longer}
% \changes{v0.6.2}{2020/01/10}{Remark: ``AutoFakeBold'' option can be used
% when load this document class to make the font in the cover page as bold
% font}
% \changes{v0.6.1}{2019/12/28}{Delete option workbib}
% \changes{v0.6.1}{2019/12/28}{Replace nputhesis.bst by gbt7714-2005.bst}
% \changes{v0.6.1}{2019/12/28}
% {Modify font size in tabular environment to `zihao{5}'}
% \changes{v0.6.1}{2019/12/28}{Add `nputabu' environment}
% \changes{v0.6.1}{2019/12/28}
% {Add theorem style `npuplain', and set it to default}
%
% \GetFileInfo{nputhesis.dtx}
%
% \DoNotIndex{\newcommmand, \newenvironment}
%
% \title{The \textsf{nputhesis} class\thanks{This document
% corresponds to \textsf{nputhesis}~\fileversion, dated \filedate.}}
% \author{Zongze Yang\\ \texttt{yangzongze@gmail.com}}
%
% \date{\filedate}
% \maketitle
% \tableofcontents
%
% \StopEventually{}
%
% \section{简介}
%
% \section{使用方法}
% \subsection{加载文类}
% 加载 nputhesis 文档类
% \begin{frameverb}
% \documentclass[twoside, UTF8, phd, AutoFakeBold]{nputhesis}
% \end{frameverb}
%
% \changes{v1.0.0}{2020/03/28}{Add comments on the option ``AutoFakeBold'' in the documents}
% {
% \color{red} 这里使用 |AutoFakeBold| 为外封面的字体加黑. 在 TeXLive 2019 之前的版本中,
% 启用该选项将导致 =xelatex= 编译生成的 =pdf= 文件内容复制时显示为乱码, 进而导致查重报告显示为乱码.
% 解决方法有以下三种:
% \begin{itemize}
% \item[1.] 升级 TeXLive 到 2019 版.
% \item[2.] 使用 Adobe 字体. 首先自行下载安装 Adobe 字体, 然后在 |tex| 源文件导言区重新定义相关字体.
% \begin{frameverb}
% \documentclass[twoside, UTF8, phd, dbr, AutoFakeBold]{nputhesis}
% % 导言区
% \renewcommand{\songti}{\CJKfontspec{Adobe Song Std L}} % adobe 宋体
% \renewcommand{\kaishu}{\CJKfontspec{Adobe Kaiti Std R}} % adobe 楷体
% \renewcommand{\heiti}{\CJKfontspec{Adobe Heiti Std R}} % adobe 黑体
% \renewcommand{\fangsong}{\CJKfontspec{Adobe Fangsong Std R}} % adobe 仿宋
% % other command
% \begin{document}
% 正文
% \end{document}
% \end{frameverb}
% \item[3.] 去掉 |AutoFakeBold| 选项. 这样会导致外封面字体不能加黑.
% \end{itemize}
% }
%
% 若需生成盲评版本, 添加选项 |dbr| 即可, 如
% \begin{frameverb}
% \documentclass[twoside, UTF8, phd, dbr, AutoFakeBold]{nputhesis}
% \end{frameverb}
% 关于 |\dbr| 命令的使用请参考 \ref{ss:varset} 节, \ref{ss:refs} 节以及
% \ref{ss:dbr} 节.
%
% \subsection{加载常用宏包}
% \begin{frameverb}
% \usepackage{lipsum}
% \end{frameverb}
% \subsection{参考文献}
% 推荐使用 |biblatex| 处理参考文献. 参考文献格式使用 |gb7714-2015|,
% 其详细信息请参考 https://github.com/hushidong/biblatex-gb7714-2015.
% 宏包 |biblatex-gb7714-2015| 已包含在 TeXLive 和 MikTeX 中. 使用如下
% 命令载入 |biblatex| 宏包即可.
% \begin{frameverb}
% \usepackage[backend=biber,
% style=gb7714-2015, maxbibnames=3,minbibnames=3,
% gbnamefmt=givenahead,
% doi=false,
% url=false,
% % gbpub=false
% ]{biblatex}
% \end{frameverb}
% 上面的选项 |gbnamefmt| 需要使用 v1.0k 以上版本的 |biblatex-gb7714-2015|.
% 如果宏包版本不能满足, 可以注释掉选项 |gbnamefmt=givenahead|.
%
% 然后使用 |addbibresource| 添加参考文献文件 |myrefs.bib|.
% \begin{frameverb}
% \addbibresource{myrefs.bib}
% \end{frameverb}
% \subsection{变量设置}\label{ss:varset}
% 设置学校编号, 分类号, 题目, 姓名等信息
% \begin{frameverb}
% \schoolno{10699}
% \classno{O242}
% \secretlevel{公开}
% \authorno{0000999999}
% \title[\LaTeX\ Template of NPU Thesis]{西工大硕博学位论文 \LaTeX 模板}
% \author[\dbr{San Zhang}]{\dbr{张三}}
% \major[Philosophy in Mathematics]{数学}
% \supervisor[\dbr{Si Li}]{\dbr{李四}}
% \applydate[April 2046]{2046~年~4~月}
% \support{本文研究得到某某基金(编号:XXXXXXX)资助。}
% \end{frameverb}
% \subsection{开始文档}
% 使用 |makecover| 生成封面: 包括外封面和内封面, 然后用 | frontmatter |
% 分割封面和正文部分.
% \begin{frameverb}
% \begin{document}
% \makecover
% \frontmatter
% \end{frameverb}
% \subsection{摘要部分}
% 中文摘要
% \begin{frameverb}
% \begin{abstract}
% 本模板基本实现了西北工业大学硕博论文格式要求: 封皮, 页眉页脚,
% 章节标题格式, 参考文献格式等.
% \begin{keywords}
% 学位论文, \LaTeX\ 模板, 西工大
% \end{keywords}
% \end{abstract}
% \end{frameverb}
% 英文摘要
% \begin{frameverb}
% \begin{Abstract}
% We implement the class |nputhesis| for the thesis of NWPU.
% \begin{Keywords}
% Thesis Template, \LaTeX, NPU
% \end{Keywords}
% \end{Abstract}
% \end{frameverb}
% \subsection{目录和符号表}
% \begin{frameverb}
% \tableofcontents
% \printnomenclature
% \end{frameverb}
% 正文中使用 |\nomenclature{<sym>}{<text explanation>}| 向符号表中添加内容.
% \subsection{正文部分}
% 使用 |mainmatter| 开始正文.
% \begin{frameverb}
% \mainmatter
% \end{frameverb}
% 正文结构
% \begin{frameverb}
% \chapter{绪论}
% \section{\TeX 和 \LaTeX 介绍}
% \section{nputhesis 简介}
% \chapter{基础知识}
% \section{基本命令}
% \section{宏包}
% \end{frameverb}
% \subsubsection{图与表}
% \newenvironment{nputabu}[1][\zihao{5}]%
% {\begingroup #1\tabularx{\textwidth}}{\endtabularx\endgroup}
% \newcolumntype{L}{>{\raggedright\arraybackslash}X}
% \newcolumntype{R}{>{\raggedleft\arraybackslash}X}
% \newcolumntype{C}{>{\centering\arraybackslash}X}
% 表格可以使用 nputabu 环境. 列模式除了常规的 |c|, |r| 和 |l| 外, 还可以使用
% `nputhesis.cls` 中定义的列模式 |C|, |R| 和 |L|, 它们表示等列宽模式下的居中,
% 居右和居左.
%
% 如下代码生成的表格见表 \ref{table:result}.
% \begin{frameverb}
% \begin{table}
% \caption{数值误差和收敛阶}
% \begin{nputabu}{CCC}
% \toprule
% $N$ & $L^2$ 误差 & 收敛阶 \\
% \midrule
% 4 & 8.1060e-03 & 0.00 \\
% 8 & 2.0489e-03 & 1.98 \\
% 16 & 5.3476e-04 & 1.94 \\
% 32 & 1.5625e-04 & 1.77 \\
% \bottomrule
% \end{nputabu}
% \end{table}
% \end{frameverb}
% \begin{table}
% \caption{数值误差和收敛阶}\label{table:result}
% \begin{nputabu}{CCC}
% \toprule
% $N$ & $L^2$ 误差 & 收敛阶 \\
% \midrule
% 4 & 8.1060e-03 & 0.00 \\
% 8 & 2.0489e-03 & 1.98 \\
% 16 & 5.3476e-04 & 1.94 \\
% 32 & 1.5625e-04 & 1.77 \\
% \bottomrule
% \end{nputabu}
% \end{table}
% \subsection{参考文献, 附录等}\label{ss:refs}
% \begin{frameverb}
% \backmatter
% % 以下两种参考文献格式, 根据实际宏包使用情况添加
% \printbibliography % biblatex 输出参考文件方式
% % \bibliographystyle{gbt7714-2005} % 传统输出参考文献方式
% % \bibliography{ref} % 传统输出参考文献方式
%
% % \Appendix % 如果有多个附录, 可重复使用该命令, 自动按字母编号.
%
% \Thanks % 致谢
%
% \Work
% \papersection % 以下填写发表论文情况
%
% \begin{npulist}
% \item {\bf \dbr{S. Zhang}}, \dbr{S. Li}. NPU 硕博学位论文
% \LaTeX\ 模板[D]. 2019.
% \end{npulist}
%
% \researchsection % 以下填写参加科研情况
% \begin{npulist}
% \item NPU \LaTeX 模板. 编号: 000000000, 参与.
% \item NPU \LaTeX 模板. 编号: 000000001, 参与.
% \item NPU \LaTeX 模板. 编号: 000000002, 参与.
% \end{npulist}
% \end{frameverb}
% \subsection{结束文档}
% \begin{frameverb}
% \statement
% \end{document}
% \end{frameverb}
% \subsection{完整的例子}\label{ss:example}
% \begin{macrocode}
%<*sample>
\documentclass[twoside, UTF8, phd, AutoFakeBold]{nputhesis}
\usepackage{lipsum}
\usepackage{hyperref} % 可以保证生成的 pdf 显示逻辑页码
\usepackage{filecontents}
\usepackage[backend=biber,
style=gb7714-2015, maxbibnames=3,minbibnames=3,
gbnamefmt=givenahead,
doi=false,
url=false,
]{biblatex}
\begin{filecontents}{myrefs.bib}
@Book{Knuth1986,
Title = {The \TeX book},
Author = {Donald~Ervin Knuth},
Publisher = {Addison-Wesley},
Year = {1986}
}
@Book{Lamport1994,
Title = {A Document Preparation System},
Author = {Leslie Lamport},
Publisher = {Addison-Wesley},
Year = {1994}
}
@Book{Liu2013,
Title = {\LaTeX 入门},
Author = {刘海洋},
Publisher = {电子工业出版社},
Year = {2013}
}
\end{filecontents}
\addbibresource{myrefs.bib}
\schoolno{10699}
\classno{O242}
\secretlevel{公开}
\authorno{0000999999}
\title[\LaTeX\ Template of NPU Thesis]{西工大硕博学位论文 \LaTeX 模板}
\author[\dbr{San Zhang}]{\dbr{张三}}
\major[Philosophy in Mathematics]{数学}
\supervisor[\dbr{Si Li}]{\dbr{李四}}
\applydate[April 2046]{2046~年~4~月}
\support{本文研究得到某某基金(编号:XXXXXXX)资助。}
\begin{document}
\makecover
\frontmatter
\begin{abstract}
本模板基本实现了西北工业大学硕博论文格式要求: 封皮, 页眉页脚,
章节标题格式, 参考文献格式等.
\begin{keywords}
学位论文, \LaTeX\ 模板, 西工大
\end{keywords}
\end{abstract}
\begin{Abstract}
We implement the class |nputhesis| for the thesis of NWPU.
\begin{Keywords}
Thesis Template, \LaTeX, NPU
\end{Keywords}
\end{Abstract}
\tableofcontents
\printnomenclature
\mainmatter
\chapter{绪论}
\section{\TeX 和 \LaTeX 介绍}
\TeX \parencite{Knuth1986} 和 \LaTeX \cite{Lamport1994, Liu2013}的介绍.
\section{nputhesis 简介}
\chapter{基础知识}
\section{基本命令}
\section{宏包}
\section{图表}
\begin{table}
\caption{数值误差和收敛阶}
\begin{nputabu}{CCC}
\toprule
$N$ & $L^2$ 误差 & 收敛阶 \\
\midrule
4 & 8.1060e-03 & 0.00 \\
8 & 2.0489e-03 & 1.98 \\
16 & 5.3476e-04 & 1.94 \\
32 & 1.5625e-04 & 1.77 \\
\bottomrule
\end{nputabu}
\end{table}
\backmatter
\printbibliography % biblatex 输出参考文件方式
\Appendix % 编号附录
\Appendix* % 不编号附录
\Thanks % 致谢
\Work
\papersection % 以下填写发表论文情况
\begin{npulist}
\item {\bf \dbr{S. Zhang}}, \dbr{S. Li}. NPU 硕博学位论文
\LaTeX\ 模板[D]. 2019.
\end{npulist}
\researchsection % 以下填写参加科研情况
\begin{npulist}
\item NPU \LaTeX 模板. 编号: 000000000, 参与.
\end{npulist}
\statement
\end{document}
%</sample>
% \end{macrocode}
% \section{安装}
% 从 |github| 下载的压缩包已所有文件, 直接解压即可使用. 下面介绍从 |dtx|
% 文件生成相关文件的过程.
% \subsection{编译 nputhesis.dtx}
% 运行如下命令即可得到所有文件
% \begin{frameverb}
% xelatex nputhesis.dtx
% \end{frameverb}
% 但是这样生成文档 | nputhesis.pdf | 中没有索引等信息, 因此需要进行多次编译.
% 下面给出生成 |pdf| 文件的两种方式.
% \subsubsection{方法一}
% 进入 |nputhesis.dtx| 所在文件夹, 依次运行下面命令.
% \begin{frameverb}
% xelatex nputhesis.dtx
% makeindex -s gglo.ist -o nputhesis.gls nputhesis.glo
% makeindex -s gind.ist -o nputhesis.ind nputhesis.idx
% xelatex nputhesis.dtx
% xelatex nputhesis.dtx
% del nputhesis.gls nputhesis.glo nputhesis.ind nputhesis.idx
% del nputhesis.ilg nputhesis.aux nputhesis.log nputhesis.toc
% del nputhesis.hd nputhesis.out
% \end{frameverb}
% \subsubsection{方法二}
% 使用 latexmk 进行编译. 首先, 进入 |nputhesis.dtx| 所在文件夹,
% 创建文件 |dtxrc| 内容如下:
% \begin{frameverb}
% @cus_dep_list = (@cus_dep_list, "glo gls 0 makegls");
% sub makegls {
% system("makeindex -s gglo.ist -o $_[0].gls $_[0].glo"); }
% $makeindex="makeindex -s gind.ist -o %D %S";
% push @generated_exts, 'idx', 'ind', 'glo', 'gls', 'hd';
% \end{frameverb}
% 然后在该文件夹运行如下命令即可生成所需文件.
% \begin{frameverb}
% latexmk -xelatex nputhesis.dtx -r dtxrc
% latexmk -c nputhesis.dtx -r dtxrc
% \end{frameverb}
% \subsubsection{方法三}
% 在 Windows 环境下直接运行 |build.bat| 即可.
% \section{代码实现}
% \subsection{文档选项}
% 使用布尔变量实现文档的选项设置
% \begin{macrocode}
%<*class>
\newif\if@npu@phd
\newif\if@npu@blankinfo
\newif\if@npu@dbr % for double-blind review
\def\set@npu@phd{\@npu@phdtrue}
\def\set@npu@ma{\@npu@phdfalse}
% \end{macrocode}
% 使用 |xkeyval| 声明文档选项
% \begin{macrocode}
\RequirePackage{xkeyval}
% \end{macrocode}
% 声明选项 blankinfo, 用于控制是否现实空白页标识信息.
% \begin{macrocode}
\DeclareOptionX{blankinfo}[false]{\csname @npu@blankinfo#1\endcsname}
% \end{macrocode}
% 声明选项 thesistype, 可选参数为 phd 和 ma, 用于选择文档类型
% : 博士论文还是硕士论文.
% \begin{macrocode}
\DeclareOptionX{thesistype}[phd]{\csname set@npu@#1\endcsname}
% \end{macrocode}
% 声明选项 phd 和 ma, 要废齐的选项, 被 thesistype 代替, 请使用 thesistype.
% \begin{macrocode}
\DeclareOptionX{phd}{\@npu@phdtrue}
\DeclareOptionX{ma}{\@npu@phdfalse}
% \end{macrocode}
% 声明选项 dbr, 用于生成盲评版本, 参考 |\dbr|.
% \begin{macrocode}
\DeclareOptionX{dbr}[true]{\csname @npu@dbr#1\endcsname}
% \end{macrocode}
% 该文类基于 book 类实现, 加载book 文类.
% \begin{macrocode}
\DeclareOptionX*{\PassOptionsToClass{\CurrentOption}{ctexbook}}
\ExecuteOptionsX{thesistype=phd}
\ExecuteOptionsX{dbr=false}
\ProcessOptionsX \relax
\LoadClass[heading=true,zihao=-4]{ctexbook}
% \end{macrocode}
% \subsection{使用的宏包}
% 加载需要的宏包
% \begin{macrocode}
\RequirePackage{geometry}
\RequirePackage{xcolor}
\RequirePackage{fancyhdr}
\RequirePackage{titletoc}
\RequirePackage{caption}
\RequirePackage{ulem}
\RequirePackage{amsthm}
\RequirePackage{amsmath}
\RequirePackage{amsfonts}
\RequirePackage{setspace}
\RequirePackage{longtable}
\RequirePackage{booktabs}
\RequirePackage{tabularx}
\RequirePackage{multirow}
\RequirePackage{graphicx}
% \RequirePackage[heading=true,zihao=-4]{ctex}
\RequirePackage{ifxetex}
\ifxetex
\setmainfont{Times New Roman}
\fi
% \end{macrocode}
% \subsection{盲评命令}\label{ss:dbr}
% \changes{v1.0.0}{2020/02/18}{Add option `dbr' for double-blind review}
% 当 |dbr| 选项开启, 即 |dbr=true| 时在文件中 |\dbr| 命令以隐藏作者相关信息,
% 使用命令 |\dbr{张三}| 将会使用黑框代替 `张三' 的显示.
% \begin{macrocode}
\newcommand\@npu@replace[1]{{%
\setlength{\fboxsep}{0pt}%
\colorbox{black}{\phantom{#1}}}}
\newcommand{\dbr}[1]{\if@npu@dbr \@npu@replace{#1}\relax\else #1\fi}
% \end{macrocode}
% \subsection{设置页面版式格式}
% \begin{macrocode}
\geometry{paperwidth=210mm,paperheight=297mm,%
left=2.5cm,right=2.5cm,top=2.54cm,bottom=2.54cm}
\topmargin=-10.4mm
\headheight=17pt
\footskip=8mm
\headsep=5mm
% \end{macrocode}
% 页眉设置
% \begin{macrocode}
\pagestyle{fancy}
% \renewcommand\chaptermark[1]{\markboth{%
% \if@mainmatter%
% %\ifnum\arabic{chapter}>0%
% \arabic{chapter}\quad%
% %\fi%
% \fi#1}{}}
\fancyhf{}
\fancyhead[EC]{\songti\zihao{-5}\npu@rightmark}
\fancyhead[OC]{\songti\zihao{-5}\leftmark}
\fancyfoot[C]{\songti\zihao{5}\thepage}
\renewcommand{\headrule}{%
\hrule width\headwidth height2.8pt \vspace{1pt}%
\hrule width\headwidth height0.8pt}
\fancypagestyle{plain}{\thispagestyle{fancy}}
\newcommand{\clearpagestyle}{\clearpage{\pagestyle{empty}\cleardoublepage}}
% \end{macrocode}
% \subsection{设置默认章节标题格式}
% \begin{macrocode}
\ifx\ctexset\undefined
\CTEXsetup[ % name={,}, number={\arabic{chapter}},% use default value
beforeskip={0pt}, afterskip={20pt}]{chapter}
\CTEXsetup[nameformat={\heiti\zihao{3}\bf}]{chapter}
\CTEXsetup[titleformat={\heiti\zihao{3}}]{chapter}
\CTEXsetup[format={\heiti\zihao{4}}]{section}
\CTEXsetup[format={\heiti\zihao{-4}}]{subsection}
\else
\ctexset{
contentsname = {\npu@contents}
}
% title format of chapter
\ctexset{
% chapter/name={,}, % use default value in ctex
% chapter/number=\arabic{chapter}, % use default value in ctex
chapter/beforeskip={0pt},
chapter/afterskip={20pt},
chapter/format={\heiti\zihao{3}\centering}
}
% title format of section
\ctexset{
section/name={,},
% section/beforeskip={2ex plus .5ex minus .1ex},
% section/afterskip={1ex plus .1ex},
section/format={\heiti\zihao{4}}
}
% title format of subsection
\ctexset{
subsection/name={,},
% subsection/beforeskip={2ex plus .5ex minus .1ex},
% subsection/afterskip={1ex plus .1ex},
subsection/format={\heiti\zihao{-4}}
}
\ctexset{
subsubsection/name={,},
% subsubsection/beforeskip={1ex plus .3ex minus .1ex},
% subsubsection/afterskip={.5ex plus .1ex},
subsubsection/format={\heiti\zihao{-4}}
}
\ctexset{
paragraph/name={,},
% paragraph/beforeskip={1ex plus .3ex minus .1ex},
% paragraph/afterskip={.5ex plus .1ex},
paragraph/format={\heiti\zihao{-4}}
}
\ctexset{
subparagraph/name={,},
% subparagraph/beforeskip={1ex plus .3ex minus .1ex},
% subparagraph/afterskip={.5ex plus .1ex},
subparagraph/format={\heiti\zihao{-4}}
}
\fi
% \end{macrocode}
% \subsection{目录字体设置}
% \begin{macrocode}
\def\@contentfont{\songti\zihao{-4}}
\titlecontents{chapter}[0pt]{\@contentfont}
{\thecontentslabel\hspace{.5em}}{}
{\hspace{.5em}\titlerule*{.}\contentspage}
\titlecontents{section}[15pt]{\@contentfont}
{\thecontentslabel\quad}{}
{\hspace{.5em}\titlerule*{.}\contentspage}
\titlecontents{subsection}[30pt]{\@contentfont}
{\thecontentslabel\quad}{}
{\hspace{.5em}\titlerule*{.}\contentspage}
% \end{macrocode}
% \subsection{变量设置}
% 定义变量, 用于存储包括论文题目, 作者, 导师等信息.
% \begin{macrocode}
\def\title{\@ifnextchar[\@@title{\@@title[]}}
\def\author{\@ifnextchar[\@@author{\@@author[]}}
\def\major{\@ifnextchar[\@@major{\@@major[]}}
\def\supervisor{\@ifnextchar[\@@supervisor{\@@supervisor[]}}
\def\applydate{\@ifnextchar[\@@applydate{\@@applydate[]}}
\def\@@title[#1]#2{\def\@title@en{#1}\def\@title{#2}}
\def\@@author[#1]#2{\def\@author@en{#1}\def\@author{#2}}
\def\@@major[#1]#2{\def\@major@en{#1}\def\@major{#2}}
\def\@@supervisor[#1]#2{\def\@supervisor@en{#1}\def\@supervisor{#2}}
\def\@@applydate[#1]#2{\def\@applydate@en{#1}\def\@applydate{#2}}
\def\@title{}\def\@title@en{}
\def\@author{}\def\@author@en{}
\def\@major{}\def\@major@en{}
\def\@supervisor{}\def\@supervisor@en{}
\def\@applydate{}\def\@applydate@en{}
\def\npu@empty{}
\def\schoolno#1{\def\@schoolno{#1}}\def\@schoolno{}
\def\classno#1{\def\@classno{#1}}\def\@classno{}
\def\secretlevel#1{\def\@secretlevel{#1}}\def\@secretlevel{}
\def\authorno#1{\def\@authorno{#1}}\def\@authorno{}
\def\support#1{\def\@support{#1}}\def\@support{}
\if@npu@phd
\def\npu@degreename@en{Doctor}
\else
\def\npu@degreename@en{Master}
\fi
% \end{macrocode}
% \subsection{设置字体和行距}
% \begin{macrocode}
% \renewcommand{\normalsize}{\zihao{-4}}
\linespread{1.25}
% \end{macrocode}
% \subsection{封面}
% 重新定义 |titlepage| 环境, 取消页码计数器的更改.
% \begin{macrocode}
\renewenvironment{titlepage}
{%
\cleardoublepage
\if@twocolumn
\@restonecoltrue\onecolumn
\else
\@restonecolfalse\newpage
\fi
\thispagestyle{empty}%
% \setcounter{page}\z@
}%
{\if@restonecol\twocolumn \else \newpage \fi
}
% \end{macrocode}
% 定义外封面
% \begin{macrocode}
\def\makeoutercover{
\begin{titlepage}
\bfseries
\linespread{1.25}
\begin{center}
\hfill% default \bf font
\heiti\zihao{5}
\newlength{\max@length}
\settowidth{\max@length}{\npu@schoolno\npu@comma 2000000000}
\newlength{\name@length}
\settowidth{\name@length}{\npu@schoolno}
\begin{minipage}{\max@length}
\vskip.5cm
\renewcommand\arraystretch{1.2}
\begin{tabular}{|c|c|}\hline
\makebox[\name@length][s]{\npu@schoolno} & \@schoolno \\ \hline
\makebox[\name@length][s]{\npu@classno} & \@classno \\ \hline
\makebox[\name@length][s]{\npu@secretlevel}& \@secretlevel \\ \hline
\makebox[\name@length][s]{\npu@authorno} & \@authorno \\ \hline
\end{tabular}
\end{minipage}
\par\vspace{9cm}
\songti\zihao{2}
\begin{minipage}[t]{2cm}
\hfill\npu@title\\
\end{minipage}
%\hbox to 2.5cm{\hfill \npu@title}
\setbox123=\hbox{
\begin{minipage}[t]{12cm}
\begin{center}
\heiti\@title
\end{center}
\end{minipage} }
\setbox124=\hbox{
\begin{minipage}[t]{12cm}
\begin{center}
\uline{\hfill\quad\hfill}\\
\uline{\hfill\quad\hfill}\\
\end{center}
\end{minipage} }
\hskip-0.5cm
\copy123\kern-\wd123\box124
\zihao{3}
\par\vspace{2.5\baselineskip}
\begin{minipage}{5cm}
{\kaishu\npu@author} \uline{\hfill\@author\hfill}
\end{minipage}
\par\vspace{2.5\baselineskip}
\settowidth{\name@length}{\npu@applydate}
\begin{minipage}{12.5cm}
\noindent
\makebox[\name@length][s]{\npu@major}%
{\uline{\hfill{\@major}\hfill}} \par
\vspace{0.5\baselineskip}
\makebox[\name@length][s]{\npu@supervisor}%
{\uline{\hfill\@supervisor\hfill}} \par
\vspace{0.5\baselineskip}
\makebox[\name@length][s]{\npu@applydate}%
{\uline{\hfill\@applydate\hfill}} \par
\end{minipage}
\vspace{2\baselineskip}
\end{center}
\end{titlepage}
\clearpagestyle
}
% \end{macrocode}
% 定义内封面
% \begin{macrocode}
\def\makeinnercover@zh{%
\begin{titlepage}
\linespread{1.25}
\vspace*{2cm}
\begin{center}
\settowidth{\name@length}{\zihao{3}\npu@schoolname}
\divide\name@length by 12
\multiply\name@length by 17
\makebox[\name@length][s]{\zihao{3}\npu@schoolname}
\vskip5mm
\settowidth{\name@length}{\zihao{1}\npu@degree}
\divide\name@length by 12
\multiply\name@length by 17
\makebox[\name@length][s]{\zihao{1}\npu@degree}
\vskip5mm
\centerline{\zihao{4}\npu@degreeclass}
\vskip5cm
\zihao{2}
\begin{minipage}[t]{2.5cm}
\hfil\npu@title\npu@comma
\end{minipage}
\setbox123=\hbox{
\begin{minipage}[t]{11cm}
\begin{center}
\@title
\end{center}
\end{minipage}}
\setbox124=\hbox{
\begin{minipage}[t]{11cm}
\begin{center}
\uline{\hfill\quad\hfill}\\
\uline{\hfill\quad\hfill}\\
\end{center}
\end{minipage}}
\hskip-1cm
\copy123\kern-\wd123\box124
\par\vspace{4cm}
\zihao{3}
\settowidth{\name@length}{\npu@major}
\begin{minipage}{8cm}
\noindent
\makebox[\name@length][s]{\npu@author}\npu@comma%
\uline{\hfill\@author\hfill} \par
\vspace{0.25\baselineskip}
\makebox[\name@length][s]{\npu@major}\npu@comma%
\uline{\hfill\@major\hfill} \par
\vspace{0.25\baselineskip}
\makebox[\name@length][s]{\npu@supervisor}\npu@comma%
\uline{\hfill\@supervisor\hfill}\par
\vspace{1\baselineskip}
\end{minipage}
\vspace{2\baselineskip}
\par\makebox[30mm]{\@applydate}\hfill
\end{center}
\end{titlepage}
\clearpagestyle
}
% \end{macrocode}
% 定义英文封面
% \begin{macrocode}
\def\makeinnercover@en{%
\begin{titlepage}
\linespread{1.25}
\vspace*{1.5cm}
\zihao{3}
\begin{center}
{\bf
%\Large
\@title@en \\
\vspace{3\baselineskip}
\zihao{-3}
By\\
\ifx\@author@en\npu@empty\quad\else\@author@en\fi\\
\vspace{1\baselineskip}
Under the Supervision of Professor\\
\ifx\@supervisor@en\npu@empty\quad\else\@supervisor@en\fi\\}
%\Large
\vspace{4\baselineskip}
A Dissertation Submitted to\\
Northwestern Polytechnical University\\
\vspace{1\baselineskip}
In Partial Fulfillment of the Requirement\\
for the Degree of\\
\npu@degreename@en\ of \@major@en\\
\vspace{4\baselineskip}
Xi'an, P. R. China\\
\@applydate@en
\end{center}
\end{titlepage}
\clearpagestyle
}
% \end{macrocode}
% 整合以上封面为一个命令 makecover
% \begin{macrocode}
% \changes{v1.0.0}{2020/06/12}{Change the logical page number in pdf to avoid the repeation of the numbers}
\def\makecover{%
\pagenumbering{Alph}%
\makeoutercover%
\setcounter{page}\@ne
\pagenumbering{roman}%
\makeinnercover@zh%
\makeinnercover@en%
}
% \end{macrocode}
% 正文之前使用罗马数字编号
% \begin{macrocode}
\let\npu@frontmatter\frontmatter
\def\frontmatter{\npu@frontmatter\pagenumbering{Roman}}
% \end{macrocode}