-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththesis-guet.cls
1025 lines (858 loc) · 40.2 KB
/
thesis-guet.cls
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
% ========== 全局设置 ==========
\ProvidesClass{thesis-guet} % 提供thesis-guet文档类
% ========== 基础设置 ==========
\LoadClass[12pt,a4paper, openany, twoside]{book} % 使用book文档类,设置字体大小、纸张大小、章节起始位置
% ========== 必要的宏包 ==========
\RequirePackage{ifxetex} % 检查是否为XeTeX编译
\RequirePackage[dvipsnames,svgnames,table]{xcolor} % 使用颜色宏包
\RequirePackage{graphicx} % 图形处理宏包
\RequirePackage[font={onehalfspacing, small}, labelsep=space, skip=6pt, figurewithin=none, tablewithin=none]{caption} % 图表标题设置宏包
\RequirePackage{array,tabularx} % 表格宏包
\RequirePackage{booktabs} % 三线表宏包
\RequirePackage{makecell} % 设置封面表格部分横线的宽度
\RequirePackage[absolute,overlay]{textpos} % 设置文本框位置的宏包
\RequirePackage{setspace} % 行距宏包
\RequirePackage{multirow} % 多行合并表格宏包
\RequirePackage[tbtags]{amsmath} % 数学环境宏包
\RequirePackage{amssymb} % 数学符号宏包
\RequirePackage{amsthm} % 定理环境宏包
\RequirePackage{lmodern} % Latin Modern字体宏包
\RequirePackage[nopostdot]{glossaries} % 符号说明宏包
\RequirePackage{mathspec} % 数学字体宏包
\RequirePackage{xeCJK} % 对全局字体进行设置
\RequirePackage{datetime} % 日期时间宏包
\RequirePackage{ifplatform} % 判断操作系统宏包
% ========== 符号说明相关宏 ==========
\RequirePackage{framed} % Framing content宏包
\RequirePackage{multicol} % Multiple columns environment宏包
\RequirePackage[]{nomencl} % Nomenclature package宏包
% ========== 不清楚 ==========
\RequirePackage{zhnumber} % 大写中文数字宏包
\RequirePackage{pifont} % Pifont宏包
\RequirePackage[hyphens]{xurl} % 处理长链接宏包
\RequirePackage[
unicode,
pdfencoding=auto,
bookmarks=true,
hyperfootnotes=false,
bookmarksnumbered=true,
bookmarksdepth=4
]{hyperref} % 书签设置宏包
\RequirePackage{indentfirst} % 首段缩进宏包
\RequirePackage{float} % 浮动体宏包
\RequirePackage{fancyvrb} % Fancy verbatim宏包
\RequirePackage{fancyhdr} % 页眉设置宏包
\RequirePackage{titlesec} % 章节标题设置宏包
\RequirePackage{appendix} % 附录设置宏包
\RequirePackage[numbers,sort&compress,super,square]{natbib} % 参考文献引用格式设置宏包
\RequirePackage[normalem]{ulem} % 下划线设置宏包
\RequirePackage{enumitem} % 列表环境宏包
\RequirePackage[algochapter, boxruled, linesnumbered]{algorithm2e} % 算法设置宏包
\RequirePackage{etoolbox} % 工具宏包
\RequirePackage{newfloat} % 新浮动体宏包
\RequirePackage[resetlabels]{multibib} % 多参考文献设置宏包
\RequirePackage[nottoc]{tocbibind} % 快速插入目录宏包
\RequirePackage{ifoddpage} % 判断是否为奇数宏包
\RequirePackage{pdfpages} % 插入PDF宏包
\RequirePackage[titles]{tocloft} % 目录设置宏包
\RequirePackage[labelformat=simple]{subcaption} % 子图表设置宏包
\RequirePackage{geometry} % 页面布局宏包
\RequirePackage{ifthen} % 条件判断宏包
\RequirePackage[capitalize]{cleveref} % 引用设置宏包
\RequirePackage{lastpage} % 统计总页数宏包
\RequirePackage{color,listings} % 颜色设置宏包
\setmonofont{consola}[Path = ./fonts/consolas/]
\lstset{
breaklines,
numbers=left,
basicstyle=\small,
numberstyle= \small,
keywordstyle= \color{ blue!70},
commentstyle= \color{red!50!green!50!blue!50},
frame=shadowbox, % 阴影效果
rulesepcolor= \color{ red!20!green!20!blue!20} ,
escapeinside=``, % 英文分号中可写入中文
xleftmargin=5em,xrightmargin=4em, aboveskip=2em,
framexleftmargin=2em,basicstyle=\ttfamily
}
% ===============定义 eversion/pversion 选项===============
\newif\ifOptionPrintVersion % 定义逻辑变量 OptionPrintVersion
\OptionPrintVersionfalse % 默认为false 也就是电子版
\DeclareOption{eversion}{\OptionPrintVersionfalse} % false为电子版
\DeclareOption{pversion}{\OptionPrintVersiontrue} % true为打印版
\ProcessOptions\relax % 处理选项
% ================页边距设置===============
\ifOptionPrintVersion % 根据eversion/pversion 选项设置页边距
\geometry{inner=3cm, outer=2cm, top=3cm, bottom=2cm} % bindingoffset为内边距加长2.5cm
\else
\geometry{left=2.5cm, right=2.5cm, top=3cm, bottom=2cm}
\fi
% ===============定义空白页命令===============
\newcommand\blankpage{ % 定义添加空白页
\newpage
\thispagestyle{empty} %没有页眉页脚,空白页
\null
% \addtocounter{page}{-1} %\addtocounter{计数器}{数值}将数值与该计数器原有值相加,数值可以是正整数,也可以是负整数。
\newpage
}
% ===============定义带页眉页脚空白页命令===============
\newcommand\blankpage@number{\newpage\null\newpage}
% ++++++++++++++++++++++++++++++++++++++++++++++++++ 封面设置相关 ++++++++++++++++++++++++++++++++++++++++++++++++++
% ===============设置封面时间格式===============
\renewcommand{\today}{\number\year 年 \number\month 月 \number\day 日}
% ===============封面信息变量定义===============
\newcommand{\zh@thetitle}{\quad} % 标题
\newcommand{\en@thetitle}{\quad} % 英文标题
\newcommand{\theauthor}{\quad} % 作者
\newcommand{\thedate}{\quad} % 日期
\newcommand{\theschool}{\quad} % 学院
\newcommand{\themajor}{\quad} % 专业
\newcommand{\theadvisor}{\quad} % 导师姓名
\newcommand{\theprotitle}{\quad} % 导师职称
\newcommand{\thesecrets}{\qquad} % 密级
\newcommand{\thestudentnumber}{\quad} % 学号
\newcommand{\thedegreecategories}{\quad}
\newcommand{\thedatereply}{\quad}
% ===============封面信息获取===============
\renewcommand{\title}[2]{
\renewcommand{\zh@thetitle}{#1}
\renewcommand{\en@thetitle}{#2}
}
\newcommand{\secrets}[1]{\renewcommand{\thesecrets}{#1}}
\renewcommand{\author}[1]{\renewcommand{\theauthor}{#1}}
\renewcommand{\date}[1]{\renewcommand{\thedate}{#1}}
\newcommand{\major}[1]{\renewcommand{\themajor}{#1}}
\newcommand{\school}[1]{\renewcommand{\theschool}{#1}}
\newcommand{\advisor}[1]{\renewcommand{\theadvisor}{#1}} % 导师姓名
\newcommand{\protitle}[1]{\renewcommand{\theprotitle}{#1}} % 导师职称
\newcommand{\studentnumber}[1]{\renewcommand{\thestudentnumber}{#1}}
\newcommand{\degreecategories}[1]{\renewcommand{\thedegreecategories}{#1}}
\newcommand{\datereply}[1]{\renewcommand{\thedatereply}{#1}}
\newcommand{\thedateoral}{}
\newcommand{\thedatesubmit}{}
\newcommand{\thedateconfer}{年\quad 月}
\newcommand{\setdate}[2][]{
\ifthenelse{\equal{#1}{oral}}{\renewcommand{\thedateoral}{#2}}{}
\ifthenelse{\equal{#1}{submit}}{\renewcommand{\thedatesubmit}{#2}}{}
\ifthenelse{\equal{#1}{confer}}{\renewcommand{\thedateconfer}{#2}}{}
}
\def\degreename{本科}
\def\booktitle{本科毕业设计(论文)}
\def\displayheader{桂林电子科技大学本科生学位论文}
\hypersetup{ % 文中链接以及PDF信息相关设置
% pdfauthor = {\theauthor}, % 设置作者名称;
% pdftitle = {\zh@thetitle}, % 设置文档的标题;
% pdfsubject = {\displayheader}, % 设置文档主题;
% % pdfkeywords = {}, % 设置文档中关键词;
colorlinks=true, % 指定是否给链接添加颜色;
citecolor=black, % citecolor链接颜色设置;
linkcolor=black, % linkcolor引用颜色设置;
urlcolor=black, % urlcolor网址颜色;
}
\newcommand{\makecover}
{
\thispagestyle{empty} %没有页眉页脚,空白页
\setlength{\extrarowheight}{9pt}
\pdfbookmark{封面}{cover}
\setlength{\TPHorizModule}{1cm} % 设置textblock环境的水平单位
\setlength{\TPVertModule}{1cm} % 设置textblock环境的垂直单位
~\\
% ================设置LOGO
\begin{textblock}{15}(3,3.2)
\centering
\ifOptionPrintVersion
{\includegraphics[width=0.95 \textwidth]{./image/Guet-logo-black.pdf}}
\else
{\includegraphics[width=0.95 \textwidth]{./image/Guet-logo.pdf}}
\fi
\end{textblock}
% ================设置大题目
\begin{textblock}{10}(5.5,7.85)
\centering
\fontsize{26pt}{26pt}\selectfont{\heiti\bfseries\booktitle}\\
\end{textblock}
% ================设置题目
\begin{textblock}{15}(2.8,11.3)
\centering
\renewcommand{\arraystretch}{0.75} % 调整表格行间距
\begin{tabular}
{
m{1.4cm}<{\vspace{-0.3\baselineskip}\centering}
m{11.4cm}<{\vspace{-0.3\baselineskip}\centering}
}
\bfseries\fontsize{16pt}{16pt}\selectfont 题目: &
\multirow[t]{2}{11.4cm}{\centering\bfseries\fontsize{16pt}{16pt}\selectfont\zh@thetitle}
\\ \cline{2-2}
\\ \cline{2-2}
% \\ \cline{2-2} % 标题有几行就添加几行这段代码
\end{tabular}
\end{textblock}
% ================设置信息格式
\begin{textblock}{16}(2.4,16.9)
\centering
\renewcommand{\arraystretch}{1.2}
\begin{tabular}
{
>{\bfseries\fontsize{15pt}{15pt}\selectfont}m{3.8cm}
>{\centering\arraybackslash\fontsize{15pt}{15pt}\selectfont} p{9.6cm}}
学\hspace{0.36cm} \qquad \qquad 号: & \thestudentnumber \\
\cline{2-2}
姓\hspace{0.36cm} \qquad \qquad 名: & \theauthor \\
\cline{2-2}
学\hspace{0.36cm} \qquad \qquad 院: & \theschool \\
\cline{2-2}
专\quad \hspace{0.36cm} \qquad \quad 业: & \themajor \\
\cline{2-2}
指\hspace{0.38cm} 导\hspace{0.38cm} 教\hspace{0.38cm} 师: & \theadvisor \\
\cline{2-2}
指\hspace{0.1pt} 导\hspace{0.1pt} 教\hspace{0.1pt} 师\hspace{0.1pt} 职\hspace{0.1pt} 称: & \theprotitle \\
\cline{2-2}
\end{tabular}
\end{textblock}
\begin{textblock}{8}(6.5,26.9) %日期居中
\centering
\fontsize{16pt}{16pt}\selectfont \thedatereply
\end{textblock}
\setcounter{page}{1}
\setlength{\extrarowheight}{2pt}
%判断是否为电子版。true为电子版,false为打印版。
\ifOptionPrintVersion
{\blankpage}
\else
{}
\fi
}
% ====================导入封面PDF文件设置====================
\newcommand{\bindpdfcover}[1]{
\pdfbookmark{封面}{cover}
\includepdf[pages=-]{#1}
\newpage\setcounter{page}{0}
}
% ====================独创性(或创新性)声明设置====================
\newcommand{\originalitydeclaration}{
\newpage
\thispagestyle{empty} %没有页眉页脚,空白页
\begin{spacing}{1.5}
{\linespread{1.8}
\pdfbookmark{独创性(或创新性)声明}{originalitydeclaration}
\noindent
\begin{center} % \noindent无缩进
\fontsize{14pt}{20pt}\selectfont\bfseries 本科生毕业设计(论文)独创性声明
\end{center}
\par{\fontsize{12pt}{12pt}\selectfont\noindent\null\hspace{24pt} % % \noindent无缩进
本人声明所呈交的毕业设计(论文)是我个人在指导老师指导下进行的工作及取得的成果。尽我所知,除了文中特别加以标注和致谢中所罗列的内容以外,文中不包含其他人或其它机构已经发表或撰写过的成果;也不包含为获得桂林电子科技大学或其他教育机构的学位或证书而使用过的材料。其他同志对本工作的启发和所做的任何贡献均已在毕业设计(论文)中做了明确的说明并表示了谢意。}
\newline
\vspace{-1cm}
\fontsize{12pt}{12pt}\selectfont\noindent\null\hspace{19pt} % \noindent无缩进
毕业设计(论文)若有不实之处,本人承担一切相关责任。
\newline
\vspace{2cm}
\fontsize{12pt}{12pt}\selectfont\noindent\null\hspace{27pt}本人签名:\hspace{84pt} %
日期: \newline
\vspace{2cm}
\noindent
\begin{center} % \noindent无缩进
\fontsize{14pt}{24pt}\selectfont\bfseries 本科生毕业设计(论文)使用授权说明
\end{center}
\par{\fontsize{12pt}{12pt}\selectfont\noindent\null\hspace{24pt} %
桂林电子科技大学有权保留并向国家有关部门或机构送交毕业设计说明书(论文)的复印件,允许毕业设计(论文)被查阅和借阅。本人授权桂林电子科技大学可以公布毕业设计(论文)的全部或部分内容,可以采用影印、缩印或其它复制手段保存、汇编毕业设计(论文)。}
\newline
\vspace{1.5cm}
\fontsize{12pt}{12pt}\selectfont\noindent\null\hspace{24pt}作者签名:
\hspace{84pt} %
日期: \newline \newline
\fontsize{12pt}{12pt}\selectfont\noindent\null\hspace{24pt}导师签名:
\hspace{84pt} %
日期: \newline
}
\end{spacing}
\ifOptionPrintVersion
{\blankpage}
\else
{}
\fi
}
% ====================导入独创性声明定义PDF文件设置====================
\newcommand{\signatureofdeclaration}[1]{
\includepdf[pages=-]{#1}
\newpage\setcounter{page}{0}
\ifOptionPrintVersion
{\blankpage}
\else
{}
\fi
}
% ++++++++++++++++++++++++++++++++++++++++++++++++ 封面设置相关结束 ++++++++++++++++++++++++++++++++++++++++++++++++
% ===============字体设置===============
\newCJKfontfamily{\kaiti}[AutoFakeBold=true,Path = ./fonts/]{simkai.ttf} %楷体
\ifwindows
\newCJKfontfamily{\heiti}[AutoFakeBold=true,Path = ./fonts/]{simhei.ttf} %楷体
\setCJKmainfont[AutoFakeBold=true,Path = ./fonts/]{simsun.ttc}
\setallmainfonts[
BoldFont=timesbd.ttf,
ItalicFont=timesi.ttf,
BoldItalicFont=timesbi.ttf,
Path = ./fonts/
]{times.ttf}
\else
\ifmacosx
\setCJKmainfont[AutoFakeBold=true]{Songti SC}
\newCJKfontfamily{\heiti}[AutoFakeBold=true]{STHeiti}
\newfontfamily{\heiti@letter}{STHeiti}
\setallmainfonts{Times New Roman}
\else
\newCJKfontfamily{\heiti}[AutoFakeBold=true,Path = ./fonts/]{simhei.ttf} %楷体
\setCJKmainfont[AutoFakeBold=true,Path = ./fonts/]{simsun.ttc}
\setallmainfonts[
BoldFont=timesbd.ttf,
ItalicFont=timesi.ttf,
BoldItalicFont=timesbi.ttf,
Path = ./fonts/
]{times.ttf}
\fi
\fi
% ===============设置数学字体===============
\DeclareMathAlphabet{\mathbf}{\eu@enc}{\eu@mathrm}{\bfdefault}{it}
\DeclareMathAlphabet{\mathbd}{\eu@enc}{\eu@mathrm}{\bfdefault}{n}
\newcommand{\bm}{\mathbf}
% ===============定义相关线宽===============
\setlength{\heavyrulewidth}{0.9pt}
\setlength{\lightrulewidth}{0.5pt}
\setlength{\arrayrulewidth}{0.5pt}
\setlength{\cmidrulewidth}{0.5pt}
% ===============enumitem环境设置===============
\AddEnumerateCounter*{\chinese}{\zhnumber}{\arabic} % enumitem 中文编号设置
% ===============不清楚===============
\renewcommand{\thesubfigure}{(\alph{subfigure})} %设置子图标题序号
\newcommand{\floatcontinue}{\end{figure}\clearpage\begin{figure}[tb]\ContinuedFloat}
\urlstyle{rm}
\raggedbottom %顶部对齐
% ===============设置页眉线===============
\newdimen\singlelineskip
\setlength\singlelineskip{2pt}
\renewcommand\headrule{ %
\hrule height\headrulewidth width\headwidth%
\vskip 1.2\singlelineskip}
% ===============设置段落格式===============
\setlength{\headheight}{17pt} % 原先设置是15pt
\pagestyle{fancy} % 设置风格为fancy
\linespread{1.389} % 字号大小为12bp,基本行距为12×1.2=14.4bp,欲设置行距为20bp,则因子为20/14.4=1.389
\setlength\parindent{24pt} % 设置缩进长度 两个小四 pt:磅,bp:大点,pc:pica
% ===============设置标题段落===============
\titlespacing{\chapter}{0pt}{0pt}{18pt}
\titlespacing{\section}{0pt}{18pt}{6pt}
\titlespacing{\subsection}{0pt}{12pt}{6pt}
\titlespacing{\subsubsection}{0pt}{12pt}{6pt}
%标题周距设置,\titlespacing*{标题命令}{左间距}{上间距}{下间距} [右间距],用它可以设置每种层次标题与四周之间的距离。
% ===============设置标题格式===============
\renewcommand\thechapter{\arabic{chapter}}
\renewcommand\thesection{\arabic{chapter}.\arabic{section}}
%\the计数器,显示计数器的值,该命令只使用于序号计数器,例如\thepage显示当前页码。\value{计数器}调用计数器的值,无论计数器的计数形式如何都被转换成对应的阿拉伯数字。 \S 标题前加特数符号
\counterwithin{figure}{chapter} % 设置对应计数器每章重置
\counterwithin{table}{chapter} % 设置对应计数器每章重置
\renewcommand{\theequation}{公式 \arabic{chapter}.\arabic{equation}} % 显示公式编号,其格式x-x
\renewcommand{\thetable}{\arabic{chapter}.\arabic{table}} % 显示表格编号,其格式x-x
\renewcommand{\thefigure}{\arabic{chapter}.\arabic{figure}} % 显示插图编号,其格式x-x
% ===============设置图表格式===============
\DeclareCaptionFont{bfheiti}{\fontsize{10.5pt}{12.6pt}\selectfont\heiti} % 设置图表标题字体
\captionsetup{width=\textwidth - 60pt}
\captionsetup[subfigure]{aboveskip=5.25pt, belowskip=2pt,labelfont=bfheiti,textfont=bfheiti} % width=36pt 设置子图标题的宽度
\captionsetup[subfoat]{aboveskip=5.25pt, belowskip=2pt,labelfont=bfheiti,textfont=bfheiti}
\captionsetup[figure]{aboveskip=5.25pt, belowskip=0pt,labelfont=bfheiti,textfont=bfheiti}
%设置标题与插图或表格之间的垂直距离,设置标题与下文之间的附加垂直距离,
%如果标题在插图或表格之下;或标题与上文之间的附加垂直距离, 如果标题在插图或表格之上。该参数的默认值是0pt。为6pt,下面为0pt
\captionsetup[table]{aboveskip=5.25pt, belowskip=6pt,labelfont=bfheiti,textfont=bfheiti}
\captionsetup[longtable]{aboveskip=0pt, belowskip=6pt,labelfont=bfheiti,textfont=bfheiti}
\captionsetup[lstlisting]{aboveskip=5.25pt, belowskip=6pt,labelfont=bfheiti,textfont=bfheiti}
\renewcommand{\lstlistingname}{代码}
\setlength{\intextsep}{9pt} % 控制出现在页⾯中间的浮动体(如使⽤了h 选项的浮动体)与上下方文本之间的垂直距离
% \setlength{\textfloatsep}{6pt} % 控制出现在页⾯的顶部或底部的浮动体与⽂本之间的垂直距离
\AtBeginEnvironment{figure}{ %让图环境的内容居中
\def\@floatboxreset{\centering} %
}
\AtBeginEnvironment{table}{ %让表格环境的内容居中
\def\@floatboxreset{\centering} %
}
\AtBeginEnvironment{tabular}{\small} %表格字体小五
\AtBeginEnvironment{tabularx}{\small} %表格字体小五
\AtBeginEnvironment{tabular*}{\small} %表格字体小五
\AtBeginEnvironment{longtable}{\small} %跨页表格字体小五
%\captionsetup{format=hang} %caption工具包在加载时可以修改标题的很多方面,也可以通过 captionsetup命令也可以在工具包选项中修改。\captionsetup[浮动体类型]{参数1=选项, 参数2=选项,…}其中可选参数浮动体类型的选项可以是figure或table,如果省略该参数, 则表示这两种浮动体都适用。format:plain默认值,将标题作为普通段落排版。hang将标题从第二行起悬挂缩进排版,缩进宽度等于标题标志加分隔符的宽度。indention设置从标题第二行起的附加缩进宽度, 例如indention=5mm,其默认值是0pt。
%标题设置\captionsetup
% ===============章节和目录深度设置===============
\setcounter{secnumdepth}{3} %设置章节深度
\setcounter{tocdepth}{2} %设置目录深度
% ===============设置标题字体===============
\newcommand{\bachelorchapterformat}{} % 定义\bachelorchapterformat命令,用于修改本科一级标题格式
\titleformat{\chapter}[block]
{\bachelorchapterformat\fontsize{14pt}{14pt}\selectfont\heiti\thispagestyle{fancy}} % 本科chapter格式
{\thechapter}{12pt}{} % \thispagestyle{fancy} 需要使用fancyhdr包,并提供了奇偶页不同的风格
\titleformat{\section}[block]
{\fontsize{12pt}{12pt}\selectfont\heiti} % \heiti 设置为粗体
{\thesection}{5pt}{}
\titleformat{\subsection}[block]
{\fontsize{12pt}{12pt}\selectfont\kaiti}
{\thesubsection}{0pt}{}
\titleformat{\subsubsection}[block]
{\fontsize{12pt}{12pt}\selectfont}
{\thesubsubsection}{0pt}{}
\renewcommand{\thesubsubsection}{\arabic{subsubsection}.} % 四级标题格式设置为 1.
% ===============定义计数器===============
% \newcounter{pseudopage} %自定义一个名字pseudopage新计数器
% \setcounter{pseudopage}{0} %pseudopage新计数器清零
% \AddToHook {shipout/background}{\stepcounter{pseudopage}}
%\stepcounter{计数器},将计数器的值加1,如果计数器是层次标题的序号计数器,还将比其低一层计数器清零。例如\stepcounter{chapter},将chapter序号计数器加1,同时将section以及低于section的序号计数器归零。
%=========================中文摘要
\newenvironment{chineseabstract}{
\renewcommand{\bachelorchapterformat}{\centering}
\chapter*{\textbf{\fontsize{16pt}{16pt}\selectfont 摘\quad 要}}% 本科摘要标题是黑体三号加粗
\renewcommand{\bachelorchapterformat}{}
\setcounter{page}{1} % 定义为第一页
\pagenumbering{Roman} % 设置页码显示为罗马数字
\fancyhf{} % 初始化页码页脚布局
\fancyhead[C]{\fontsize{10.5pt}{12.6pt}\selectfont 桂林电子科技大学毕业设计(论文)报告用纸} % 设置页眉
}{
\ifOptionPrintVersion
{
\checkoddpage
\ifoddpage
\blankpage@number
\else
\newpage
\fi
}
\else
\newpage
\fi
}
%=========================中文关键字
\newcommand{\chinesekeyword}[1]{
\vspace{\baselineskip}
\noindent %无缩进
\@hangfrom{\makebox[48pt][l]{\textbf{关键词:}}}#1
}
%=========================英文摘要
\newenvironment{englishabstract}
{
\renewcommand{\bachelorchapterformat}{\centering}
\chapter*{\bfseries{\fontsize{16pt}{16pt}\selectfont Abstract}} % 本科英文摘要标题首字母大写
\renewcommand{\bachelorchapterformat}{}
\fancyhf{}
\fancyhead[C]{\fontsize{10.5pt}{12.6pt}\selectfont 桂林电子科技大学毕业设计(论文)报告用纸} % 设置页眉
}{
\ifOptionPrintVersion
{
\checkoddpage
\ifoddpage
\blankpage@number
\else
\newpage
\fi
}
\else
\newpage
\fi
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%英文关键字
\newcommand{\englishkeyword}[1]
{
\vspace{\baselineskip}
\noindent % 无缩进
\@hangfrom{\makebox[2.1cm][l]{\textbf{Keywords:}}}#1
}
% 定义加入目录的词语
% \addtocontents{扩展名} {文本}它可以将任意文本和相关格式命令写入目录或在创建目录时(如果是命令)则被执行,但它不会将命令写入目录。 文本可以是任意字符或\vspace、\newpage等调整某一条目格式的命令,一般在命令前加\protect。
\AddToHook {shipout/background}{\addtocontents{toc}{
\protect\cftsetpnumwidth{\widthof{\thepage}-1pt}
}}
\AddToHook {shipout/background}{\addtocontents{lof}{
\protect\cftsetpnumwidth{\widthof{\thepage}-1pt}
}}
\AddToHook {shipout/background}{\addtocontents{lot}{
\protect\cftsetpnumwidth{\widthof{\thepage}-1pt}
}}
% 设置奇数和偶数页页眉栏文字%使用计数器
\tocloftpagestyle{fancy} % 用户自定义的奇页眉使用桂林电子科技大学xxx,偶数使用标题,页脚页眉居中
\renewcommand{\cftchappagefont}{\normalfont}
\renewcommand\cftchapleader{\cftdotfill{\cftdotsep}}
\renewcommand{\cftdotsep}{0.4}
\setlength{\cftbeforetoctitleskip}{0pt}
\setlength{\cftaftertoctitleskip}{18pt}
\setlength{\cftbeforechapskip}{0pt}
\cftsetindents{chapter}{0pt}{20pt} % 一个空格约为5磅
\cftsetindents{section}{0pt}{20pt}
\cftsetindents{subsection}{0pt}{25pt}
\cftsetindents{subsubsection}{0pt}{40pt}
% 本科目录字体大小
\renewcommand\cftchapfont{\fontsize{14pt}{14pt}\selectfont\heiti}
\renewcommand\cftsecfont{\fontsize{12pt}{12pt}\selectfont\heiti}
\renewcommand\cftsubsecfont{\fontsize{12pt}{12pt}\selectfont\kaiti}
% ====================正文页眉设置====================
\renewcommand{\chaptermark}[1]{\markboth{\thechapter\hspace*{5.25pt}#1}{}} % 修改页眉章节显示内容 %\markboth{<左面页眉>}{<右面页眉>}
\newcommand{\standardheader}{
\fancyhf{}
\fancyhead[CE,CO]{\fontsize{10.5pt}{12.6pt}\selectfont 桂林电子科技大学毕业设计(论文)报告用纸}
\fancyhead[RE,RO]{\fontsize{10.5pt}{12.6pt}\selectfont 第\thepage 页\enspace 共 \pageref {LastPage} 页 }
}
% ====================将默认名称改为中文====================
% ===============图表公式引用设置=============== cleveref
% \crefformat{equation}{式#1} %公式引用标签中去掉括号
\crefname{figure}{图}{图} % 更改引用前缀 参数二为单独引用
\crefname{table}{表}{表} % 参数三为多个引用
\crefname{equation}{式}{式}
\crefname{algorithm}{算法}{算法}
\crefname{chapter}{}{}
\crefname{section}{}{}
\crefname{subsection}{}{}
\renewcommand{\contentsname}{{\fontsize{16pt}{16pt}\selectfont 目\quad 录}} %使默认的Contents改为目 录显示
\renewcommand{\bibname}{参考文献} %使默认的参考文献名字改为参考文献显示
\renewcommand{\figurename}{图} %使默认的图名字改为图显示
\renewcommand{\tablename}{表} %使默认的表名字改为表显示
\renewcommand{\listfigurename}{插图索引}
\renewcommand{\listtablename}{插表索引}
\setlength{\extrarowheight}{2pt} % 行距
% ====================目录设置====================
\newcommand{\thesistableofcontents}
{
\newpage
\fancyhf{}
\fancyhead[C]{\fontsize{10.5pt}{12.6pt}\selectfont 桂林电子科技大学毕业设计(论文)报告用纸}
\renewcommand{\bachelorchapterformat}{\centering}
\begin{spacing}{1.5}%本科目录两倍行距
\tableofcontents
\end{spacing}
\renewcommand{\bachelorchapterformat}{} % 还原初始设置
\label{page:tableofcontents} % 设置pageref获取页码数的标记
}
\pretocmd{\tableofcontents}{
\pdfbookmark{目录}{toc}
}{}{}
% ====================插图索引格式设置====================
\newcommand{\thesisfigurelist}
{
\renewcommand{\bachelorchapterformat}{\centering} % 设置标题居中
\setstretch{2.0} % 设置二倍行距
\listoffigures
\setstretch{1.389} % 行距设置回20磅
\renewcommand{\bachelorchapterformat}{} % 还原初始设置:左对齐
}
\pretocmd{\listoffigures}
{ % 图目录是存放在.lof目录的文件下
\newpage % 新建一页
\fancyhf{} % 初始化页码页脚布局
\fancyhead[C]{\fontsize{10.5pt}{12.6pt}\selectfont{桂林电子科技大学毕业设计(论文)}}
\fancyhead[RE,RO]{\fontsize{10.5pt}{12.6pt}\selectfont 第\thepage 页\enspace 共 \pageref{page:tableofcontents} 页}
\addtolength{\cftfignumwidth}{12pt} % 设置长度命令,使命令\cftfignumwidth的长度设置为12pt,条目编号与条目内容之间占用的宽度, 例如:图 1-2 [\cftfignumwidth] 电子战飞机
\renewcommand{\cftfigpresnum}{图} % 条目编号前内容
\addtocontents{toc}{\protect\setcounter{tocdepth}{0}} % 将目录深度设置为0 就会在目录中显示
}{}{}
% ====================插表索引格式设置====================
\newcommand{\thesistablelist}
{
\renewcommand{\bachelorchapterformat}{\centering} % 设置标题居中
\setstretch{2.0} % 设置二倍行距
\listoftables
\setstretch{1.389} % 行距设置回20磅
\renewcommand{\bachelorchapterformat}{} % 还原初始设置:左对齐
}
\pretocmd{\listoftables}
{ % 表目录是存放在.lot目录的文件下
\newpage
\fancyhf{}
\fancyhead[C]{\fontsize{10.5pt}{12.6pt}\selectfont{桂林电子科技大学毕业设计(论文)}}
\fancyhead[RE,RO]{\fontsize{10.5pt}{12.6pt}\selectfont 第\thepage 页\enspace 共 \pageref{page:tableofcontents} 页}
\addtolength{\cfttabnumwidth}{12pt} % 条目编号占用宽度,条目编号与条目内容之间占用的宽度, 例如:表1-1 [\cftfignumwidth] 参数设置
\renewcommand{\cfttabpresnum}{表} % 条目编号前内容
\addtocontents{toc}{\protect\setcounter{tocdepth}{0}} % 将目录深度设置为-1,目录中只显示一级标题 0 为chapter
}{}{}
% ====================符号说明页面设置====================
\newcommand{\thesissymbollist}{
\renewcommand{\bachelorchapterformat}{\centering} % 设置标题居中
\setstretch{2.0} % 设置二倍行距
\newpage
\fancyhf{}
\fancyhead[C]{\fontsize{10.5pt}{12.6pt}\selectfont{桂林电子科技大学毕业设计(论文)}}
\fancyhead[RE,RO]{\fontsize{10.5pt}{12.6pt}\selectfont 第\thepage 页\enspace 共 \pageref{page:tableofcontents} 页}
\renewcommand{\nomname}{符号说明} % 修改符号说明标题的名称。
\begin{small}
\printnomenclature[1.5 cm] % 设置术语与描述之间的距离
\end{small}
\addcontentsline{toc}{chapter}{\heiti 符号说明} % 设置在目录显示符号说明
\renewcommand{\bachelorchapterformat}{} % 还原初始设置:左对齐
\setstretch{1.389} % 行距设置回20磅
\ifOptionPrintVersion % 打印版本切换
{
\checkoddpage
\ifoddpage
\blankpage@number
\else
\newpage
\fi
}
\else
{}
\fi
}
% ====================符号表格式设置====================
% 设置符号说明为双栏显示
\renewcommand*\nompreamble{\begin{multicols}{2}}
\renewcommand*\nompostamble{\end{multicols}}
% 更改术语之间的垂直行间距
\newlength{\nomitemorigsep}
\setlength{\nomitemorigsep}{\nomitemsep}
\setlength{\nomitemsep}{-1\parsep} % Baseline skip between items
% 创建符号说明分组
\renewcommand{\nomgroup}[1]
{
\ifthenelse
{\equal{#1}{A}}
{\vspace{9pt} \item[\textbf{希腊字符}]}
{\ifthenelse
{\equal{#1}{B}}
{\vspace{9pt} \item[\textbf{下标}]}
{\ifthenelse{\equal{#1}{C}}{\vspace{9pt} \item[\textbf{缩略语}]}{}}
}
\itemsep\nomitemsep % 应用上面设置的术语垂直行间距
}
\makenomenclature % 应用符号表
% ====================算法栏====================
\SetAlgorithmName{算法}{算法}{算法列表}
\renewcommand\thealgocf{\arabic{chapter}-\arabic{algocf}}
\SetAlgoCaptionSeparator{\null}
\AtBeginEnvironment{algorithm}{\vspace{9pt}}
\AfterEndEnvironment{algorithm}{\vspace{9pt}}
\newcommand{\thesisintroduction}
{
\thesiscontent
\chapter*{引言}
\setcounter{page}{1} % section计数器清零
\addcontentsline{toc}{chapter}{引言}
}
% ====================致谢设置====================
\newcommand{\thesisacknowledgement}
{
\renewcommand{\bachelorchapterformat}{\centering} % 通过修改\bachelorchapterformat命令让致谢居中
\addtocontents{toc}{\protect\setcounter{tocdepth}{0}} % 只显示一级标题
\setcounter{section}{0} % section计数器清零
\chapter*{谢\quad 辞}
\addcontentsline{toc}{chapter}{谢辞}
% \markboth{致谢}{致谢} %\markboth{<左面页眉>}{<右面页眉>}
\fancyhf{}
\fancyhead[CE,CO]{\fontsize{10.5pt}{12.6pt}\selectfont 桂林电子科技大学毕业设计(论文)报告用纸}
\fancyhead[RE,RO]{\fontsize{10.5pt}{12.6pt}\selectfont 第\thepage 页\enspace 共 \pageref {LastPage} 页 }
\thispagestyle{fancy}
\normalsize % 设置字体为小四
\input{chapters/thanks.tex} % 致谢文档位置
\renewcommand{\bachelorchapterformat}{}
}
\newcommand{\thesiscontent}
{
\newpage
\clearpage
\clearpage{\thispagestyle{empty}\cleardoublepage}
\addtocontents{toc}{\protect\setcounter{tocdepth}{2}}
\standardheader
\pagenumbering{arabic}
}
% \pretocmd{\@chapter}
% {
% \ifdefined\@BODY
% \else
% \ifnum\value{chapter}=0
% \thesiscontent
% \fi
% \fi
% }{}{}
% ====================附录设置====================
\newcommand{\thesisappendix}
{ %附录格式设置 👇
\newpage
\appendix
\interlinepenalty=0
\addtocontents{toc}{\protect\setcounter{tocdepth}{2}}
\titleformat{\chapter}[block]
{\centering\fontsize{15pt}{15pt}\selectfont\heiti\thispagestyle{fancy}}{\thechapter}{7.5pt}{}
\renewcommand{\thechapter}{附录\Alph{chapter}}
\renewcommand{\appendixname}{附录}
\renewcommand{\thesection}{\Alph{chapter}.\arabic{section}}
\renewcommand{\theequation}{\alph{chapter}-\arabic{equation}}
\renewcommand{\thetable}{\alph{chapter}-\arabic{table}}
\renewcommand{\thefigure}{\alph{chapter}-\arabic{figure}}
\renewcommand{\thetheorem}{\alph{chapter}.\arabic{theorem}}
\renewcommand{\theaxiom}{\alph{chapter}.\arabic{axiom}}
\renewcommand{\thecorollary}{\alph{chapter}.\arabic{corollary}}
\renewcommand{\thelemma}{\alph{chapter}.\arabic{lemma}}
\renewcommand{\thedefinition}{\alph{chapter}.\arabic{definition}}
\renewcommand{\theexample}{\alph{chapter}.\arabic{example}}
}
\newcommand{\thesissingleappendix}
{
\newpage
\appendix
\interlinepenalty=0
\addtocontents{toc}{\protect\setcounter{tocdepth}{2}}
\titleformat{\chapter}[block]
{\centering\fontsize{15pt}{15pt}\selectfont\heiti\thispagestyle{fancy}}{附\quad 录}{7.5pt}{}
%\renewcommand{\thechapter}{附\quad 录}
\renewcommand{\appendixname}{附录}
\renewcommand{\thesection}{A.\arabic{section}}
\renewcommand{\theequation}{a-\arabic{equation}}
\renewcommand{\thetable}{a-\arabic{table}}
\renewcommand{\thefigure}{a-\arabic{figure}}
\renewcommand{\thetheorem}{a.\arabic{theorem}}
\renewcommand{\theaxiom}{a.\arabic{axiom}}
\renewcommand{\thecorollary}{a.\arabic{corollary}}
\renewcommand{\thelemma}{a.\arabic{lemma}}
\renewcommand{\thedefinition}{a.\arabic{definition}}
\renewcommand{\theexample}{a.\arabic{example}}
\chapter*{附\quad 录}
\addcontentsline{toc}{chapter}{附录}
\markboth{附录}{附录}
}
%章节目录中的条目是由\chapter和\section等章节命令生成的,插图或表格目录中的条目是由在浮动环境figure或table中的图表标题命令\caption生成的; 而带星号的章节命令和图表标题命令以及摘要! 参考文献等环境创建的无序号标题, 则不能进入目录。如果希望某个无序号标题也能被排入目录, 可在该标题或环境命令之后使用附加条目命令:
%\addcontentsline{扩展名} {条目类型} {条目文本}
%扩展名 标题记录文件的扩展名, 如果所附加条目的是章节目录,扩展名为toc;如果是插图目录, 则为lof; 如果是表格目录则为lot。
%条目类型 所附加条目的格式类型,如果扩展名为toc, 那条目类型可以是chapter、section等不带反斜杠的章节命令名; 如果为lof, 则是figure; 如果为lot, 则是table。
%条目文本可以是带星号命令或摘要等环境生成的无序号标题, 也可以是其他需要向目录添加的文字符号
% ====================参考文献设置====================
\newcommand{\thesisbibliography}{\thesisloadbibliography}
\renewcommand{\bibname}{参考文献}
\renewcommand{\@biblabel}[1]{[#1]\hfill}
\newenvironment{thesisthebibliography}{
\begin{thebibliography}{lo}
\interlinepenalty=10000
\begin{spacing}{1.667}
\thispagestyle{fancy}
\small
}{
\end{spacing}
\end{thebibliography}
}
\pretocmd{\bibliography}{
\newpage
\fancyhf{}
\fancyhead[CE,CO]{\fontsize{10.5pt}{12.6pt}\selectfont 桂林电子科技大学毕业设计(论文)报告用纸}
\fancyhead[RE,RO]{\fontsize{10.5pt}{12.6pt}\selectfont 第\thepage 页\enspace 共 \pageref {LastPage} 页 }
\interlinepenalty=10000
\begin{spacing}{1.667}
}{}{}
\small
\apptocmd{\bibliography}{
\end{spacing}
}{}{}
\setlength{\bibsep}{0pt} % 消除参考文献条目间的额外行间距
\newcommand{\bstlabelmark}{lo}
\newcommand{\thesisloadbibliography}[2][]{
\small
\ifthenelse{ %\ifthenelse{判断条件}{肯定结构}{否定结构}
\equal{#1}{large} %\equal{#1}{nocite} %判断#1是否等于notice
}{
\setlength{\labelsep}{3pt}
\renewcommand{\bstlabelmark}{loo}
\bibliographystyle{./references/thesis-guet(base-gbt7714-numerical).bst} %插入参考文献的样式.bst文件
\bibliography{#2}
\setlength{\labelsep}{6pt}
}{
\bibliographystyle{./references/thesis-guet(base-gbt7714-numerical).bst} %插入参考文献的样式.bst文件
\bibliography{#2} %参考文献格式,用于指定排版参考文献所使用的文献格式文件名.bib
}
}
\AtBeginDocument{ % 该代码用以解决: multibib 的 resetlabels 功能的 bug
\def\thebibliography#1{ %
\@isnumber{#1}{ %
\ifnum\mb@biblabelwidth=0
% \@tempcnta\c@NAT@ctr %% changed here to c@NAT@ctr
\@tempcnta=#1\relax
\ifcontinuouslabels
\advance\@tempcnta\c@NAT@ctr
% \advance\@tempcnta#1%
\fi
\std@thebibliography{\@arabic\@tempcnta} %
\else
\std@thebibliography{\@arabic\mb@biblabelwidth} %
\global\mb@biblabelwidth 0
\fi
}{ %
\std@thebibliography{#1} %
} %
} %
}
% \newcommand{\thesisaccomplish}{
% \addtocontents{toc}{\protect\setcounter{tocdepth}{0}} %只显示一级标题
% \setcounter{section}{0} %section计数器清零
% \chapter*{攻读\degreename{}学位期间取得的成果}
% \addcontentsline{toc}{chapter}{攻读\degreename{}学位期间取得的成果}
% \fancyhf{}
% \fancyhead[C]{\fontsize{10.5pt}{12.6pt}\selectfont 攻读\degreename{}学位期间取得的成果}
% \fancyfoot[CE,CO]{\fontsize{9pt}{10.8pt}\selectfont\thepage}
% \thispagestyle{fancy}
% \normalsize % 设置字体为小四
% \input{Chapters/Accomplish.tex} %% 学术成果文档位置
% }
% { % 该处先注释掉了,不知道为什么总是报错提示没定义
% % 猜测最后一页报错可能是由于某些机制导致的,希望能有大神来解决。
% % 不过想了想,就算最后一页是奇数,不加空白页也没什么影响,
% % 打印出来的效果依然是背面空白。
% % \ifOptionPrintVersion
% % {
% % \checkoddpage
% % \ifoddpage
% % \blankpage
% % \else
% % \newpage
% % \fi
% % }
% % \else
% % {}
% % \fi
% }
% ===============定理设置===============
\newtheoremstyle{dotless}{0pt}{0pt}{\normalfont}{24pt}{\heiti}{}{ }{}
\theoremstyle{dotless} %plain(默认样式):定理名称是正体,定理内容是斜体。definition:定理名称和定理内容都是正体。remark: 定理名称是斜体,定理内容是正体
%\renewcommand\@upn{\selectfont\heiti@letter}
\newtheorem{theorem}{定理}[chapter]
\newtheorem{axiom}[theorem]{公理}
\newtheorem{corollary}[theorem]{推论}
\newtheorem{lemma}[theorem]{引理}
\newtheorem{definition}[theorem]{定义}
\newtheorem{example}[theorem]{例子}
\newtheorem{proposition}[theorem]{命题}
%\newtheorem{环境名} [计数器名] {标题} [排序单位]
%环境名 给所定义的定理类环境起的名称, 它不得与现有环境重名, 否则系统将提示出错。每定义一个环境名, 系统就会自动创建一个同名的计数器, 用于为所定义的定理类环境排序。
%计数器名 可选参数, 如果希望所定义的定理类环境与已定义的某个定理类环境混合排序,就可在其中填写该环境的计数器名, 也就是该定理类环境的环境名;如果省略这个可选参数, 则表示本定理类环境单独排序。
%标题 用于设置定理类表达式的标题, 如theorem定理, 证明和引理等。
%排序单位 可选参数, 用于设定排序单位, 如果是chapter, 则每一新章开始时所定义定理类环境的计数器清零; 该可选参数的默认值是以全文为排序单位
\renewcommand{\thetheorem}{\arabic{chapter}.\arabic{theorem}}
\renewcommand{\theaxiom}{\arabic{chapter}.\arabic{axiom}}
\renewcommand{\thecorollary}{\arabic{chapter}.\arabic{corollary}}
\renewcommand{\thelemma}{\arabic{chapter}.\arabic{lemma}}
\renewcommand{\thedefinition}{\arabic{chapter}.\arabic{definition}}
\renewcommand{\theexample}{\arabic{chapter}.\arabic{example}}
%\renewcommand{\qedsymbol}{$\blacksquare$} %结束符,\blacksquare实心方框,\square空心方框
\renewcommand{\proofname}{证明}
%定义该模板的证明环境格式
%\renewenvironment{新环境名称}[参数个数][参数默认值]{开始部分定义}{结束部分定义}
\renewenvironment{proof}[1][\proofname]{\par
\pushQED{\qed} %这里 \pushQED{\qed} 把 \qed 压入了 QED 这个堆栈,然后在环境结束的地方,通过 \popQED把压入堆栈的最后一个元素弹出来。