-
Notifications
You must be signed in to change notification settings - Fork 97
/
bithesis.dtx
4309 lines (4062 loc) · 134 KB
/
bithesis.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) 2023
% Association of Bit Network Pioneer and any individual authors listed elsewhere in this file.
% -----------------------------------
%
% This work 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. This version of this license is in
% http://www.latex-project.org/lppl/lppl-1-3c.txt
% and the latest version of this license is in
% http://www.latex-project.org/lppl.txt
% and version 1.3 or later is part of all distributions of
% LaTeX version 2020/11/27 or later.
%
% \fi
%
% \iffalse
%<cls>\RequirePackage{expl3,l3keys2e}
%<thesis>\ProvidesExplClass{bithesis}
%<report>\ProvidesExplClass{bitreport}
%<beamer>\ProvidesExplClass{bitbeamer}
%<cls>{2024-10-07}{3.8.0}{BIT Thesis Templates}
%
%<*driver>
\ProvidesFile{bithesis.dtx}[2024/10/07 3.8.0 BIT Thesis Templates]
\documentclass[letterpaper]{l3doc}
\usepackage{dtx-style}
\DisableCrossrefs
\RecordChanges
\begin{document}
\DocInput{\jobname-doc.tex}
\PrintChanges
\def\indexname{代码索引}
%%%%% \PrintIndex
\end{document}
%</driver>
% \fi
%
% \begin{macro}
% \section{实现细节}
%
% \begin{macrocode}
%<*package>
% \end{macrocode}
%
% Identify the internal prefix (\LaTeX3 \pkg{DocStrip} convention).
% \begin{macrocode}
%<@@=bithesis>
% \end{macrocode}
%
% \begin{macrocode}
%</package>
% \end{macrocode}
%
% \subsection{bithesis.cls 文档类}
%
% \begin{macrocode}
%<*thesis>
% \end{macrocode}
%
% \subsubsection{全局变量与临时变量}
%
% 定义全局变量。
% \begin{variable}{\g_@@_thesis_type_int}
% 论文类型,取值从 1 开始,分别对应:
% \begin{enumerate}
% \item 本科生毕业设计(论文)
% \item 本科生毕业设计(论文)外文翻译
% \item 本科生全英文专业毕业设计(论文)
% \item 硕士学位论文
% \item 博士学位论文
% \end{enumerate}
% \begin{macrocode}
\int_new:N \g_@@_thesis_type_int
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\g_@@_head_zihao_int}
% 页眉字号。研究生论文使用 5 号字,本科生论文使用 4 号字。
% \begin{macrocode}
\int_new:N \g_@@_head_zihao_int
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\g_@@_twoside_bool}
% 是否双面打印。默认单面打印。
% \begin{macrocode}
\bool_new:N \g_@@_twoside_bool
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\g_@@_thesis_type_english_bool}
% 是否为英文模板。目前只有本科生全英文专业的模板会将此变量设置为 true。
% \begin{macrocode}
\bool_new:N \g_@@_thesis_type_english_bool
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\g_@@_blind_mode_bool}
% 是否为盲审模式。默认为 false。
% \begin{macrocode}
\bool_new:N \g_@@_blind_mode_bool
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\g_@@_quirks_mode_bool}
% 是否兼容更符合北理工官方模板或规范,但不太符合一般排版要求的模式。默认为 false。
% 目前此选项包括:
% \begin{itemize}
% \item \pkg{biblatex} 的专利格式不再使用国标格式,而采用北理工自定义格式。
% \end{itemize}
% \begin{macrocode}
\bool_new:N \g_@@_quirks_mode_bool
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\g_@@_label_divide_char_tl}
% 用于分隔标签的字符。默认为「-」或者「.」。
% \begin{macrocode}
\tl_new:N \g_@@_label_divide_char_tl
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\l_@@_right_seq, \l_@@_left_seq}
% 定义临时变量。
% \begin{macrocode}
\seq_new:N \l_@@_right_seq
\seq_new:N \l_@@_left_seq
% \end{macrocode}
% \end{variable}
%
% \subsubsection{辅助函数与常量}
%
% \begin{macro}[added=2023-05-06,updated=2023-07-04]{\@@_secret_info:nn,\@@_secret_info:N,\@@_secret_info:n}
% 普通模式下显示参数一,盲审模式下显示参数二。
% \begin{macrocode}
\cs_new:Npn \@@_hide:n #1 {
\g_@@_const_substitute_symbol_tl
}
\cs_new:Npn \@@_secret_info:nn #1 #2 {
\bool_if:nTF \g_@@_blind_mode_bool {
#2
} {
#1
}
}
\cs_new:Npn \@@_secret_info:N #1 {
\@@_secret_info:nn {#1} {\tl_map_function:NN #1 \@@_hide:n }
}
\cs_new:Npn \@@_secret_info:n #1 {
\@@_secret_info:nn {#1} {\tl_map_function:NN {#1} \@@_hide:n }
}
% \end{macrocode}
%
% \end{macro}
%
% \begin{macro}[added=2023-03-16]{\@@_get_const:N}
% 获取标题、章节、表格、图形等的常量名称。
% 会区别英文模式和中文模式。
% \begin{macrocode}
\cs_new:Npn \@@_get_const:N #1 {
\@@_if_thesis_english:TF {
\use:c {c_@@_label_ #1 _en_tl}
} {
\use:c {c_@@_label_ #1 _tl}
}
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}[added=2023-03-16]{\@@_set_english_mode:}
% 设置为英文模式。
% \begin{macrocode}
\cs_new:Npn \@@_set_english_mode: {
\bool_gset_true:N \g_@@_thesis_type_english_bool
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\tl_if_empty:xTF,\seq_set_split:Nnx}
% 生成变体。
% \begin{macrocode}
\cs_generate_variant:Nn \tl_if_empty:nTF {x}
\cs_generate_variant:Nn \seq_set_split:Nnn {Nnx}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\@@_same_page:}
% 取消换页。
% \begin{macrocode}
\cs_new:Npn \@@_same_page: {
\let\clearpage\relax
\let\cleardoublepage\relax
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_if_graduate:TF}
% 是否为研究生学位论文。
% \begin{macrocode}
\cs_new:Npn \@@_if_graduate:TF #1#2 {
\int_compare:nNnTF {3} < {\g_@@_thesis_type_int}
{#1}
{#2}
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_if_thesis_int_type:nT,\@@_if_thesis_int_type:nTF}
% 是否某一特定模板。
% \begin{macrocode}
\cs_new:Npn \@@_if_thesis_int_type:nTF #1#2#3 {\int_compare:nNnTF {\g_@@_thesis_type_int} = {#1} {#2} {#3}}
\cs_new:Npn \@@_if_thesis_int_type:nT #1#2 {\@@_if_thesis_int_type:nTF {#1} {#2} {}}
\cs_new:Npn \@@_if_thesis_int_type:nF #1#2 {\@@_if_thesis_int_type:nTF {#1} {} {#2}}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_if_thesis_english:T,\@@_if_thesis_english:TF}
% 是否为英文模板,这里包括全英文专业和研究生模板的英文模式。
% \begin{macrocode}
\cs_new:Npn \@@_if_thesis_english:TF #1#2 {\bool_if:nTF {\g_@@_thesis_type_english_bool} {#1} {#2}}
\cs_new:Npn \@@_if_thesis_english:T #1 {\@@_if_thesis_english:TF {#1}{}}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\@@_if_bachelor_thesis:TF,\@@_if_bachelor_thesis:T,\@@_if_master_thesis:TF,\@@_if_doctor_thesis:TF}
% 是否为本科、硕士、博士学位论文。
% \begin{macrocode}
\cs_new:Npn \@@_if_bachelor_thesis:TF #1#2 {\int_compare:nNnTF {\g_@@_thesis_type_int} < {4} {#1} {#2}}
\cs_new:Npn \@@_if_bachelor_thesis:T #1 {\@@_if_bachelor_thesis:TF {#1} {}}
\cs_new:Npn \@@_if_master_thesis:TF #1#2 {\int_compare:nNnTF {\g_@@_thesis_type_int} = {4} {#1} {#2}}
\cs_new:Npn \@@_if_doctor_thesis:TF #1#2 {\int_compare:nNnTF {\g_@@_thesis_type_int} = {5} {#1} {#2}}
% \end{macrocode}
% \end{macro}
%
% \begin{variable}{\c_@@_thesis_type_clist}
% 定义论文类型的列表。
% \begin{macrocode}
\clist_const:Nn \c_@@_thesis_type_clist
{ bachelor, bachelor_translation, bachelor_english, master, doctor}
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\c_@@_publication_modes_clist}
% 定义「攻读学位期间发表论文与研究成果清单」管理方式。
% \begin{macrocode}
\clist_const:Nn \c_@@_publication_modes_clist
{ biblatex, custom }
% \end{macrocode}
% \end{variable}
%
% \begin{macro}{\@@_define_label:nn,\@@_define_label_by_thesis_type:nnn,\@@_define_label:nnn,\@@_define_label_by_thesis_type:nnnn}
% 定义常量(标签)的辅助函数。
% \begin{macrocode}
\cs_new_protected:Npn \@@_define_label:nn #1#2
{ \tl_const:cn { c_@@_label_ #1 _tl } {#2} }
\cs_new_protected:Npn \@@_define_label_by_thesis_type:nnn #1#2#3
{
\tl_const:cn { c_@@_ #1 _label_ #2 _tl } {#3}
}
\cs_new_protected:Npn \@@_define_label:nnn #1#2#3
{
\tl_const:cn { c_@@_label_ #1 _tl } {#2}
\tl_const:cn { c_@@_label_ #1 _en_tl } {#3}
}
\cs_new_protected:Npn \@@_define_label_by_thesis_type:nnnn #1#2#3#4
{
\tl_const:cn { c_@@_ #1 _label_ #2 _tl } {#3}
\tl_const:cn { c_@@_ #1 _label_ #2 _en_tl } {#4}
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\smallgap:}
% 标签文字之间的间距。
% \begin{macrocode}
\cs_new:Npn \smallgap: {
\hspace{0.45ex}
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\boxempty:}
% 空的选框。
% \begin{macrocode}
\cs_new:Npn \boxempty:
{
\makebox[1em][l]
{
% 为保证与打了勾的一致,也需套盒子
\makebox[0pt][l]
{
% 默认比基线略高,向下降降
\raisebox{-1pt}{$\square$}
}
}
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\boxcheck:}
% 打了勾的选框。
% \begin{macrocode}
\cs_new:Npn \boxcheck:
{
\makebox[1em][l]
{
\makebox[0pt][l]
{
% 默认比基线略高,向下降降
\raisebox{-1pt}{$\square$}
}
$\checkmark$
}
}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\label_space:}
% 标签与内容之间的空白间距。
% \begin{macrocode}
\cs_new:Npn \label_space: {
\@@_if_bachelor_thesis:T {
\quad
}
}
% \end{macrocode}
% \end{macro}
%
% \begin{variable}{\c_@@_label_code_tl,\c_@@_label_udc_tl,
% \c_@@_label_classification_tl,\c_@@_label_classified_level_tl,\c_@@_label_type_tl}
% 没有对应英文的常量。
% \begin{macrocode}
\clist_map_inline:nn
{
{code} {代码},
{udc} {UDC分类号:},
{classification} {中图分类号:},
{classified_level} {密级},
{type} {种类},
{special_type} {特别类型},
{cross_research} {交叉研究方向},
{international_student_ugp} {政府项目留学生},
}
{\@@_define_label:nn #1}
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\c_@@_bachelor_label_xxx_tl}
% 本科毕设的常量。
% \begin{macrocode}
\clist_map_inline:nn
{
{originality} {原创性声明},
{originality_clause} {本人郑重声明:所呈交的毕业设计(论文),
是本人在指导老师的指导下独立进行研究所取得的成果。除文中已经注明引用的内容外,
本文不包含任何其他个人或集体已经发表或撰写过的研究成果。
对本文的研究做出重要贡献的个人和集体,均已在文中以明确方式标明。\par~特此申明。},
{authorization} {关于使用授权的声明},
{authorization_clause} {本人完全了解北京理工大学有关保管、使用毕业设计(论文)的规定,
其中包括:\circled{1}~学校有权保管、并向有关部门送交本毕业设计(论文)的原件与复印件;
\circled{2}~学校可以采用影印、缩印或其它复制手段复制并保存本毕业设计(论文);
\circled{3}~学校可允许本毕业设计(论文)被查阅或借阅;\circled{4}~学校可以学术交流为目的,
复制赠送和交换本毕业设计(论文);\circled{5}~学校可以公布本毕业设计(论文)的全部或部分内容。},
{originality_author_signature}
{本人签名:\hspace{40mm}日\hspace{2.5mm}期:\hspace{13mm}年\hspace{8mm}月\hspace{8mm}日},
{originality_supervisor_signature}
{指导老师签名:\hspace{40mm}日\hspace{2.5mm}期:\hspace{13mm}年\hspace{8mm}月\hspace{8mm}日},
} {\@@_define_label_by_thesis_type:nnn {bachelor} #1}
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\c_@@_bachelor_english_label_xxx_tl}
% 全英文专业的常量。
% \begin{macrocode}
\clist_map_inline:nn
{
{originality} {原创性声明~Statement~of~Originality},
{originality_clause} {
本人郑重声明:所呈交的毕业设计(论文),
是本人在指导老师的指导下独立进行研究所取得的成果。除文中已经注明引用的内容外,
本文不包含任何其他个人或集体已经发表或撰写过的研究成果。
对本文的研究做出重要贡献的个人和集体,均已在文中以明确方式标明。特此申明。\par
\arialfamily I,\dunderline[-1pt]{1pt}{\makebox[18mm]{}},~solemnly~
declare:~the~submitted~graduation~design~(thesis),~
is~the~research~achievement~completed~independently~by~myself~
under~the~guidance~of~the~supervisor.~This~article~does~not~contain~
any~research~published~or~written~by~any~other~individual~or~group,~
except~as~already~referenced~in~this~paper.~Individuals~and~groups~
that~have~made~important~contributions~to~the~study~of~this~paper~
are~clearly~indicated~and~cited~in~the~paper.\par
},
{authorization} {关于使用授权的声明~State~of~Use~Authorization},
{authorization_clause} {
本人完全了解北京理工大学有关保管、使用毕业设计(论文)的规定,
其中包括:\circled{1}学校有权保管、并向有关部门送交本毕业设计(论文)的原件与复印件;
\circled{2}学校可以采用影印、缩印或其它复制手段复制并保存本毕业设计(论文);
\circled{3}学校可允许本毕业设计(论文)被查阅或借阅;
\circled{4}学校可以学术交流为目的,复制赠送和交换本毕业设计(论文);
\circled{5}学校可以公布本毕业设计(论文)的全部或部分内容。\par
I~fully~understand~the~regulations~on~the~storage,~
use~of~graduation~design~(thesis)~in~Beijing~Institute~of~Technology.~
Beijing~Institute~of~Technology~has~the~right~to~(1)~keep,~
and~to~the~relevant~departments~to~send~the~original~or~copy~
of~this~graduation~design~(thesis);~(2)~copy~and~preserve~this~
graduation~design~(thesis)~by~photocopying,~miniature~or~other~
means~of~reproduction;~(3)~allow~this~graduation~design~(thesis)~
to~be~read~or~borrowed;~(4)~for~the~purpose~of~academic~exchange,~
copy,~give~and~exchange~this~graduation~design~(thesis);~(5)~
publish~all~or~part~of~the~contents~of~this~graduation~design~(thesis).~
},
} {\@@_define_label_by_thesis_type:nnn {bachelor_english} #1}
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\c_@@_graduate_label_xxx_tl}
% 研究生模板的常量。
% \begin{macrocode}
\clist_map_inline:nn
{
{originality} {研究成果声明},
{originality_clause} {本人郑重声明:所提交的学位论文是我本人在指导教师的指导下独立完成的研究成果。文中所撰写内容符合以下学术规范(请勾选):
\par \boxcheck:\hspace{0.5em} 论文综述遵循“适当引用”的规范,全部引用的内容不超过50\%。
\par \boxcheck:\hspace{0.5em} 论文中的研究数据及结果不存在篡改、剽窃、抄袭、伪造等学术不端行为,并愿意承担因学术不端行为所带来的一切后果和法律责任。
\par \boxcheck:\hspace{0.5em} 文中依法引用他人的成果,均已做出明确标注或得到许可。
\par \boxcheck:\hspace{0.5em} 论文内容未包含法律意义上已属于他人的任何形式的研究成果,也不包含本人已用于其他学位申请的论文或成果。
\par \boxcheck:\hspace{0.5em} 与本人一同工作的合作者对此研究工作所做的任何贡献均已在学位论文中作了明确的说明并表示了谢意。
\par~特此声明。},
{authorization} {关于学位论文使用权的说明},
{authorization_clause} {本人完全了解北京理工大学有关保管、使用学位论文的规定,其中包括:
\par~\circled{1}~学校有权保管、并向有关部门送交学位论文的原件与复印件;
\par~\circled{2}~学校可以采用影印、缩印或其它复制手段复制并保存学位论文;
\par~\circled{3}~学校可允许学位论文被查阅或借阅;
\par~\circled{4}~学校可以学术交流为目的,复制赠送和交换学位论文;
\par~\circled{5}~学校可以公布学位论文的全部或部分内容(保密学位论文在解密后遵守此规定)。},
{originality_author_signature}
{签\qquad 名:\hspace{40mm}日\hspace{2.5mm}期:\hspace{30mm}\quad},
{originality_supervisor_signature}
{导师签名:\hspace{40mm}日\hspace{2.5mm}期:\hspace{30mm}\quad},
} {\@@_define_label_by_thesis_type:nnn {graduate} #1}
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\c_@@_graduate_label_xxx_tl,\c_@@_graduate_label_xxx_en_tl}
% 研究生模板的中英常量。
% \begin{macrocode}
\clist_map_inline:nn
{
{author} {作\quad 者\quad 姓\quad 名} {Candidate~Name},
{school} {学\quad 院\quad 名\quad 称} {School~or~Department},
{supervisor} {指\quad 导\quad 教\quad 师} {Faculty~Mentor},
{chairman} {答辩委员会主席} {Chair,~Thesis~Committee},
{degree}
{申\quad 请\quad 学\quad 位}
{Degree~Applied},
{major} {学\quad 科\hspace{0.8ex} / \hspace{0.8ex} 类\quad 别} {Major},
{institute}
{学\smallgap: 位\smallgap: 授\smallgap: 予\smallgap: 单\smallgap: 位}
{Degree~by},
{defense_date}
{论\smallgap: 文\smallgap: 答\smallgap: 辩\smallgap: 日\smallgap: 期}
{The~Date~of~Defence},
} {\@@_define_label_by_thesis_type:nnnn {graduate} #1}
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\c_@@_label_xxx_tl,\c_@@_label_xxx_en_tl}
% 常用的中英常量。
% \begin{macrocode}
\clist_map_inline:nn
{
{school} {学\qquad 院} {School},
{major} {专\qquad 业} {Degree},
{course} {课程名称} {Course},
{class} {班\qquad{}级} {Class},
{author} {学生姓名} {Author},
{student_id} {学\qquad 号} {Student~ID},
{supervisor} {指导教师} {Supervisor},
{co_supervisor} {校外指导教师} {Co-Supervisor},
{teacher} {任课教师} {Teacher},
{semester} {上课学期} {Semester},
{keywords} {关键词:} {Key~Words:~},
{toc} {目\label_space: 录} {Table~of~Contents},
{abstract} {摘\label_space: 要} {Abstract},
{conclusion} {结\label_space: 论} {Conclusions},
% 附录部分的总标题
{appendix} {附\label_space: 录} {Appendices},
{ack} {致\label_space: 谢} {Acknowledgements},
{figure} {插\label_space: 图} {Illustrations},
{table} {表\label_space: 格} {Tables},
% 附录下各部分编号的前缀
{appendix_prefix} {附录} {Appendix},
{reference} {参考文献} {References},
{university} {北京理工大学} {Beijing~Institute~of~Technology},
{publications} {攻读学位期间发表论文与研究成果清单}
{Publications~During~Studies},
% TODO: Not so sure about the translation.
{resume} {作者简介} {Author~Biography},
{symbols} {主要符号对照表} {Nomenclature},
{algo} {算法} {Algorithm},
{them} {定理} {Theorem},
{lem} {引理} {Lemma},
{prop} {命题} {Proposition},
{cor} {推论} {Corollary},
{axi} {公理} {Axiom},
{defn} {定义} {Definition},
{conj} {猜想} {Conjecture},
{exmp} {例} {Example},
{case} {情形} {Case},
{rem} {注} {Remark},
{fig} {图} {Figure},
{tab} {表} {Table},
{equ} {式} {Equation},
}
{\@@_define_label:nnn #1}
% \end{macrocode}
% \end{variable}
%
% \begin{variable}{\c_@@_bachelor_thesis_header_clist,\c_@@_bachelor_thesis_headline_clist}
% 本科生模板的页眉标题与封面大标题常量列表,其中封面大标题不适用于硕士、博士学位论文,只适用于本科生毕业设计(论文)及其衍生物。
% \begin{macrocode}
\clist_const:Nn \c_@@_bachelor_thesis_header_clist
{
北京理工大学本科生毕业设计(论文),
北京理工大学本科生毕业设计(论文)外文翻译,
Beijing~Institute~of~Technology~Bachelor's~Thesis,
北京理工大学硕士学位论文,
北京理工大学博士学位论文,
}
\clist_const:Nn \c_@@_bachelor_thesis_headline_clist
{
本科生毕业设计(论文),
本科生毕业设计(论文)外文翻译,
Beijing\nobreak{~}Institute\nobreak{~}of\nobreak{~}Technology~Bachelor's~Thesis,
}
% \end{macrocode}
% \end{variable}
%
% \subsubsection{l3keys 接口键值对定义}
%
% 定义 |bithesis| 键值对类。
% \begin{macrocode}
\keys_define:nn { bithesis }
{
info .meta:nn = { bithesis / info } {#1},
misc .meta:nn = { bithesis / misc } {#1},
cover .meta:nn = { bithesis / cover } {#1},
style .meta:nn = { bithesis / style } {#1},
option .meta:nn = { bithesis / option } {#1},
TOC .meta:nn = { bithesis / TOC } {#1},
appendices .meta:nn = { bithesis / appendices } {#1},
publications .meta:nn = { bithesis / publications } {#1},
const .meta:nn = { bithesis / const } {#1},
}
% \end{macrocode}
%
% 定义 |bithesis/option| 键值对类。
% \begin{macrocode}
\keys_define:nn { bithesis / option }
{
type .choice:,
type .value_required:n = true,
type .choices:Vn =
\c_@@_thesis_type_clist
{
\int_set_eq:NN \g_@@_thesis_type_int \l_keys_choice_int
\int_case:nn {\l_keys_choice_int} {
% 本科全英文也是英文模板。
{3} {\@@_set_english_mode:}
}
},
type .initial:n = bachelor,
twoside .bool_gset:N = \g_@@_twoside_bool,
blindPeerReview .bool_gset:N = \g_@@_blind_mode_bool,
ctex .tl_set:N = \l_@@_options_to_ctex_tl,
quirks .bool_gset:N = \g_@@_quirks_mode_bool,
% xeCJK
autoFakeBold .tl_set:N = \g_@@_auto_fake_bold_tl,
autoFakeBold .initial:n = {3},
% 是否开启英文模式。目前在设计上,这个选项仅对研究生模板生效。
% 本科生模板的英文模式是根据 |type| 选项自动判断的。
english .code:n = { \@@_set_english_mode: } ,
}
% \end{macrocode}
%
% 定义 |bithesis/cover| 键值对类。
% \begin{macrocode}
\keys_define:nn { bithesis / cover }
{
date .tl_set:N = \l_@@_cover_date_tl,
headerImage .tl_set:N = \l_bit_coverheaderimage_tl,
xiheiFont .tl_set:N = \l_@@_cover_xihei_font_path_tl,
xiheiFont .default:n = {STXihei},
%% cover entry
delimiter .tl_set:N = \l_@@_cover_delimiter_tl,
labelAlign .tl_set:N = \l_@@_cover_label_align_tl,
labelAlign .initial:n = {r},
valueAlign .tl_set:N = \l_@@_cover_value_align_tl,
valueAlign .initial:n = {c},
labelMaxWidth .dim_set:N = \l_@@_cover_label_max_width_dim,
valueMaxWidth .dim_set:N = \l_@@_cover_value_max_width_dim,
autoWidthPadding .dim_set:N = \l_@@_cover_auto_width_padding_dim,
autoWidthPadding .initial:n = {0.25em},
autoWidth .bool_set:N = \l_@@_cover_auto_width_bool,
autoWidth .initial:n = {true},
underlineThickness .dim_set:N = \l_@@_cover_underline_thickness_dim,
underlineThickness .initial:n = {1pt},
underlineOffset .dim_set:N = \l_@@_cover_underline_offset_dim,
underlineOffset .initial:n = { -10pt },
hideCoverInPeerReview .bool_set:N = \l_@@_cover_hide_cover_in_peer_review_bool,
% 此处暂且填充默认值为`false`,待确定`\g_@@_thesis_type_int`后再根据论文类型覆盖默认值
hideCoverInPeerReview .initial:n = {false},
% 研究生的「特殊类型」
showSpecialTypeBox .bool_set:N = \l_@@_cover_show_special_type_box_bool,
showSpecialTypeBox .initial:n = {false},
% 本科英文模板也可以使用中文封面
prefer-zh .bool_set:N = \l_@@_cover_prefer_zh_bool,
prefer-zh .initial:n = {false},
% 本科英文模板使用中文封面时可能需要调换中英文标题顺序
reverse-titles .bool_set:N = \l_@@_cover_reverse_titles_bool,
reverse-titles .initial:n = {false},
% 本科英文模板可加入中文标题
addTitleZh .bool_set:N = \l_@@_cover_add_titlezh_bool,
addTitleZh .initial:n = {true},
}
% \end{macrocode}
%
% 定义 |bithesis/info| 键值对类。
% \begin{macrocode}
\keys_define:nn { bithesis / info }
{
title .tl_set:N = \l_@@_value_title_tl,
title .initial:n = {形状记忆聚氨酯的合成及其在织物中的应用(示例)},
titleEn .tl_set:N = \l_@@_value_title_en_tl,
titleEn .initial:n = {Synthesis~and~Application~on~Texttiles~of~the~Shape~Memory~Polyurethane~(example)},
% 因为是覆盖选项,所以不需要设置初始值。
verticalTitle .tl_set:N = \l_@@_value_vertical_title_tl,
school .tl_set:N = \l_@@_value_school_tl,
major .tl_set:N = \l_@@_value_major_tl,
class .tl_set:N = \l_@@_value_class_tl,
% 课程名称,读书报告使用
course .tl_set:N = \l_@@_value_course_tl,
author .tl_set:N = \l_@@_value_author_tl,
studentId .tl_set:N = \l_@@_value_student_id_tl,
% 指导教师
supervisor .tl_set:N = \l_@@_value_supervisor_tl,
% 因为默认不显示,所以不需要设置初始值。
externalSupervisor .tl_set:N = \l_@@_value_external_supervisor_tl,
% 任课教师,读书报告使用
teacher .tl_set:N = \l_@@_value_teacher_tl,
% 上课学期,读书报告使用
semester .tl_set:N = \l_@@_value_semester_tl,
keywords .tl_set:N = \l_@@_value_keywords_tl,
keywords .initial:n = {聚氨酯,形状记忆,织物(示例)},
keywordsEn .tl_set:N = \l_@@_value_keywords_en_tl,
keywordsEn .initial:n = {Polyurethane,Shape Memory,Textiles (example)},
translationTitle .tl_set:N = \l_@@_value_trans_title_tl,
translationOriginTitle .tl_set:N = \l_@@_value_trans_origin_title_tl,
% 中图分类号,研究生学位论文使用
classification .tl_set:N = \l_@@_value_classification_tl,
classification .initial:n = {TQ~028.1(示例)},
% UDC 分类号,研究生学位论文使用
UDC .tl_set:N = \l_@@_value_udc_tl,
UDC .initial:n = {540(示例)},
chairman .tl_set:N = \l_@@_value_chairman_tl,
degree .tl_set:N = \l_@@_value_degree_tl,
degreeEn .tl_set:N = \l_@@_value_degree_en_tl,
institute .tl_set:N = \l_@@_value_institute_tl,
institute .initial:n = {\tl_use:N \c_@@_label_university_tl},
defenseDate .tl_set:N = \l_@@_value_defense_date_tl,
authorEn .tl_set:N = \l_@@_value_author_en_tl,
schoolEn .tl_set:N = \l_@@_value_school_en_tl,
supervisorEn .tl_set:N = \l_@@_value_supervisor_en_tl,
chairmanEn .tl_set:N = \l_@@_value_chairman_en_tl,
majorEn .tl_set:N = \l_@@_value_major_en_tl,
instituteEn .tl_set:N = \l_@@_value_institute_en_tl,
instituteEn .initial:n = {\c_@@_label_university_en_tl},
defenseDateEn .tl_set:N = \l_@@_value_defense_date_en_tl,
defenseDateEn .initial:n = {June,~2019~(example)},
% 因为默认不显示,所以不需要设置初始值。
classifiedLevel .tl_set:N = \l_@@_value_classified_level_tl,
% 特别类型-交叉研究方向
crossResearch .bool_set:N = \l_@@_value_cross_research_bool,
crossResearch .initial:n = {false},
% 特别类型-政府项目留学生
internationalStudentUGP .bool_set:N = \l_@@_value_international_student_ugp_bool,
internationalStudentUGP .initial:n = {false},
}
% \end{macrocode}
%
% 定义 |bithesis/misc| 键值对类。
% \begin{macrocode}
\keys_define:nn { bithesis / misc }
{
% 表格字体大小,默认为 5 号字体。
tabularFontSize .tl_set:N = \l_@@_misc_tabular_font_size_tl,
tabularFontSize .initial:n = {5},
arialFont .tl_set:N = \l_@@_misc_arial_font_path_tl,
autoref / algo .code:n = {
\AtBeginDocument{
% 定义算法标题
% 针对 algorithm 宏包
\tl_set:Nn \ALG@name {#1}
% 针对 algorithm2e 宏包
\tl_set:Nn \algorithmcfname {#1}
% 定义算法的 autoref
% algorithm2e 宏包会覆写它,所以我们必须AtBeginDocument时再修改
\tl_set:Nn \algorithmautorefname {#1}
}
},
autoref / algo .initial:n = {\g_@@_const_autoref_algo_tl},
autoref / them .tl_set:N = \themautorefname,
autoref / them .initial:n = {\g_@@_const_autoref_them_tl},
autoref / lem .tl_set:N = \lemautorefname,
autoref / lem .initial:n = {\g_@@_const_autoref_lem_tl},
autoref / prop .tl_set:N = \propautorefname,
autoref / prop .initial:n = {\g_@@_const_autoref_prop_tl},
autoref / cor .tl_set:N = \corautorefname,
autoref / cor .initial:n = {\g_@@_const_autoref_cor_tl},
autoref / axi .tl_set:N = \axiautorefname,
autoref / axi .initial:n = {\g_@@_const_autoref_axi_tl},
autoref / defn .tl_set:N = \defnautorefname,
autoref / defn .initial:n = {\g_@@_const_autoref_defn_tl},
autoref / conj .tl_set:N = \conjautorefname,
autoref / conj .initial:n = {\g_@@_const_autoref_conj_tl},
autoref / exmp .tl_set:N = \exmpautorefname,
autoref / exmp .initial:n = {\g_@@_const_autoref_exmp_tl},
autoref / case .tl_set:N = \caseautorefname,
autoref / case .initial:n = {\g_@@_const_autoref_case_tl},
autoref / rem .tl_set:N = \remautorefname,
autoref / rem .initial:n = {\g_@@_const_autoref_rem_tl},
hideLinks .bool_set:N = \l_@@_misc_hide_links_bool,
hideLinks .initial:n = {true},
autoref / figure .tl_set:N = \figureautorefname,
autoref / figure .initial:n = {\g_@@_const_autoref_fig_tl},
autoref / table .tl_set:N = \tableautorefname,
autoref / table .initial:n = {\g_@@_const_autoref_tab_tl},
autoref / equ .tl_set:N = \equationautorefname,
autoref / equ .initial:n = {\g_@@_const_autoref_equ_tl},
% 浮动体相关的各种间距
floatSeparation .tl_set:N = \l_@@_misc_float_separation_tl,
floatSeparation .initial:n = {0},
algorithmSeparation .tl_set:N = \l_@@_misc_algorithm_separation_tl,
algorithmSeparation .initial:n = {12pt plus 4pt minus 4pt},
tabularRowSeparation .tl_set:N = \l_@@_misc_tabular_row_separation_tl,
tabularRowSeparation .initial:n = {1},
}
% \end{macrocode}
%
% 定义 |bithesis/const| 键值对类。
% \begin{macrocode}
\keys_define:nn { bithesis / const }
{
autoref .meta:nn = { bithesis / const / autoref } { #1 },
style .meta:nn = { bithesis / const / style } { #1 },
info .meta:nn = { bithesis / const / info } { #1 },
heading .meta:nn = { bithesis / const / heading } { #1 },
}
\keys_define:nn { bithesis / const / autoref }
{
algo .tl_set:N = \g_@@_const_autoref_algo_tl,
algo .initial:n = {\@@_get_const:N {algo}},
them .tl_set:N = \g_@@_const_autoref_them_tl,
them .initial:n = {\@@_get_const:N {them}},
lem .tl_set:N = \g_@@_const_autoref_lem_tl,
lem .initial:n = {\@@_get_const:N {lem}},
prop .tl_set:N = \g_@@_const_autoref_prop_tl,
prop .initial:n = {\@@_get_const:N {prop}},
cor .tl_set:N = \g_@@_const_autoref_cor_tl,
cor .initial:n = {\@@_get_const:N {cor}},
axi .tl_set:N = \g_@@_const_autoref_axi_tl,
axi .initial:n = {\@@_get_const:N {axi}},
defn .tl_set:N = \g_@@_const_autoref_defn_tl,
defn .initial:n = {\@@_get_const:N {defn}},
conj .tl_set:N = \g_@@_const_autoref_conj_tl,
conj .initial:n = {\@@_get_const:N {conj}},
exmp .tl_set:N = \g_@@_const_autoref_exmp_tl,
exmp .initial:n = {\@@_get_const:N {exmp}},
case .tl_set:N = \g_@@_const_autoref_case_tl,
case .initial:n = {\@@_get_const:N {case}},
rem .tl_set:N = \g_@@_const_autoref_rem_tl,
rem .initial:n = {\@@_get_const:N {rem}},
figure .tl_set:N = \g_@@_const_autoref_fig_tl,
figure .initial:n = {\@@_get_const:N {fig}},
table .tl_set:N = \g_@@_const_autoref_tab_tl,
table .initial:n = {\@@_get_const:N {tab}},
equ .tl_set:N = \g_@@_const_autoref_equ_tl,
equ .initial:n = {\@@_get_const:N {equ}},
}
\keys_define:nn { bithesis / const / style }
{
substituteSymbol .tl_set:N = \g_@@_const_substitute_symbol_tl,
substituteSymbol .initial:n = {*},
}
\keys_define:nn { bithesis / const / info }
{
degree .tl_set:N = \g_@@_const_info_degree_tl,
degree .initial:n = {
\c_@@_graduate_label_degree_tl
},
major .tl_set:N = \g_@@_const_info_major_tl,
major .initial:n = {
\@@_if_graduate:TF {
\c_@@_graduate_label_major_tl
} {
\@@_get_const:N {major}
}
},
}
\keys_define:nn { bithesis / const / heading }
{
acknowledgements .tl_set:N = \g_@@_const_heading_acknowledgements_tl,
acknowledgements .initial:n = {
\@@_get_const:N {ack}
},
}
% \end{macrocode}
%
% 定义 |bithesis/style| 键值对类。
% \begin{macrocode}
\keys_define:nn { bithesis / style }
{
head .tl_set:N = \l_@@_style_head_tl,
head .initial:n = {
\clist_item:Nn \c_@@_bachelor_thesis_header_clist \g_@@_thesis_type_int
},
headline .tl_set:N = \l_@@_style_headline_tl,
headline .initial:n = {
\clist_item:Nn \c_@@_bachelor_thesis_headline_clist \g_@@_thesis_type_int
},
bibliographyIndent .bool_set:N = \l_@@_style_bibliography_indent_bool,
bibliographyIndent .initial:n = {true},
pageVerticalAlign .choices:nn = {top, scattered} {
\tl_if_eq:NnTF \l_keys_choice_tl {top}
{ \raggedbottom }
{ \flushbottom }
},
pageVerticalAlign .initial:n = {top},
non-CJK-font-in-headings .choice:,
non-CJK-font-in-headings / serif .code:n = { \bool_set_false:N \l_@@_arial_as_title_font_bool },
non-CJK-font-in-headings / sans .code:n = { \bool_set_true:N \l_@@_arial_as_title_font_bool },
non-CJK-font-in-headings .initial:n = {serif},
% 数学字体配置
mathFont .choices:nn = {
asana, bonum, cm, concrete, dejavu, erewhon, euler,
fira, garamond, gfsneohellenic, kp, libertinus, lm, newcm,
pagella, schola, stix, stix2, termes, xcharter, xits, none,
} { \tl_set_eq:NN \l_@@_style_math_font_tl \l_keys_choice_tl },
mathFont .initial:n = {cm},
% Options that will be pass to `unicode-math` pkgs.
unicodeMathOptions .tl_set:N = \l_@@_unicode_math_options_tl,
% Windows 平台开启宋体伪粗体。
windowsSimSunFakeBold .bool_set:N = \l_@@_style_windows_simsum_fake_bold,
windowsSimSunFakeBold .initial:n = {false},
% 控制英文是否使用 hyphen 进行换行
hyphen .bool_set:N = \l_@@_style_hyphen_bool,
hyphen .initial:n = {true},
% 控制公式和上下文的距离
mathAboveDisplaySkip .dim_set:N = \l_@@_style_math_above_display_skip_dim,
mathAboveDisplaySkip .initial:n = {10pt},
mathBelowDisplaySkip .dim_set:N = \l_@@_style_math_below_display_skip_dim,
mathBelowDisplaySkip .initial:n = {10pt},
betterTimesNewRoman .bool_set:N = \l_@@_style_better_new_roman_bool,
betterTimesNewRoman .initial:n = {false},
}
% \end{macrocode}
%
% 定义 |bithesis/TOC| 键值对类。
% \begin{macrocode}
\keys_define:nn { bithesis / TOC }
{
title .tl_set:N = \l_@@_toc_title_tl,
title .initial:n = {
\@@_get_const:N {toc}
},
abstract .bool_set:N = \l_@@_add_abstract_to_toc_bool,
abstract .initial:n = {true},
abstractEn .bool_set:N = \l_@@_add_abstract_en_to_toc_bool,
abstractEn .initial:n = {true},
TOC .bool_set:N = \l_@@_add_toc_to_toc_bool,
TOC .initial:n = {false},
symbols .bool_set:N = \l_@@_add_symbols_to_toc_bool,
symbols .initial:n = {true},
}
% \end{macrocode}
%
% 定义 |bithesis/appendices| 键值对类。
% \begin{macrocode}
\keys_define:nn { bithesis / appendices }
{
chapterLevel .bool_set:N = \l_@@_appendices_chapter_level_bool,
title .tl_set:N = \l_@@_appendices_title_tl,
TOCTitle .tl_set:N = \l_@@_appendix_toc_title_tl,
}
% \end{macrocode}
%
% 定义 |bithesis/appendices| 键值对类。
% \begin{macrocode}
\keys_define:nn { bithesis / publications }
{
% mode .choice:,
% mode .value_required:n = true,
% mode .choices:Vn =
% \c_@@_publication_modes_clist
% {
% \int_new:N \l_@@_publication_mode_int
% \int_set:Nn \l_@@_publication_mode_int \l_keys_choice_int
% },
% mode .initial:n = biblatex,
sorting .bool_set:N = \l_@@_publications_sorting_bool,
sorting .initial:n = {true},
omit .bool_set:N = \l_@@_publications_omit_bool,
omit .initial:n = {false},
maxbibnames .int_set:N = \l_@@_publications_maxbibnames_int,
maxbibnames .initial:n = {10},
minbibnames .int_set:N = \l_@@_publications_minbibnames_int,
minbibnames .initial:n = {10},
}
% \end{macrocode}
% 在宏加载时,处理 |bithesis/option| 中的值。使得 |bithesis|
% 宏包的模板选项可以在宏加载时生效。
% \begin{macrocode}
\ProcessKeysOptions { bithesis / option }
% \end{macrocode}
% 确定 |bithesis/option| 中的 |\g_@@_thesis_type_int| 后,根据论文类型自动覆盖某些选项的默认值。
% \begin{macrocode}
\@@_if_graduate:TF {
\keys_set:nn {bithesis} {cover/hideCoverInPeerReview = false}
} {
\keys_set:nn {bithesis} {cover/hideCoverInPeerReview = true}
}
% \end{macrocode}
%
% \subsubsection{处理模板选项}
%
% 英文模板需要开启 ctexbook 宏包的英文选项。
% \begin{macrocode}
\@@_if_thesis_english:T {
\PassOptionsToClass{scheme=plain}{ctexbook}
}
% \end{macrocode}
% 如果设置 blindPeerReview 选项,则抑制 twoside 选项。
% \begin{macrocode}
\bool_if:NT \g_@@_blind_mode_bool {
\bool_set_false:N \g_@@_twoside_bool
}
% \end{macrocode}
%
% 如果没有开启双面打印选项,则在 ctexbook 中开启单面打印选项。
% 允许 chapter 直接另起一页(即使是偶数(左手)页)。
% \begin{macrocode}
\bool_if:NTF \g_@@_twoside_bool {} {
\PassOptionsToClass{oneside}{ctexbook}
}
\PassOptionsToClass{openany}{ctexbook}
% \end{macrocode}
%
% 将 |bithesis/option/ctex| 中的值传递给 ctexbook 模板类。
% \begin{macrocode}
% Any extra option passed by user will be passed to ctexbook.
\DeclareOption*{
\PassOptionsToClass{\l_@@_options_to_ctex_tl}{ctexbook}
}
% \end{macrocode}
%
% 抑制 fontspec 宏包关于字体的警告信息。
% 手动开启伪粗体、伪斜体。
% \begin{macrocode}
\PassOptionsToPackage{quiet,AutoFakeBold=\g_@@_auto_fake_bold_tl,AutoFakeSlant}{xeCJK}
% \end{macrocode}
% 加载 ctexbook 模板类。
% \begin{macrocode}
\ProcessOptions\relax
\LoadClass[zihao=-4,]{ctexbook}
% \end{macrocode}
%
% \subsubsection{定义模板类样式}
%
% 加载所需的宏包。
% \begin{macrocode}
\RequirePackage{geometry}
\RequirePackage[table,xcdraw]{xcolor}
\RequirePackage{xeCJK}
% 恢复数学行距(restoremathleading),同时避免改变正文行距。
% (ctex 默认 linespread 1.3 × LaTeX 默认倍数 1.2 = 1.56)
\RequirePackage[bodytextleadingratio=1.56]{zhlineskip}
\RequirePackage{titletoc}
\RequirePackage{graphicx}
\RequirePackage{fancyhdr}
\RequirePackage{pdfpages}
\RequirePackage[nodisplayskipstretch]{setspace}