-
Notifications
You must be signed in to change notification settings - Fork 13
/
chinathesis.dtx
1621 lines (1612 loc) · 47.1 KB
/
chinathesis.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
%
% Copyright (C) 2015-2018 by Zeping Lee <zepinglee AT gmail.com>
%
% This file may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3c
% 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.3c or later is part of all distributions of LaTeX
% version 2005/12/01 or later.
%
%<*internal>
\iffalse
\fi
\begingroup
\def\nameoflatex{LaTeX2e}
\expandafter\endgroup\ifx\nameoflatex\fmtname\else
\csname fi\endcsname
%</internal>
%<*install>
\input docstrip.tex
\preamble
Copyright (C) 2015-\the\year by Zeping Lee <zepinglee AT gmail.com>
This file may be distributed and/or modified under the
conditions of the LaTeX Project Public License, either version 1.3c
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.3c or later is part of all distributions of LaTeX
version 2005/12/01 or later.
\endpreamble
\keepsilent
\askforoverwritefalse
\nopostamble
\generate{
\file{\jobname.cls}{\from{\jobname.dtx}{class}}
}
\endbatchfile
%</install>
%<*internal>
\fi
%</internal>
%<*driver>
\ProvidesFile{chinathesis.dtx}
%</driver>
%<class>\NeedsTeXFormat{LaTeX2e}[1999/12/01]
%<class>\ProvidesClass{chinathesis}
%<*class>
[2018/09/19 v1.0 A template framework for Chinese dissertations]
%</class>
%
%<*driver>
\documentclass{ltxdoc}
\usepackage[paper=a4paper,margin=1in,left=1.5in]{geometry}
\usepackage{hypdoc}
\hypersetup{
allcolors=blue,
bookmarksnumbered=true,
bookmarksopen=true,
}
\usepackage[UTF8]{ctex}
\usepackage[math-style=ISO,bold-style=ISO]{unicode-math}
\IfFileExists{/System/Library/Fonts/Times.ttc}{
\setmainfont{Times}
\setsansfont[Scale=MatchLowercase]{Helvetica}
\setmonofont[Scale=MatchLowercase]{Menlo}
}{}
\setmathfont{STIX2Math.otf}
\usepackage{caption}
\usepackage{booktabs}
\usepackage{xcolor}
\usepackage{listings}
\lstdefinestyle{lstshell}{
basicstyle=\small\ttfamily,
backgroundcolor=\color{lightgray},
gobble=2,% 重要!否则会生成注释符号"%"
language=bash}
\newcommand\shellcmd[1]{\colorbox{lightgray}{\lstinline[style=lstshell]|#1|}}
\lstnewenvironment{shell}{\lstset{style=lstshell}}{}
\lstnewenvironment{latex}{%
\lstset{
basicstyle=\small\ttfamily,
frame=single,
gobble=2,
language=[LaTeX]TeX}}{}
\lstnewenvironment{pseudocode}{%
\lstset{
basicstyle=\ttfamily,
frame=single,
gobble=2,
language=bash}}{}
\makeatletter
\def\DescribeOption{\leavevmode\@bsphack\begingroup\MakePrivateLetters
\Describe@Option}
\def\Describe@Option#1{\endgroup
\marginpar{\raggedleft\PrintDescribeOption{#1}}%
\SpecialEnvIndex{#1}\@esphack\ignorespaces}
\@ifundefined{PrintDescribeOption}
{\def\PrintDescribeOption#1{\strut \MacroFont #1\ }}{}
% 模仿 l3doc 的定义(见 l3styleguide)
\DeclareRobustCommand\file{\nolinkurl}
\DeclareRobustCommand\env{\texttt}
\DeclareRobustCommand\pkg{\textsf}
\DeclareRobustCommand\cls{\textsf}
\DeclareRobustCommand\opt{\texttt}
\setlength\partopsep{\z@}
\def\@listi{\leftmargin\leftmargini
\parsep \z@
\topsep 5\p@ \@plus2\p@ \@minus3\p@
\itemsep2\p@ \@plus\p@ \@minus\p@}
\let\@listI\@listi
\@listi
\renewcommand\glossaryname{版本历史}
\GlossaryPrologue{\section*{\glossaryname}}
\def\changes@#1#2#3{%
\protected@edef\@tempa{%
\noexpand\glossary{#1 (#2)\levelchar
\ifx\saved@macroname\@empty
\space
\actualchar
\else
\saved@indexname
\actualchar
\string\verb\quotechar*%
\verbatimchar\saved@macroname
\verbatimchar
: \levelchar
\fi
#3}}%
\@tempa\endgroup\@esphack}
\renewcommand\indexname{命令索引}
\IndexPrologue{%
\section*{\indexname}
\textit{意大利体的数字表示描述对应索引项的页码;%
带下划线的数字表示定义对应索引项的代码行号;%
罗马字体的数字表示使用对应索引项的代码行号。}}
\newcommand\TeXLive{\TeX{} Live}
\makeatother
\EnableCrossrefs
\CodelineIndex
\RecordChanges
% \OnlyDescription
\begin{document}
\DocInput{\jobname.dtx}
\linespread{1.3}
\PrintChanges
\linespread{1}
\PrintIndex
\end{document}
%</driver>
% \fi
%
% \DoNotIndex{\def,\long,\edef,\xdef,\gdef,\let,\global}
% \DoNotIndex{\if,\ifnum,\ifdim,\ifcat,\ifmmode,\ifvmode,\ifhmode,%
% \iftrue,\iffalse,\ifvoid,\ifx,\ifeof,\ifcase,\else,\or,\fi}
% \DoNotIndex{\begin,\end,\bgroup,\egroup,\begingroup,\endgroup}
% \DoNotIndex{\expandafter,\csname,\endcsname}
% \DoNotIndex{\hsize,\vsize,\hskip,\vskip,\kern,\hfil,\hfill,\hss}
% \DoNotIndex{\hspace,\vspace}
% \DoNotIndex{\p@,\m@ne,\z@,\@ne,\tw@,\@plus,\@minus}
% \DoNotIndex{\newcounter,\setcounter,\addtocounter,}
% \DoNotIndex{\newdim,\newlength,\setlength,\addtolength}
% \DoNotIndex{\newcommand,\renewcommand,\providecommand,\DeclareRobustCommand}
% \DoNotIndex{\newenvironment,\renewenvironment}
% \DoNotIndex{\RequirePackage,\LoadClass,\ProvidesClass}
% \DoNotIndex{\DeclareOption,\CurrentOption,\ExecuteOptions,\ProcessOptions}
% \DoNotIndex{\rmfamily,\sffamily,\ttfamily,\bfseries,\mdseries,\itshape,%
% \textrm,\textsf,\texttt,\textbf,\textmd,\textit,\textsl,\textsc}
% \DoNotIndex{\iint,\iiint,\iiiint,\oint,\oiint,\oiiint,%
% \intclockwise,\varointclockwise,\ointctrclockwise,\sumint,%
% \intbar,\intBar,\fint,\cirfnint,\awint,\rppolint,%
% \scpolint,\npolint,\pointint,\sqint,\intlarhk,\intx,%
% \intcap,\intcup,\upint,\lowint}
% \DoNotIndex{\a,\b,\c,\d,\e,\f,\g,\h,\i,\j,\k,\l,%
% \m,\n,\o,\p,\q,\r,\s,\t,\u,\v,\w,\x,\y,\z,%
% \A,\B,\C,\D,\E,\F,\G,\H,\I,\J,\K,\L,%
% \M,\N,\O,\P,\Q,\R,\S,\T,\U,\V,\W,\X,\Y,\Z,%
% \do\#,\$,\%,\&,\@,\\,\{,\},\^,\_,\~,\ ,\',\",\/,\*,\-}
% \DoNotIndex{\NAT@@close,\NAT@@open,\NAT@cite,\NAT@citenum,\NAT@citesuper,%
% \NAT@citex,\NAT@citexnum,\NAT@cmt,\NAT@ctype,\NAT@date,%
% \NAT@last@yr,\NAT@mbox,\NAT@penalty,\NAT@spacechar,%
% \@citea,\def@NAT@last@yr,\ifNAT@swa}
% \DoNotIndex{\quad,\par,\relax,\ccwd}
% \DoNotIndex{\bp@}
%
%
%
% \GetFileInfo{\jobname.dtx}
%
% \title{\cls{chinathesis} 使用说明}
% \author{Zeping Lee\thanks{zepinglee AT gmail.com}}
% \date{\filedate\qquad\fileversion}
% \maketitle
%
% \changes{v1.0}{2018/09/19}{Initial version.}
%
%
%
% \section{简介}
%
%
%
%
% \linespread{1}
%
%
% \StopEventually
%
% \section{处理选项}
%
% \begin{macrocode}
%<*class>
\newif\ifustc@doctor
\newif\ifustc@master
\newif\ifustc@bachelor
\newif\ifustc@english
\newif\ifustc@numerical
\newif\ifustc@super
\newif\ifustc@pdf
\DeclareOption{doctor}{\ustc@doctortrue\ustc@masterfalse\ustc@bachelorfalse}
\DeclareOption{master}{\ustc@doctorfalse\ustc@mastertrue\ustc@bachelorfalse}
\DeclareOption{bachelor}{\ustc@doctorfalse\ustc@masterfalse\ustc@bachelortrue}
\DeclareOption{chinese}{\ustc@englishfalse}
\DeclareOption{english}{\ustc@englishtrue\ustc@arabictrue}
\DeclareOption{print}{\ustc@pdffalse}
\DeclareOption{pdf}{\ustc@pdftrue}
\DeclareOption{super}{\ustc@numericaltrue\ustc@supertrue}
\DeclareOption{numbers}{\ustc@numericaltrue\ustc@superfalse}
\DeclareOption{authoryear}{\ustc@numericalfalse}
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{ctexbook}}
\ExecuteOptions{doctor,chinese,print,super}
\ProcessOptions\relax
% \end{macrocode}
%
%
%
% \section{加载文档类和宏包}
%
% \begin{macrocode}
\ifustc@english
\PassOptionsToClass{scheme=plain}{ctexbook}
\fi
\ifustc@pdf
\PassOptionsToClass{oneside}{book}
\fi
\PassOptionsToPackage{quiet}{xeCJK}
% \end{macrocode}
%
% 载入 \cls{ctexbook} 文档类,注意要求为 2.2 或更高的版本。
% \begin{macrocode}
\LoadClass[UTF8,a4paper,openright,zihao=-4]{ctexbook}[2016/05/16]
% \end{macrocode}
%
% 检测 ctexbook 版本,如果版本过低会报错
% \begin{macrocode}
\@ifclasslater{ctexbook}{2016/05/16}{}{
\ClassError{ustcthesis}{%
This template requires TeX Live\MessageBreak 2016 or later version}{}
}
% \end{macrocode}
%
% 加载所需宏包,注意不要轻易改变加载顺序。
% \begin{macrocode}
\RequirePackage{etoolbox}
\RequirePackage{amsmath}
\RequirePackage{unicode-math}
\RequirePackage{geometry}
\RequirePackage{graphicx}
\RequirePackage{color}
\RequirePackage{fancyhdr}
\RequirePackage{titletoc}
\RequirePackage[perpage]{footmisc}
\RequirePackage{caption}
\RequirePackage{calc}
\RequirePackage{amsthm}
\ifustc@numerical
\PassOptionsToPackage{sort&compress}{natbib}
\fi
\RequirePackage{natbib}
\RequirePackage{hyperref}
% \end{macrocode}
%
%
%
% \section{字体}
%
% \begin{macro}{\ustc@strifeq}
% 判断字符串是否相等。
% \begin{macrocode}
\newcommand\ustc@strifeq{\csname str_if_eq_x:nnTF\endcsname}
% \end{macrocode}
% \end{macro}
%
% 将 \pkg{ctex} 的 \opt{fontset} 存在 \cs{ustc@fontset} 方便 \LaTeXe{} 调用。
% \begin{macrocode}
\newcommand\ustc@fontset{\csname g__ctex_fontset_tl\endcsname}
% \end{macrocode}
%
% 设置西文字体
% \begin{macrocode}
\ustc@strifeq{\ustc@fontset}{fandol}{
\setmainfont[
Extension = .otf,
UprightFont = *-regular,
BoldFont = *-bold,
ItalicFont = *-italic,
BoldItalicFont = *-bolditalic,
]{texgyretermes}
\setsansfont[
Extension = .otf,
UprightFont = *-regular,
BoldFont = *-bold,
ItalicFont = *-italic,
BoldItalicFont = *-bolditalic,
]{texgyreheros}
\setmonofont[
Extension = .otf,
UprightFont = *-regular,
BoldFont = *-bold,
ItalicFont = *-italic,
BoldItalicFont = *-bolditalic,
Scale = MatchLowercase,
]{texgyrecursor}
\ClassWarningNoLine{ustcthesis}{%
You are using Fandol font family.\MessageBreak
Some glyphs may be missing.\MessageBreak
Please switch to a high-quality font set
}
}{
\setmainfont{Times New Roman}
\setsansfont{Arial}
\ustc@strifeq{\ustc@fontset}{mac}{
\setmonofont[Scale=MatchLowercase]{Menlo}
}{
\setmonofont[Scale=MatchLowercase]{Courier New}
}
}
% \end{macrocode}
%
% 中文字体可以由 \pkg{ctex} 自动设置,但是会有问题:
% 1. 无衬线字体默认会使用微软雅黑或者苹方,这对打印不太友好;
% 2. 没有粗体的字体不会开启伪粗;
% 所以必须做一些调整。
% \begin{macrocode}
\ustc@strifeq{\ustc@fontset}{mac}{
\setCJKmainfont[
UprightFont = * Light,
BoldFont = * Bold,
ItalicFont = Kaiti SC,
BoldItalicFont = Kaiti SC Bold,
]{Songti SC}
\setCJKsansfont{Heiti SC}
\setCJKfamilyfont{zhsong}[
UprightFont = * Light,
BoldFont = * Bold,
]{Songti SC}
\setCJKfamilyfont{zhhei}{Heiti SC}
\setCJKfamilyfont{zhkai}[BoldFont=Kaiti SC Bold]{Kaiti SC}
}{
\ustc@strifeq{\ustc@fontset}{windows}{
\IfFileExists{C:/bootfont.bin}{
\setCJKmainfont[AutoFakeBold,ItalicFont=KaiTi_GB2312]{SimSun}
}{
\setCJKmainfont[AutoFakeBold,ItalicFont=KaiTi]{SimSun}
}
\setCJKsansfont[AutoFakeBold]{SimHei}
\setCJKfamilyfont{zhsong}[AutoFakeBold]{SimSun}
\setCJKfamilyfont{zhhei}[AutoFakeBold]{SimHei}
}{
\ustc@strifeq{\ustc@fontset}{adobe}{
\setCJKmainfont[
AutoFakeBold,
ItalicFont=AdobeKaitiStd-Regular,
]{AdobeSongStd-Light}
\setCJKsansfont[AutoFakeBold]{AdobeHeitiStd-Regular}
\setCJKfamilyfont{zhsong}[AutoFakeBold]{AdobeSongStd-Light}
\setCJKfamilyfont{zhhei}[AutoFakeBold]{AdobeHeitiStd-Regular}
}{}
}
}
% \end{macrocode}
%
% \begin{macro}{\ustc@circlefont}
% 五级节标题和脚注要求使用带圈数字,
% 但 Times New Roman 没有这些符号的字形,而华文宋体和中易宋体提供了这些字形,
% 配置在 \cs{ustc@circlefont}。
% \begin{macrocode}
\ustc@strifeq{\ustc@fontset}{mac}{
\newfontfamily\ustc@circlefont{Songti SC Light}
}{
\ustc@strifeq{\ustc@fontset}{windows}{
\newfontfamily\ustc@circlefont{SimSun}
}{
\newfontfamily\ustc@circlefont{xits-regular.otf}
}
}
% \end{macrocode}
% \end{macro}
%
% 印刷的长度单位点(磅)通常指 PostScript point,在 \LaTeX{} 中是 bp。
% \begin{macrocode}
\newdimen\bp@
\bp@=1bp
% \end{macrocode}
%
% 下面设置正文字号 12bp,行距 20bp;
% 其他命令的行距按照相同的的比例设置,如表~\ref{tab:fontsize}。
% \begin{table}[htb]
% \centering
% \begin{tabular}{llll}
% \toprule
% 字体命令 & 字号 & bp & 行距 \\
% \midrule
% \cs{tiny} & 小六 & 6.5 & 10.83 \\
% \cs{scriptsize} & 六号 & 7.5 & 12.5 \\
% \cs{footnotesize} & 小五 & 9 & 15 \\
% \cs{small} & 五号 & 10.5 & 17.5 \\
% \cs{normalsize} & 小四 & 12 & 20 \\
% \cs{large} & 小三 & 15 & 25 \\
% \cs{Large} & 小二 & 18 & 30 \\
% \cs{LARGE} & 二号 & 22 & 36.67 \\
% \cs{huge} & 小一 & 24 & 40 \\
% \cs{Huge} & 一号 & 26 & 43.33 \\
% \bottomrule
% \end{tabular}
% \caption{标准字体命令与字号、行距的对应}
% \label{tab:fontsize}
% \end{table}
% \begin{macrocode}
\renewcommand\normalsize{%
\@setfontsize\normalsize{12\bp@}{20\bp@}%
\abovedisplayskip 12\bp@ \@plus3\bp@ \@minus7\bp@
\abovedisplayshortskip \z@ \@plus3\bp@
\belowdisplayshortskip 6.5\bp@ \@plus3.5\bp@ \@minus3\bp@
\belowdisplayskip \abovedisplayskip
\let\@listi\@listI}
\normalsize
% \end{macrocode}
%
% 注意已经去掉了列表的间距,所以不再修改 \cs{@listi}。
% \begin{macrocode}
\renewcommand\small{%
\@setfontsize\small{10.5\bp@}{17.5\bp@}%
\abovedisplayskip 10.5\bp@ \@plus3\bp@ \@minus6\bp@
\abovedisplayshortskip \z@ \@plus3\bp@
\belowdisplayshortskip 6.5\bp@ \@plus3.5\bp@ \@minus3\bp@
\belowdisplayskip \abovedisplayskip
}
\renewcommand\footnotesize{%
\@setfontsize\footnotesize{9\bp@}{15\bp@}%
\abovedisplayskip 9\bp@ \@plus2\bp@ \@minus5\bp@
\abovedisplayshortskip \z@ \@plus3\bp@
\belowdisplayshortskip 6\bp@ \@plus3\bp@ \@minus3\bp@
\belowdisplayskip \abovedisplayskip
}
\renewcommand\scriptsize{\@setfontsize\scriptsize{7.5\bp@}{12.5\bp@}}
\renewcommand\tiny{\@setfontsize\tiny{6.5\bp@}{10.83\bp@}}
\renewcommand\large{\@setfontsize\large{15\bp@}{25\bp@}}
\renewcommand\Large{\@setfontsize\Large{18\bp@}{30\bp@}}
\renewcommand\LARGE{\@setfontsize\LARGE{22\bp@}{36.67\bp@}}
\renewcommand\huge{\@setfontsize\huge{24\bp@}{40\bp@}}
\renewcommand\Huge{\@setfontsize\Huge{26\bp@}{43.33\bp@}}
% \end{macrocode}
%
% 设置行距的倍数为 1。
% \begin{macrocode}
\linespread{1}\selectfont
% \end{macrocode}
%
% \begin{macro}{\ustc@fontsize}
% 类似于 \cs{@setfontsize},设置字号、行距后直接生效。
% \begin{macrocode}
\newcommand\ustc@fontsize[2]{%
\fontsize{#1}{#2}\selectfont}
% \end{macrocode}
% \end{macro}
%
%
%
% \section{处理语言}
%
% 这里设置了中英文的各种名字。
% \begin{macrocode}
\newcommand\ustc@abstractname{摘\hspace{2\ccwd}要}
\newcommand\ustc@enabstractname{Abstract}
\ifustc@english
\renewcommand\figurename{Fig.}
\newcommand\ustc@acknowledgementsname{Acknowledgements}
\newcommand\ustc@publicationsname{Publications}
\newcommand\ustc@assertionname{Assertion}
\newcommand\ustc@axiomname{Axiom}
\newcommand\ustc@corollaryname{Corollary}
\newcommand\ustc@definitionname{Definition}
\newcommand\ustc@examplename{Example}
\newcommand\ustc@lemmaname{Lemma}
\newcommand\ustc@proofname{Proof}
\newcommand\ustc@propositionname{Proposition}
\newcommand\ustc@remarkname{Remark}
\newcommand\ustc@theoremname{Theorem}
\else
\renewcommand\contentsname{目\hspace{2\ccwd}录}
\newcommand\ustc@acknowledgementsname{致\hspace{2\ccwd}谢}
\newcommand\ustc@acknowledgementstocname{致谢}
\newcommand\ustc@publicationsname{在读期间发表的学术论文与取得的研究成果}
\renewcommand\listfigurename{插图清单}
\renewcommand\listtablename{表格清单}
\newcommand\ustc@assertionname{断言}
\newcommand\ustc@axiomname{公理}
\newcommand\ustc@corollaryname{推论}
\newcommand\ustc@definitionname{定义}
\newcommand\ustc@examplename{例}
\newcommand\ustc@lemmaname{引理}
\newcommand\ustc@proofname{证明}
\newcommand\ustc@propositionname{命题}
\newcommand\ustc@remarkname{注}
\newcommand\ustc@theoremname{定理}
\fi
% \end{macrocode}
%
%
%
% \section{页面设置}
% 首先用 \pkg{geometry} 宏包设置纸张和页面。
% \begin{macrocode}
\geometry{
paper = a4paper,
vmargin = 2.54cm,
hmargin = 3.17cm,
headheight = 0.75cm,
headsep = 0.29cm,
footskip = 0.79cm,
}
% \end{macrocode}
%
%
%
% \section{封面}
%
% 定义命令用于录入信息。
% \begin{macrocode}
\def\ustc@define@term#1#2{%
\expandafter\gdef\csname #1\endcsname##1{%
\expandafter\gdef\csname ustc@#1\endcsname{##1}%
}%
\csname #1\endcsname{#2}%
}
% \end{macrocode}
%
% 定义用户接口:
% \begin{macrocode}
\ustc@define@term{title}{论文题目}
\ustc@define@term{author}{XXX}
\ustc@define@term{major}{XXX}
\ustc@define@term{supervisor}{XXX\quad 教授}
\ustc@define@term{cosupervisor}{}
\ustc@define@term{date}{\zhnumsetup{time=Chinese}\zhtoday}
\ustc@define@term{professionaltype}{专业学位类型}
\ustc@define@term{secretlevel}{}
\ustc@define@term{secretyear}{}
\ustc@define@term{entitle}{Title}
\ustc@define@term{enauthor}{XXX}
\ustc@define@term{enmajor}{XXX}
\ustc@define@term{ensupervisor}{Prof. XXX}
\ustc@define@term{encosupervisor}{}
\ustc@define@term{endate}{\CTEX@todayold}
\ustc@define@term{enprofessionaltype}{Professional degree type}
\ustc@define@term{ensecretlevel}{}
\ustc@define@term{keywords}{}
\ustc@define@term{enkeywords}{}
% \end{macrocode}
%
% 定义一些常量。
% \begin{macrocode}
\newcommand\ustc@universityname{中国大学}
\newcommand\ustc@enuniversityname{Unversity of China}
\ifustc@doctor
\newcommand\ustc@thesisname{博士学位论文}
\newcommand\ustc@enthesisname{A dissertation for doctor's degree}
\else
\ifustc@master
\newcommand\ustc@thesisname{硕士学位论文}
\newcommand\ustc@enthesisname{A dissertation for master's degree}
\else
\newcommand\ustc@thesisname{学士学位论文}
\newcommand\ustc@enthesisname{A dissertation for bachelor's degree}
\fi
\fi
% \end{macrocode}
%
% 中文封面:
% \begin{macrocode}
\newcommand\ustc@makezhtitle{%
\begin{titlepage}%
\centering
\parbox[t][0.6cm][t]{\textwidth}{%
\raggedleft\fangsong\large\null\ustc@secretlevel\par}\par
\vskip 0.5cm%
{\kaishu\bfseries\fontsize{36\bp@}{36\bp@}\selectfont
\ustc@universityname\par}
\vskip 0.6cm%
{\sffamily\fontsize{56\bp@}{56\bp@}\selectfont\ustc@thesisname\par}%
\vskip 2.0cm%
\includegraphics[height=4.1cm]{figures/chinathesis-logo.pdf}\par
\vskip 0.9cm%
\begin{minipage}[t][3.5cm][c]{\textwidth}%
\centering\sffamily\bfseries\Huge\ustc@title\par
\end{minipage}\par
\vskip 0.6cm%
{\large
\begin{tabular}{@{}l@{\hspace{\ccwd}}l@{}}%
\textsf{作者姓名:} & \ustc@author \\
\textsf{学科专业:} & \ustc@major \\
\textsf{导师姓名:} & \ustc@supervisor\quad\ustc@cosupervisor \\
\textsf{完成时间:} & \ustc@date
\end{tabular}\par}%
\end{titlepage}%
}
% \end{macrocode}
%
% 英文封面的 supervisor 一栏需要判断单复数
% \begin{macrocode}
\newcommand\ustc@supervisorline{%
\ifx\ustc@encosupervisor\@empty
Supervisor: \ustc@ensupervisor
\else
Supervisors: \ustc@ensupervisor, \ustc@encosupervisor
\fi}
% \end{macrocode}
%
% 英文封面
% \begin{macrocode}
\newcommand\ustc@makeentitle{%
\begin{titlepage}%
\centering
\parbox[t][0.4cm][t]{\textwidth}{%
\raggedleft\large\null\ustc@ensecretlevel\par}\par
\vskip 0.5cm%
{\sffamily\LARGE\ustc@enuniversityname\par}%
{\sffamily\Huge\ustc@enthesisname\par}%
\vskip 2.5cm%
\includegraphics[height=4.5cm]{figures/chinathesis-logo.pdf}\par
\vskip 0.5cm%
\begin{minipage}[t][4.5cm][c]{\textwidth}%
\centering\sffamily\bfseries\Huge\ustc@entitle\par
\end{minipage}\par
\vskip 1.6cm%
{\large
\begin{tabular}{@{}l@{}}
Author: \ustc@enauthor \\
Speciality: \ustc@enmajor \\
\ustc@supervisorline \\
Finished time: \ustc@endate
\end{tabular}\par}%
\end{titlepage}%
}
% \end{macrocode}
%
% 重新定义 \cs{maketitle},调用 \cs{ustc@makezhtitle}, \cs{ustc@makeentitle}
% 分别生成中、英文封面。
% \begin{macrocode}
\renewcommand\maketitle{%
\pagenumbering{gobble}%
\pdfbookmark[0]{封面}{titlepage}%
\ustc@makezhtitle
\cleardoublepage
\pdfbookmark[0]{Title page}{entitlepage}%
\ustc@makeentitle
\cleardoublepage
}
% \end{macrocode}
%
% 定义原创性声明
% \begin{macrocode}
\newcommand\ustc@originality{%
本人声明所呈交的学位论文,是本人在导师指导下进行研究工作所取得的成果。
除已特别加以标注和致谢的地方外,论文中不包含任何他人已经发表或撰写过
的研究成果。与我一同工作的同志对本研究所做的贡献均已在论文中作了明确的说明。}
\newcommand\ustc@authorization{%
作为申请学位的条件之一,学位论文著作权拥有者授权中国科学技术大学拥有
学位论文的部分使用权,即:学校有权按有关规定向国家有关部门或机构送交
论文的复印件和电子版,允许论文被查阅和借阅,可以将学位论文编入《中国
学位论文全文数据库》等有关数据库进行检索,可以采用影印、缩印或扫描等
复制手段保存、汇编学位论文。本人提交的电子文档的内容和纸质论文的内容
相一致。\par
保密的学位论文在解密后也遵守此规定。}
% \end{macrocode}
%
% \begin{macro}{\ustc@underline}
% 生成空的下划线
% \begin{macrocode}
\newcommand\ustc@underline[2][3.2cm]{\underline{\hb@xt@ #1{\hss#2\hss}}}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\ustc@checkbox}
% \begin{macrocode}
\newcommand\ustc@checkbox{%
\makebox[\z@][l]{$\square$}%
\raisebox{-0.2ex}{\hspace{0.1em}$\checkmark$}%
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\makestatement}
% \begin{macrocode}
\newcommand\makestatement{%
\pdfbookmark[0]{原创性声明}{statement}%
\begin{titlepage}%
\null
\vskip 0.3cm%
{\centering\sffamily\ustc@fontsize{16\bp@}{32\bp@}%
中国科学技术大学学位论文原创性声明\par}%
\vskip 0.7cm%
\ustc@originality\par
\vskip 1.3cm%
作者签名:\ustc@underline{}\hspace{2.7cm}%
签字日期:\ustc@underline{}\par
\vskip 1.9cm%
{\centering\sffamily\ustc@fontsize{16\bp@}{32\bp@}%
中国科学技术大学学位论文授权使用声明\par}
\vskip 0.7cm%
\ustc@authorization\par
\vskip 0.6cm%
\ifx\ustc@secretlevel\@empty
\ustc@checkbox{} 公开\quad
$\square$ 保密(\ustc@underline[0.85cm]{}年)\par
\else
$\square$ 公开\quad
\ustc@checkbox{} 保密(\ustc@underline[0.8cm]{\ustc@secretyear}年)\par
\fi
\vskip 0.5cm%
作者签名:\ustc@underline{}\hspace{2.7cm}%
导师签名:\ustc@underline{}\par
\vskip 0.5cm%
签字日期:\ustc@underline{}\hspace{2.7cm}%
签字日期:\ustc@underline{}\par
\end{titlepage}
\cleardoublepage
}%
% \end{macrocode}
% \end{macro}
%
%
%
% \section{页眉和页码}
%
% 使用 \pkg{fancyhdr} 宏包设置页眉和页码。
% \begin{macrocode}
\renewcommand{\headrulewidth}{0.4pt}
\fancypagestyle{ustc@headings}{
\fancyhf{}
\fancyhead[C]{\ustc@fontsize{10.5\bp@}{21\bp@}\leftmark}
\fancyfoot[C]{\ustc@fontsize{10.5\bp@}{21\bp@}\thepage}}
\pagestyle{ustc@headings}
% \end{macrocode}
%
% 取消页眉的英文自动大写,并保持与正文章标题格式一致。
% 注意,对 \cs{chaptermark} 的修改必须在第一次调用 \cs{pagestyle} 后。
% \begin{macrocode}
\newcommand\ustc@patchfailure[1]{%
\ClassError{ustcthesis}{Failed to patch command \protect#1.\MessageBreak
Please contact the template author.%
}{}%
}
\patchcmd\chaptermark{\MakeUppercase}{}{}{\ustc@patchfailure{\chaptermark}}
% \end{macrocode}
%
% \begin{macro}{\frontmatter}
% 前言的页码用大写罗马数字,
% \begin{macrocode}
% \renewcommand\frontmatter{%
% \cleardoublepage
% \@mainmatterfalse
% \pagenumbering{Roman}}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\cleardoublepage}
% 空白页不加页眉和页码。
% \begin{macrocode}
\def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else
\hbox{}\thispagestyle{empty}\newpage\if@twocolumn\hbox{}\newpage\fi\fi\fi}
% \end{macrocode}
% \end{macro}
%
%
%
% \section{章节标题}
%
% 标题最多允许使用五级。
% \begin{macrocode}
\setcounter{secnumdepth}{5}
% \end{macrocode}
%
% \begin{macro}{\ustc@textcircled}
% 五级节标题和脚注需要使用带圈的数字,这里使用 \cs{ustc@circlefont} :
% \begin{macrocode}
\newcommand\ustc@textcircled[1]{%
\ifnum\value{#1}<21\relax
{\ustc@circlefont\symbol{\numexpr\value{#1} + "245F\relax}}%
\else
\ClassError{ustcthesis}{Cannot display more than 10 footnotes}{}%
\fi
}
% \end{macrocode}
% \end{macro}
%
% 用 \pkg{ctex} 的接口设置全部章节标题格式。
%
% 各章标题:黑体 16 磅加粗居中,单倍行距,段前 24 磅,段后 18 磅,
% 章序号与章名间空一字。
% \begin{macrocode}
\ctexset{
chapter = {
format = \centering\sffamily\bfseries\ustc@fontsize{16\bp@}{20.75\bp@},
nameformat = {},
titleformat = {},
number = \thechapter,
aftername = \hspace{\ccwd},
pagestyle = ustc@headings,
},
}
% \end{macrocode}
%
% 注意 \pkg{ctex} 2.4.3 以下版本的bug会导致章节标题前后的距离的实际值偏大,
% 临时的解决方案是手动调整,偏移值为beforeskip=-31bp, afterskip=-10bp。
%
% 另外 \pkg{ctex} 2.2 前的beforeskip的符号有特殊意义,
% 所以要求 \pkg{ctex} 不低于 2.2 版本。
% \begin{macrocode}
\@ifclasslater{ctexbook}{2016/09/21}{
\ctexset{
chapter = {
beforeskip = 24\bp@,
afterskip = 18\bp@,
fixskip = true,
},
}
}{
\ctexset{
chapter = {
beforeskip = -7\bp@, % 24bp - 31bp
afterskip = 8\bp@, % 18bp - 10bp
},
}
}
% \end{macrocode}
%
% 一级节标题:黑体 14 磅左顶格,单倍行距,段前 24 磅,段后 6 磅,
% 序号与题名间空一字。
% \begin{macrocode}
\ctexset{
section = {
format = \sffamily\ustc@fontsize{14\bp@}{18.16\bp@},
aftername = \hspace{\ccwd},
beforeskip = 24\bp@,
afterskip = 6\bp@,
},
% \end{macrocode}
%
% 二级节标题:黑体 13 磅,左缩进两字,单倍行距,段前 12 磅,段后 6 磅,
% 序号与题名间空一字。
% \begin{macrocode}
subsection = {
format = \sffamily\ustc@fontsize{13\bp@}{16.86\bp@},
aftername = \hspace{\ccwd},
indent = 2\ccwd,
beforeskip = 12\bp@,
afterskip = 6\bp@,
},
% \end{macrocode}
%
% 三级节标题:黑体 12 磅,左缩进两字,行距 20 磅,段前段后 0 磅,
% 序号与题名间空半字宽。
% \begin{macrocode}
subsubsection = {
format = \sffamily\ustc@fontsize{12\bp@}{20\bp@},
number = \arabic{subsubsection},
aftername = .\hspace{0.5\ccwd},
indent = 2\ccwd,
beforeskip = \z@,
afterskip = \z@,
},
% \end{macrocode}
%
% 四级节标题:宋体 12 磅,左缩进两字,行距 20 磅,段前段后 0 磅,
% 序号与题名间空半字宽。
% \begin{macrocode}
paragraph = {
format = \rmfamily\ustc@fontsize{12\bp@}{20\bp@},
number = (\arabic{paragraph}),
aftername = \hspace{0.5\ccwd},
indent = 2\ccwd,
beforeskip = \z@,
afterskip = \z@,
runin = false,
},
% \end{macrocode}
%
% 五级节标题:宋体 12 磅,左缩进两字,行距 20 磅,段前段后 0 磅,
% 序号使用带圈数字,与题名间空半字宽。
% \begin{macrocode}
subparagraph = {
format = \rmfamily\ustc@fontsize{12\bp@}{20\bp@},
number = \ustc@textcircled{subparagraph},
aftername = \hspace{0.5\ccwd},
indent = 2\ccwd,
beforeskip = \z@,
afterskip = \z@,
runin = false,
},
}
% \end{macrocode}
%
% \begin{macro}{\ustc@chapter}
% 默认的 \cs{chapter*} 生成的章标题没有编号、不更改页眉,
% 也不添加进目录或 PDF 书签。
% 然而像摘要、目录、符号说明这样的章节,它们不需要编号、不加入目录,
% 但是需要修改页眉,并且加入 PDF 标签。
% 所以我们新定义 \cs{ustc@chapter} 用于处理这些章节。%
% \begin{macrocode}
\newcounter{ustc@pdfbookmark}
\NewDocumentCommand\ustc@chapter{o m}{%
\if@openright\cleardoublepage\else\clearpage\fi
\addtocounter{ustc@pdfbookmark}\@ne
\IfValueTF{#1}{%
\pdfbookmark[0]{#1}{ustcchapter.\theustc@pdfbookmark}%
\chaptermark{#1}%
}{%
\pdfbookmark[0]{#2}{ustcchapter.\theustc@pdfbookmark}%
\chaptermark{#2}%
}%
\chapter*{#2}}
% \end{macrocode}
% \end{macro}
%
%
%
% \section{摘要}
%
% \begin{environment}{abstract}
% 中文摘要环境。
% \begin{macrocode}
\newenvironment{abstract}{%
\ustc@chapter{\ustc@abstractname}%
}{
\par\null\par\noindent\hangindent=4\ccwd\relax
\textbf{关键词}:\ustc@keywords
}
% \end{macrocode}
% \end{environment}
%
% \begin{environment}{enabstract}
% 英文摘要环境
% \begin{macrocode}
\newenvironment{enabstract}{%
\@openrightfalse
\ustc@chapter{\ustc@enabstractname}%
\@openrighttrue
}{
\par\null\par\noindent\hangindent=5.3em\relax
\textbf{Key Words}: \ustc@enkeywords
}
% \end{macrocode}
% \end{environment}
%
%
%
% \section{目录}
%
% 目录不需要编号、不加入目录,但是需要修改页眉。
% \begin{macro}{\tableofcontents}
% \begin{macrocode}
\renewcommand\tableofcontents{%
\ustc@chapter{\contentsname}%
\@starttoc{toc}}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\listoffigures}
% \begin{macro}{\listoftables}
% 图、表的清单同目录一样。
% \begin{macrocode}
\renewcommand\listoffigures{%
\ustc@chapter{\listfigurename}%
\@starttoc{lof}}
\renewcommand\listoftables{%
\ustc@chapter{\listtablename}%
\@starttoc{lot}}
% \end{macrocode}
% \end{macro}
% \end{macro}
%
% 下面用 \pkg{titletoc} 宏包设置目录内容的格式。