forked from note286/xduts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxduts.dtx
2480 lines (2480 loc) · 80.5 KB
/
xduts.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
%<*driver>
\ProvidesFile{xduts.dtx}
[2022/04/10 v0.6.0.0 Xidian University TeX Suite]
%</driver>
%<class|sty>\NeedsTeXFormat{LaTeX2e}
%<class|sty>\RequirePackage{expl3}
%<xduugthesis>\ProvidesExplClass{xduugthesis}
%<xdufont>\ProvidesExplPackage{xdufont}
%<class|sty> {2022/04/10}{0.6.0.0}
%<xdufont> {Xidian University Font package}
%<xduugthesis> {Xidian University Undergraduate Thesis class}
%<*driver>
\documentclass{ctxdoc}
\changes{v0.6.0.0}{2022/04/10}{新增xdufont宏包}
\changes{v0.5.2.1}{2022/04/09}{修改项目名称}
\changes{v0.4.2.1}{2022/04/05}{调整文档目录缩进}
\usepackage{tocloft}
\setlength{\cftsecindent}{0em}
\setlength{\cftsubsecindent}{1em}
\setlength{\cftsubsubsecindent}{2em}
\setlength{\cftparaindent}{3em}
\setlength{\cftsubparaindent}{4em}
\ctexset{
secnumdepth = 5,
subparagraph = {
afterskip = 1ex plus .2ex,
runin = false
}
}
\setcounter{tocdepth}{5}
\usepackage{hologo}
\usepackage{fetamont}
\usepackage{xurl}
\usepackage{xspace}
\xspaceaddexceptions{。?!,、;:“”‘’—….--~·《》<>_}
\usepackage{tabularx}
\newcolumntype{Y}{>{\centering\arraybackslash}X}
\usepackage{multirow}
\usepackage{makecell}
% 交叉引用
\newcommand{\secref}[1]{第\xspace\ref{#1}\xspace{节}}
\newcommand{\tableref}[1]{\tablename\xspace\ref{#1}\xspace}
% 文档类选项
\newcommand{\optx}[1]{\xspace\opt{#1}\xspace}
% /name LaTeX3控制序列
\newcommand{\csx}[1]{\xspace\cs{#1}\xspace}
% /name 传统LaTeX2e命令
\newcommand{\tnx}[1]{\xspace\tn{#1}\xspace}
% <name> LaTeX3键值
\newcommand{\metax}[1]{\xspace\meta{#1}\xspace}
% LaTeX3键值对
\newcommand{\breakablethinspace}{\hskip 0.16667em\relax}
\newcommand{\kvoptx}[2]{\xspace\texttt{#1\breakablethinspace=\breakablethinspace#2}\xspace}
% {<name>} LaTeX2e参数
\newcommand{\argx}[1]{\xspace\Arg{#1}\xspace}
% [<name>] LaTeX2e可选参数
\newcommand{\oargx}[1]{\xspace\Arg{#1}\xspace}
% 文件
\newcommand{\filex}[1]{\xspace\texttt{#1}\xspace}
% 环境
\newcommand{\envx}[1]{\xspace\env{#1}\xspace}
% 宏包
\newcommand{\pkgx}[1]{\xspace\pkg{#1}\xspace}
% 文档类
\newcommand{\clsx}[1]{\xspace\cls{#1}\xspace}
% 值
\newcommand{\valuex}[1]{\xspace\texttt{#1}\xspace}
% 命令
\newcommand{\cmdx}[1]{\xspace\texttt{#1}\xspace}
% 引用
\newcommand{\secrefx}[1]{第\xspace\ref{#1}\xspace 节}
% 链接
\newcommand{\footurl}[1]{\footnote{\url{#1}}}
\newcommand{\ctanurl}[1]{\href{https://mirrors.ustc.edu.cn/CTAN/#1}{\ttfamily CTAN://#1}}
\newcommand{\footctan}[1]{\footnote{\ctanurl{#1}}}
% logo
\newcommand{\xduts}{{\bfseries\ffmfamily XDUTS}}
\newcommand{\texlive}{\TeX{} Live}
\newcommand{\mactex}{Mac\TeX{}}
\newcommand{\miktex}{\xspace\hologo{MiKTeX}\xspace}
\newcommand{\bibtex}{\xspace\hologo{BibTeX}\xspace}
\newcommand{\biber}{\xspace\hologo{biber}\xspace\xspace}
% arguments list
\setlist[arguments]{label=\texttt{\#\arabic*}\,:}
% 浮动体默认设置
\makeatletter
\renewcommand{\fps@table}{htbp}
\makeatother
% listings
\definecolor{xdu-ai-orange}{cmyk}{0,0.75,1,0}
\definecolor{xdu-blue}{cmyk}{0.80,0.50,0,0}
\definecolor{xdu-chem-red}{cmyk}{0.28,0.95,0.84,0}
\definecolor{xdu-cs-green}{cmyk}{0.60,0.23,1,0}
\definecolor{xdu-magenta}{cmyk}{0.05,1,0.55,0}
\definecolor{xdu-violet}{cmyk}{0.50,1,0,0.40}
\usepackage{listings}
\lstdefinestyle{style@base}
{
basewidth = 0.5 em,
gobble = 3,
lineskip = 3 pt,
frame = l,
framerule = 1 pt,
framesep = 0 pt,
xleftmargin = 0 em,
xrightmargin = 3 em,
escapeinside = {(*}{*)},
breaklines = true,
basicstyle = \small\ttfamily,
keywordstyle = \bfseries\color{xdu-violet},
commentstyle = \itshape\color{white!50!gray},
stringstyle = \color{xdu-chem-red},
backgroundcolor = \color{white!95!gray}
}
\lstdefinestyle{style@shell}
{
style = style@base,
rulecolor = \color{xdu-magenta},
language = bash,
alsoletter = {-},
emphstyle = \color{xdu-cs-green}
}
\lstdefinestyle{style@latex}
{
style = style@base,
rulecolor = \color{xdu-blue},
language = [LaTeX]TeX,
alsoletter = {*, -},
texcsstyle = *\color{xdu-violet},
emphstyle = [1]\color{xdu-ai-orange},
emphstyle = [2]\color{xdu-cs-green}
}
\lstnewenvironment{shellexample}[1][]{%
\lstset{style=style@shell, #1}}{}
\lstnewenvironment{latexexample}[1][]{%
\lstset{style=style@latex, #1}}{}
\begin{document}
\DocInput{\jobname.dtx}
\IndexLayout
\PrintChanges
\PrintIndex
\end{document}
%</driver>
% \fi
% \CheckSum{823}
% \CharacterTable
% {Upper-case \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
% Lower-case \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
% Digits \0\1\2\3\4\5\6\7\8\9
% Exclamation \! Double quote \" Hash (number) \#
% Dollar \$ Percent \% Ampersand \&
% Acute accent \' Left paren \( Right paren \)
% Asterisk \* Plus \+ Comma \,
% Minus \- Point \. Solidus \/
% Colon \: Semicolon \; Less than \<
% Equals \= Greater than \> Question mark \?
% Commercial at \@ Left bracket \[ Backslash \\
% Right bracket \] Circumflex \^ Underscore \_
% Grave accent \` Left brace \{ Vertical bar \|
% Right brace \} Tilde \~}
% \GetFileInfo{\jobname.dtx}
% \title{\bfseries\xduts{}手册}
% \author{\href{https://github.com/note286/}{note286}}
% \date{\href{https://github.com/note286/xduts/releases/tag/\fileversion/}{\fileversion}~(\filedate)}
% \maketitle
% \thispagestyle{empty}
% \begin{abstract}
% \xduts{}是面向西安电子科技大学本科生/研究生的\LaTeXiii{}文档类和宏包套装,
% 支持\XeLaTeX{},
% 支持\texlive{}、\mactex{}、\miktex{},
% 支持Windows、macOS、GNU/Linux、Overleaf和TeXPage。
% \end{abstract}
% \renewcommand{\abstractname}{免责声明}
% \begin{abstract}
% 在使用\xduts{}时,默认您同意以下内容:
% \begin{enumerate}
% \item \xduts{}作者不对使用\xduts{}产生的格式审查问题负责。
% \item \xduts{}的发布遵守
% \LaTeX{} Project Public License\footurl{https://www.latex-project.org/lppl.txt},
% 使用前请认真阅读协议内容。
% \item 任何个人或组织以\xduts{}为基础进行修改、扩展而生成的新的\LaTeX{}文档类/宏包,
% 请严格遵守\LaTeX{} Project Public License,
% 由于违犯协议而引起的任何纠纷争端均与\xduts{}作者无关。
% \end{enumerate}
% \end{abstract}
% \clearpage
% \tableofcontents
% \clearpage
% \section{介绍}
% \xduts{} (Xidian University \TeX{} Suite)
% 是为了帮助西安电子科技大学本科生/研究生撰写开题报告/学位论文及其他文档
% 而编写的\LaTeX{}文档类和宏包套装,目前有:
% \begin{itemize}
% \item \clsx{xduugthesis},本科毕业设计论文。
% \item \pkgx{xdufont},中/英/数学字体配置宏包。
% \end{itemize}
% 即将支持:
% \begin{itemize}
% \item \clsx{xduugtp},本科毕业设计论文开题报告表。
% \item \clsx{xdupgthesis},研究生学位论文。
% \item \clsx{xdupgtp},研究生学位论文开题报告表。
% \end{itemize}
% \par
% 本文档将尽量完整的介绍\xduts{}的使用方法,
% 如有不清楚之处,或者想提出改进建议,
% 可以在GitHub Issues\footurl{https://github.com/note286/xduts/issues/}
% 参与讨论或提问。另外,\textbf{不接受任何Pull Requests}。
% \StopEventually{}
% \section{使用说明}
% \label{使用说明}
% 《一份(不太)简短的\LaTeXe{}介绍》\footctan{info/lshort/chinese/lshort-zh-cn.pdf}
% 中提及的内容本文档将不再提及。
% \xduts{}中的所有文档类和宏包仅内置了实现功能所必要的宏包,
% 对于常用的宏包如\pkgx{subfig}、\pkgx{algpseudocodex}、
% \pkgx{amsmath}、\pkgx{amsthm}和\pkgx{siunitx}等均未内置,
% 用户视需求自行加载。
% 请在最新版\LaTeX{}环境中使用最新版\xduts{},
% 认真阅读相应文档类/宏包使用说明章节即可使用\xduts{}。
% \par
% 相应格式规范均已实现,用户仅需要撰写文章内容即可,请勿随意添加格式修改命令。
% \subsection{xdufont}
% \pkgx{xdufont}宏包基于\pkgx{xeCJK},相较于\pkgx{ctex}宏包的主要优势为默认支持宋体粗体、斜体,内置多种字体配置,可任意搭配中/英/数学字体,更加符合校内各种文档的撰写要求。
% \par
% \secrefx{编译}介绍了如何编译,\secrefx{参数设置}介绍了如何自定义配置,具体的配置选项见\secrefx{字体选项}。\pkgx{xdufont}可以搭配任意文档类进行使用,例如:
% \begin{latexexample}[moretexcs={\xdusetup},emph={[1]document}]
% \documentclass{article}
% \usepackage{xdufont}
% \xdusetup{}
% \begin{document}
% 宋体\textbf{加粗}\textsl{加斜}
% \textsf{黑体}\textbf{\textsf{加粗}}\textsl{\textsf{加斜}}
% \end{document}
% \end{latexexample}
% \par
% 学会以上用法后即可立即使用\pkgx{xdufont}宏包了。
% \subsection{xduugthesis}
% \pkgx{xduugthesis}基于\clsx{ctexbook}文档类,
% 提供多种字体配置,部分样式可自定义,信息录入便捷。
% \par
% 典型的\clsx{xduugthesis}主文件结构应该如下所示:
% \begin{latexexample}[moretexcs={\xdusetup,\frontmatter,\mainmatter,\chapter,\backmatter},emph={[1]document}]
% \documentclass{xduugthesis}
% \xdusetup{}
% \begin{document}
% \frontmatter
% \mainmatter
% \chapter{欢迎}
% 使用\LaTeX{}!
% \backmatter
% \end{document}
% \end{latexexample}
% \par
% \secrefx{编译}介绍了如何编译,\secrefx{参数设置}介绍了如何自定义配置。
% 其中,字体选项见\secrefx{字体选项},
% 部分英文字体切换见\secrefx{英文字体},
% 论文语言切换见\secrefx{语言配置},
% 参考文献配置见\secrefx{参考文献配置},
% 图片配置见\secrefx{图片配置},
% 章节配置见\secrefx{章节配置}。
% 如需附录,请使用附录环境,具体见\secrefx{附录环境}。
% 仅支持如下信息录入,具体每个选项的含义见\secrefx{信息录入},如没有部分选项,则删除该行即可。
% \begin{latexexample}[moretexcs={\xdusetup},emph={[2]info}]
% \xdusetup {
% info = {
% title = {第一行标题\\第二行标题},
% department = {电子工程学院},
% major = {电子信息工程},
% author = {张三},
% supervisor = {李四},
% supervisor-department = {王五},
% supervisor-enterprise = {赵六},
% supervisor-school = {刘七},
% class-id = {123456},
% student-id = {12345678910},
% abstract = {abstract-zh.tex},
% abstract* = {abstract-en.tex},
% keywords = {我,就是,充数的,关键词},
% keywords* = {Dummy,Keywords,Here,it is},
% acknowledgements = {acknowledgements.tex}
% }
% }
% \end{latexexample}
% \par
% 学会以上用法后即可立即使用\clsx{xduugthesis}文档类了。
% \section{功能说明}
% 请根据\secrefx{使用说明}中相应文档类/宏包的说明来选择性地阅读本节内容。
% \subsection{编译}
% \label{编译}
% \changes{v0.5.1.2}{2022/04/07}{增加编译说明}
% \LaTeX{}本身是命令行程序,通过不同的命令调用所需的编译引擎,编辑器提供的快捷按钮实际只是做了包装。\xduts{}仅支持\XeLaTeX{},参考文献默认使用\biber{},也可以切换为\bibtex{}。
% \subsection{参数设置}
% \label{参数设置}
% \changes{v0.5.1.1}{2022/04/06}{增加xdusetup配置文档}
% \begin{function}[added=2022-03-07]{\xdusetup}
% \begin{syntax}
% \tnx{xdusetup}=\argx{键值列表}
% \end{syntax}
% \xduts{}提供了一系列选项,可自行配置。
% 载入文档类/宏包之后,以下所有选项均可通过统一的命令\tnx{xdusetup}来设置。
% \csx{xdusetup}的参数是一组由(英文)逗号隔开的选项列表,
% 下文中尖括号内列出了若干个允许的选项,其中加粗的为默认选项。
% 列表中的选项通常是\kvoptx{\metax{key}}{\metax{value}}的形式。
% \csx{xdusetup}采用\LaTeXiii{}风格的键值设置,
% 支持不同类型以及多种层次的选项设定。
% 键值列表中,“|=|”左右的空格不影响设置;
% 但需注意,参数列表中不可以出现空行。
% 一些选项包含子选项,如\optx{style}和\optx{info}等,
% 它们可以按如下两种等价方式来设定:
% \begin{latexexample}[morekeywords={\xdusetup},emph={[1]style,cjk-font,latin-font,info,title,author,department}]
% \xdusetup{
% style = {cjk-font = adobe, latin-font = tacn},
% info = {
% title = {论如何让用户认真阅读文档},
% author = {张三},
% department = {排版学院}
% }
% }
% \end{latexexample}
% 或者
% \begin{latexexample}[morekeywords={\xdusetup},emph={[1]style,cjk-font,latin-font,info,title,author,department}]
% \xdusetup{
% style / cjk-font = adobe,
% style / latin-font = tacn,
% info / title = {论如何让用户认真阅读文档},
% info / author = {张三},
% info / department = {排版学院}
% }
% \end{latexexample}
% \end{function}
% \subsection{字体选项}
% \label{字体选项}
% \begin{function}[added=2022-03-06]{style/cjk-font}
% \begin{syntax}
% \optx{style/cjk-font}=\metax{adobe|fandol|founder|sinotype|(win)|none}
% \end{syntax}
% 设置中文字体,具体配置见\tableref{tab:cjk-font}。
% \end{function}
% \begin{optdesc}
% \item[none] 关闭内置中文字体配置,需自行配置中文字体。
% \end{optdesc}
% \begin{table}
% \begin{threeparttable}
% \caption{中文字体配置}
% \label{tab:cjk-font}
% \centering
% \begin{tabularx}{\linewidth}{cccc}
% \toprule
% \strong{选项名称} & \strong{罗马字体族} & \strong{无衬线字体族} & \strong{打字机字体族} \\
% \midrule
% |adobe|\tnote{1} & Adobe 宋体 Std/Adobe 楷体 Std & Adobe 黑体 Std & Adobe 仿宋 Std \\
% |fandol| & FandolSong/FandolKai & FandolHei & FandolFang \\
% |founder|\tnote{2} & 方正书宋_GBK/方正楷体_GBK & 方正黑体_GBK & 方正仿宋_GBK \\
% |sinotype|\tnote{3} & 华文宋体/华文楷体 & 华文细黑/华文黑体 & 华文仿宋 \\
% |win|\tnote{4} & 中易宋体/中易楷体 & 中易黑体 & 中易仿宋 \\
% \bottomrule
% \end{tabularx}
% \begin{tablenotes}
% \item [1] \filex{adobesongstd-light.otf}、\filex{adobekaitistd-regular.otf}、\filex{adobeheitistd-regular.otf}和\filex{Adobe-Fangsong-Std-R-Font.otf}。
% \item [2] \filex{FZShuSong-Z01.ttf}、\filex{FZKai-Z03.ttf}、\filex{FZHei-B01.ttf}和\filex{FZFSK.TTF}。
% \item [3] \filex{STSONG.TTF}、\filex{STKAITI.TTF}、\filex{STXIHEI.TTF}、\filex{STHeiti.ttf}和\filex{STFANGSO.TTF}。
% \item [4] \filex{simsun.ttc}、\filex{simkai.ttf}、\filex{simhei.ttf}和\filex{simfang.ttf}。
% \end{tablenotes}
% \end{threeparttable}
% \end{table}
% \begin{function}[added=2022-04-01]{style/cjk-fake-bold}
% \begin{syntax}
% \optx{style/cjk-fake-bold}=\metax{伪粗体粗细程度}
% \end{syntax}
% 设置中文字体伪粗体粗细程度。默认为\valuex{3},对于部分存在对应的粗体字体的中文字体,如FandolSong和FandolHei等,该选项不生效。
% \end{function}
% \begin{function}[added=2022-04-01]{style/cjk-fake-slant}
% \begin{syntax}
% \optx{style/cjk-fake-slant}=\metax{伪斜体倾斜程度}
% \end{syntax}
% 设置中文字体伪斜体倾斜程度。默认为\valuex{0.2}。
% \end{function}
% \begin{function}[added=2022-03-06]{style/latin-font}
% \begin{syntax}
% \optx{style/latin-font}=\metax{(tacn)|thcs|none}
% \end{syntax}
% 设置英文字体,具体配置见\tableref{tab:latin-font}。
% \end{function}
% \begin{optdesc}
% \item[none] 关闭内置英文字体配置,需自行配置英文字体。
% \end{optdesc}
% \begin{table}
% \begin{threeparttable}
% \caption{英文字体配置}
% \label{tab:latin-font}
% \centering
% \begin{tabularx}{\linewidth}{cYYY}
% \toprule
% \strong{选项名称} & \strong{罗马字体族} & \strong{无衬线字体族} & \strong{打字机字体族} \\
% \midrule
% |tacn|\tnote{1} & Times New Roman & Arial & Courier New \\
% |thcs|\tnote{2} & Times New Roman & Helvetica & Courier Std \\
% \bottomrule
% \end{tabularx}
% \begin{tablenotes}
% \item [1] \filex{times.ttf}、\filex{timesbd.ttf}、\filex{timesi.ttf}、\filex{timesbi.ttf}、\filex{arial.ttf}、\filex{arialbd.ttf}、\filex{ariali.ttf}、\filex{arialbi.ttf}、\filex{cour.ttf}、\filex{courbd.ttf}、\filex{couri.ttf}和\filex{courbi.ttf}。
% \item [2] \filex{times.ttf}、\filex{timesbd.ttf}、\filex{timesi.ttf}、\filex{timesbi.ttf}、\filex{Helvetica.ttf}、\filex{Helvetica~Bold.ttf}、\filex{Helvetica~Oblique.ttf}、\filex{Helvetica~Bold~Oblique.ttf}、\filex{CourierStd.otf}、\filex{CourierStd-Bold.otf}、\filex{CourierStd-Oblique.otf}和\filex{CourierStd-BoldOblique.otf}。
% \end{tablenotes}
% \end{threeparttable}
% \end{table}
% \begin{function}[added=2022-03-06,updated=2022-03-09]{style/math-font}
% \begin{syntax}
% \optx{style/math-font}=\metax{asana|cambria|(cm)|fira|garamond|lm|...|termes|xits|none}
% \end{syntax}
% 设置数学字体,具体配置见\tableref{tab:math-font}。除Computer Modern字体外,均使用\pkgx{unicode-math}宏包调用字体。
% \end{function}
% \changes{v0.1.4.1}{2022/04/04}{数学字体风格介绍}
% \begin{optdesc}
% \item[cambria] 微软Office预装的数学字体。
% \item[fira] 无衬线数学字体。
% \item[garamond] Garamond风格。
% \item[lm] 基于Computer Modern风格。
% \item[libertinus] Linux Libertine风格。
% \item[stix] Times风格。
% \item[dejavu] DejaVu风格。
% \item[pagella] Palatino风格。
% \item[termes] Times风格。
% \item[xits] 基于STIX,Times风格,有粗体XITS Math Bold可用。
% \item[none] 关闭内置数学字体配置,需自行配置数学字体。
% \end{optdesc}
% \begin{table}
% \begin{threeparttable}
% \caption{数学字体配置}
% \label{tab:math-font}
% \centering
% \begin{tabularx}{\linewidth}{cY}
% \toprule
% \strong{选项名称} & \strong{字体名称} \\
% \midrule
% |asana| & Asana Math \\
% |cambria|\tnote{1} & Cambria Math \\
% |cm| & Computer Modern \\
% |fira| & Fira Math \\
% |garamond| & Garamond Math \\
% |lm| & Latin Modern Math \\
% |libertinus| & Libertinus Math \\
% |stix| & STIX Math \\
% |bonum| & TeX Gyre Bonum Math \\
% |dejavu| & TeX Gyre DejaVu Math \\
% |pagella| & TeX Gyre Pagella Math \\
% |schola| & TeX Gyre Schola Math \\
% |termes| & TeX Gyre Termes Math \\
% |xits| & XITS Math \\
% \bottomrule
% \end{tabularx}
% \begin{tablenotes}
% \item [1] \filex{cambria.ttc}。
% \end{tablenotes}
% \end{threeparttable}
% \end{table}
% \begin{function}[added=2022-03-14]{style/unicode-math}
% \begin{syntax}
% \optx{style/unicode-math}=\argx{unicode-math宏包选项}
% \end{syntax}
% 修改\pkgx{unicode-math}默认选项,具体配置参考\pkgx{unicode-math}宏包文档,仅在数学字体不为Computer Modern时有效。
% \end{function}
% \begin{function}[added=2022-03-07]{style/font-type}
% \begin{syntax}
% \optx{style/font-type}=\metax{(font)|file}
% \end{syntax}
% 设置字体调用方式。
% \end{function}
% \begin{optdesc}
% \item[font] 相应字体已安装,使用字体名称调用字体。
% \item[file] 相应字体未安装,使用字体文件名称调用字体,适合Overleaf或TeXPage等在线平台,或不方便安装字体的情况。
% \end{optdesc}
% \begin{function}[added=2022-03-07]{style/font-path}
% \begin{syntax}
% \optx{style/font-path}=\argx{路径}
% \end{syntax}
% 设置字体文件路径,即\metax{路径}目录内存储全部所需中文、英文和数学字体文件,仅在\optx{font-type}等于|file|时有效,默认值为\valuex{fonts}。
% \end{function}
% \subsection{英文字体}
% \label{英文字体}
% \begin{function}[added=2022-04-01]{style/en-cjk-font}
% \begin{syntax}
% \optx{style/en-cjk-font}=\metax{true|(false)}
% \end{syntax}
% 切换字体族时,英文是否使用中文字体。主要作用于封面、章节标题、页眉页脚等。
% \end{function}
% \begin{optdesc}
% \item[true] 英文使用相对应字体族的中文字体。
% \item[false] 英文使用相对应字体族的英文字体。
% \end{optdesc}
% \subsection{语言配置}
% \label{语言配置}
% \begin{function}[added=2022-03-29]{style/language}
% \begin{syntax}
% \optx{style/language}=\metax{(zh)|en}
% \end{syntax}
% 设置论文语言。
% \end{function}
% \begin{optdesc}
% \item[zh] 中文。
% \item[en] 英文。
% \end{optdesc}
% \subsection{参考文献配置}
% \label{参考文献配置}
% \begin{function}[added=2022-04-02,updated=2022-04-03]{style/bib-backend}
% \begin{syntax}
% \optx{style/bib-backend}=\metax{bibtex|(biblatex)}
% \end{syntax}
% 设置参考文献支持方式。
% \end{function}
% \begin{optdesc}
% \item[bibtex] 使用\bibtex{}处理文献,样式由\pkgx{natbib}宏包负责。
% \item[biblatex] 使用\biber{}处理文献,样式由\pkgx{biblatex}宏包负责。
% \end{optdesc}
% \begin{function}[added=2022-04-02]{style/bib-resource}
% \begin{syntax}
% \optx{style/bib-resource}=\argx{参考文献文件路径}
% \end{syntax}
% 设置参考文献\filex{.bib}文件,多个文件之间需要使用英文半角逗号隔开。
% \end{function}
% \subsection{图片配置}
% \label{图片配置}
% \begin{function}[added=2022-04-03]{style/fig-label-sep}
% \begin{syntax}
% \optx{style/fig-label-sep}=\argx{间距}
% \end{syntax}
% 设置图片标签与后面标题之间的间距,默认值为\valuex{0.75em}。
% \end{function}
% \subsection{章节配置}
% \label{章节配置}
% \begin{function}[added=2022-04-05]{style/before-skip}
% \begin{syntax}
% \optx{style/before-skip}=\argx{间距列表}
% \end{syntax}
% 设置章节标题前的垂直间距,默认值为\valuex{\{24pt, 18pt, 12pt, 12pt, 12pt, 12pt\}},分别对应\tnx{chapter}、\tnx{section}、\tnx{subsection}、\tnx{subsubsection}、\tnx{paragraph}和\tnx{subparagraph}。
% \end{function}
% \begin{function}[added=2022-04-05]{style/after-skip}
% \begin{syntax}
% \optx{style/after-skip}=\argx{间距列表}
% \end{syntax}
% 设置章节标题后的垂直间距,默认值为\valuex{\{18pt, 12pt, 6pt, 6pt, 6pt, 6pt\}},分别对应\tnx{chapter}、\tnx{section}、\tnx{subsection}、\tnx{subsubsection}、\tnx{paragraph}和\tnx{subparagraph}。
% \end{function}
% \subsection{附录环境}
% \label{附录环境}
% \begin{function}[added=2022-04-04]{appendixes}
% 附录位于参考文献后,即在\tnx{backmatter}后。
% \begin{latexexample}[emph={[1]appendixes}]
% \begin{appendixes}
% \chapter{这是一个附录}
% \chapter{这是另一个附录}
% \end{appendixes}
% \end{latexexample}
% \end{function}
% \subsection{信息录入}
% \label{信息录入}
% \begin{function}[added=2022-04-01]{info/title}
% \begin{syntax}
% \optx{info/title}=\argx{论文标题}
% \end{syntax}
% 设置论文标题。如果需要手动制定换行位点,请使用换行控制符(|\\|),最多两行。
% \end{function}
% \begin{function}[added=2022-04-01]{info/department}
% \begin{syntax}
% \optx{info/department}=\argx{院系名称}
% \end{syntax}
% 设置院系名称。
% \end{function}
% \begin{function}[added=2022-04-01]{info/major}
% \begin{syntax}
% \optx{info/major}=\argx{专业名称}
% \end{syntax}
% 设置专业名称。
% \end{function}
% \begin{function}[added=2022-04-01]{info/author}
% \begin{syntax}
% \optx{info/author}=\argx{作者姓名}
% \end{syntax}
% 设置作者姓名。
% \end{function}
% \begin{function}[added=2022-04-01]{info/supervisor}
% \begin{syntax}
% \optx{info/supervisor}=\argx{导师姓名}
% \end{syntax}
% 设置导师姓名。非校外毕业设计填写。
% \end{function}
% \begin{function}[added=2022-04-01]{info/supervisor-department}
% \begin{syntax}
% \optx{info/supervisor-department}=\argx{院内导师姓名}
% \end{syntax}
% 设置院内导师姓名。非校外毕业设计填写,如无院内导师,则无需填写。
% \end{function}
% \begin{function}[added=2022-04-01]{info/supervisor-enterprise}
% \begin{syntax}
% \optx{info/supervisor-enterprise}=\argx{校外导师姓名}
% \end{syntax}
% 设置校外导师姓名。校外毕业设计填写。
% \end{function}
% \begin{function}[added=2022-04-01]{info/supervisor-school}
% \begin{syntax}
% \optx{info/supervisor-school}=\argx{校内导师姓名}
% \end{syntax}
% 设置校内导师姓名。校外毕业设计填写。
% \end{function}
% \begin{function}[added=2022-04-01]{info/class-id}
% \begin{syntax}
% \optx{info/class-id}=\argx{作者班级号}
% \end{syntax}
% 设置作者班级号。
% \end{function}
% \begin{function}[added=2022-04-01]{info/student-id}
% \begin{syntax}
% \optx{info/student-id}=\argx{作者学号}
% \end{syntax}
% 设置作者学号。
% \end{function}
% \begin{function}[added=2022-04-02]{info/abstract,info/abstract*}
% \begin{syntax}
% \optx{info/abstract}=\argx{中文摘要文件路径}
% \optx{info/abstract*}=\argx{英文摘要文件路径}
% \end{syntax}
% 设置摘要文件路径,相应文件内仅撰写摘要内容,无需任何环境。
% \end{function}
% \begin{function}[added=2022-04-02]{info/keywords,info/keywords*}
% \begin{syntax}
% \optx{info/keywords}=\argx{中文关键词}
% \optx{info/keywords*}=\argx{英文关键词}
% \end{syntax}
% 设置关键词,关键词之间需要使用英文半角逗号隔开。
% \end{function}
% \begin{function}[added=2022-04-02]{info/acknowledgements}
% \begin{syntax}
% \optx{info/acknowledgements}=\argx{致谢文件路径}
% \end{syntax}
% 设置致谢文件路径,相应文件内仅撰写致谢内容,无需任何环境。
% \end{function}
% \section{贡献者}
% \xduts{}的开发过程中,维护者为
% \href{https://github.com/note286/}{\ttfamily @note286}。
% 同时,也要感谢所有在GitHub和睿思上提出问题的同学、老师们。
% \xduts{}的持续发展,离不开你们的帮助与支持。
% \section{致谢}
% 在学习文学编程的过程中,
% 《在\LaTeX{}中进行文学编程》\footurl{https://liam.page/2015/01/23/literate-programming-in-latex/}
% 和《Good things come in little packages: An introduction to writing .ins and .dtx files》\footurl{https://www.tug.org/TUGboat/tb29-2/tb92pakin.pdf}
% 提供了很大帮助。
% 在文档的编写过程中,参考了
% \filex{ctex.dtx}\footctan{language/chinese/ctex/ctex.dtx}、
% \filex{fduthesis.dtx}\footctan{macros/latex/contrib/fduthesis/fduthesis.dtx}、
% \filex{njuthesis.dtx}\footctan{macros/unicodetex/latex/njuthesis/njuthesis.dtx}
% 和\filex{thuthesis.dtx}\footctan{macros/latex/contrib/thuthesis/thuthesis.dtx}。
% \clearpage
% \section{代码实现}
% \changes{v0.1.0.0}{2022/04/03}{基本完成本科毕业设计论文模板}
% \setlength\parindent{0pt}
% \begin{macrocode}
%<@@=xdu>
% \end{macrocode}
% \subsection{文档类和宏包}
% \begin{macrocode}
%<*class|sty>
% \end{macrocode}
% \begin{macrocode}
\RequirePackage { xparse, l3keys2e }
% \end{macrocode}
% \begin{macro}{\PassOptionsToPackage}
% 忽略字体警告。
% \begin{macrocode}
\PassOptionsToPackage { quiet } { xeCJK }
% \end{macrocode}
% \end{macro}
% \begin{macrocode}
%</class|sty>
%<*class>
% \end{macrocode}
% \begin{macro}{\PassOptionsToClass,\LoadClass}
% 加载\clsx{ctexbook}文档类。
% \changes{v0.3.2.0}{2022/04/04}{修正行间距为1.5倍}
% \begin{macrocode}
\PassOptionsToClass
{
zihao=-4,
sub4section,
linespread = 1.5,
fontset = none
}
{ ctexbook }
\LoadClass { ctexbook }
% \end{macrocode}
% \end{macro}
% 设置纸张尺寸为A4。
% \begin{macrocode}
\RequirePackage { geometry }
\geometry { paper = a4paper }
% \end{macrocode}
% \begin{macrocode}
%</class>
%<*xduugthesis>
% \end{macrocode}
% \begin{macrocode}
\RequirePackage { fancyhdr }
\RequirePackage { xeCJKfntef }
\RequirePackage { graphicx }
% \end{macrocode}
% \begin{macrocode}
%</xduugthesis>
%<*xdufont>
% \end{macrocode}
% \begin{macrocode}
\RequirePackage { xeCJK }
% \end{macrocode}
% \begin{macrocode}
%</xdufont>
% \end{macrocode}
% \subsection{字体配置}
% \begin{macrocode}
%<*class|xdufont>
% \end{macrocode}
% \begin{variable}
% {
% \l_@@_cjk_font_tl,
% \l_@@_fake_bold_str,
% \l_@@_fake_slant_str,
% \l_@@_latin_font_tl,
% \l_@@_math_font_tl,
% \l_@@_unicode_math_tl,
% \l_@@_font_type_tl,
% \l_@@_font_path_tl
% }
% 中文字体配置名称。
% \begin{macrocode}
\tl_new:N \l_@@_cjk_font_tl
% \end{macrocode}
% 中文字体伪粗体粗细程度。
% \begin{macrocode}
\str_new:N \l_@@_fake_bold_str
% \end{macrocode}
% 中文字体伪斜体倾斜程度。
% \begin{macrocode}
\str_new:N \l_@@_fake_slant_str
% \end{macrocode}
% 英文字体配置名称。
% \begin{macrocode}
\tl_new:N \l_@@_latin_font_tl
% \end{macrocode}
% 数学字体配置名称。
% \begin{macrocode}
\tl_new:N \l_@@_math_font_tl
% \end{macrocode}
% unicode-math配置选项。
% \begin{macrocode}
\tl_new:N \l_@@_unicode_math_tl
% \end{macrocode}
% 字体名称/文件名称。
% \begin{macrocode}
\tl_new:N \l_@@_font_type_tl
% \end{macrocode}
% 字体文件路径。
% \begin{macrocode}
\tl_new:N \l_@@_font_path_tl
% \end{macrocode}
% \end{variable}
% \begin{macro}{\keys_define:nn}
% 定义样式键值。
% \begin{macrocode}
\keys_define:nn { xdu / style }
{
% \end{macrocode}
% 中文字体配置。
% \begin{macrocode}
cjk-font .choices:nn =
{ win, adobe, founder, sinotype, fandol, none }
{ \tl_set_eq:NN \l_@@_cjk_font_tl \l_keys_choice_tl },
% \end{macrocode}
% 中文字体伪粗体粗细程度。
% \begin{macrocode}
cjk-fake-bold .str_set:N = \l_@@_fake_bold_str,
% \end{macrocode}
% 中文字体伪斜体倾斜程度。
% \begin{macrocode}
cjk-fake-slant .str_set:N = \l_@@_fake_slant_str,
% \end{macrocode}
% 英文字体配置。
% \begin{macrocode}
latin-font .choices:nn = { tacn, thcs, none }
{ \tl_set_eq:NN \l_@@_latin_font_tl \l_keys_choice_tl },
% \end{macrocode}
% 数学字体配置。
% \begin{macrocode}
math-font .choices:nn =
{
asana, cambria, cm, fira, garamond, lm, libertinus, stix,
bonum, dejavu, pagella, schola, termes, xits, none
}
{ \tl_set_eq:NN \l_@@_math_font_tl \l_keys_choice_tl },
unicode-math .tl_set:N = \l_@@_unicode_math_tl,
% \end{macrocode}
% 字体调用方式配置,文件名称/字体名称。
% \begin{macrocode}
font-type .choices:nn = { font, file }
{ \tl_set_eq:NN \l_@@_font_type_tl \l_keys_choice_tl },
% \end{macrocode}
% 字体文件路径配置。
% \begin{macrocode}
font-path .tl_set:N = \l_@@_font_path_tl
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\keys_set:nn}
% 初始设置。
% \begin{macrocode}
\keys_set:nn { xdu }
{
style / cjk-font = win,
style / cjk-fake-bold = 3,
style / cjk-fake-slant = 0.2,
style / latin-font = tacn,
style / math-font = cm,
style / unicode-math = { },
style / font-type = font,
style / font-path = fonts
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_if_platform_macos:FT}
% \changes{v0.5.1.0}{2022/04/06}{判断操作系统是否是macOS}
% 判断操作系统是否是macOS。
% \begin{arguments}
% \item 非macOS。
% \item macOS。
% \end{arguments}
% \begin{macrocode}
\cs_new:Npn \@@_if_platform_macos:FT #1#2
{ \file_if_exist:nTF { /System/Library/Fonts/Menlo.ttc } { #2 } { #1 } }
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_texmf_font:nn}
% \changes{v0.5.1.0}{2022/04/06}{加载字体时自动判断是否为macOS平台}
% 调用TEXMF中的字体时根据操作系统是否是macOS自动选择调用字体名或文件名。
% \begin{arguments}
% \item 字体名。
% \item 文件名。
% \end{arguments}
% \begin{macrocode}
\cs_new:Npn \@@_texmf_font:nn #1#2
{ \@@_if_platform_macos:FT { #1 } { #2 } }
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_select_font:nn}
% 自动选择字体文件名称或字体名称。
% \begin{arguments}
% \item 字体名称。
% \item 字体文件名称。
% \end{arguments}
% \begin{macrocode}
\cs_new:Npn \@@_select_font:nn #1#2
{
\str_if_eq:NNTF { \l_@@_font_type_tl } { font }
{ #1 }
{ #2 }
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_font_path:}
% 当选择使用字体文件配置字体时,设置字体文件路径。
% \begin{macrocode}
\cs_new:Npn \@@_font_path:
{
\str_if_eq:NNTF { \l_@@_font_type_tl } { font }
{ }
{ Path = \l_@@_font_path_tl / , }
}
% \end{macrocode}
% \end{macro}
% \subsubsection{中文字体}
% \begin{macro}{\@@_cfg_cjk_font_sub_b:}
% 中文粗体。
% \begin{macrocode}
\cs_new:Npn \@@_cfg_cjk_font_sub_b:n #1
{
BoldFont = { #1 }
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_cfg_cjk_font_sub_fb:n}
% 中文伪粗体。
% \begin{macrocode}
\cs_new:Npn \@@_cfg_cjk_font_sub_fb:n #1
{
BoldFont = { #1 },
BoldFeatures = { FakeBold = \l_@@_fake_bold_str }
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_cfg_cjk_font_sub_fs:n}
% 中文伪斜体。
% \begin{macrocode}
\cs_new:Npn \@@_cfg_cjk_font_sub_fs:n #1
{
SlantedFont = { #1 },
SlantedFeatures = { FakeSlant = \l_@@_fake_slant_str }
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_cfg_cjk_font_sub_fbfs:n}
% 中文伪粗斜体。
% \begin{macrocode}
\cs_new:Npn \@@_cfg_cjk_font_sub_fbfs:n #1
{
BoldSlantedFont = { #1 },
BoldSlantedFeatures =
{
FakeBold = \l_@@_fake_bold_str,
FakeSlant = \l_@@_fake_slant_str
}
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_cfg_cjk_font_sub_bfs:n}
% 中文粗伪斜体。
% \begin{macrocode}
\cs_new:Npn \@@_cfg_cjk_font_sub_bfs:n #1
{
BoldSlantedFont = { #1 },
BoldSlantedFeatures = { FakeSlant = \l_@@_fake_slant_str }
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_cfg_cjk_font_sub_i:n}
% 中文意大利体。
% \begin{macrocode}
\cs_new:Npn \@@_cfg_cjk_font_sub_i:n #1
{
ItalicFont = { #1 }
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_cfg_cjk_font_sub_fi:n}
% 中文伪意大利体,即伪斜体。
% \begin{macrocode}
\cs_new:Npn \@@_cfg_cjk_font_sub_fi:n #1
{
ItalicFont = { #1 },
ItalicFeatures = { FakeSlant = \l_@@_fake_slant_str }
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_cfg_cjk_font_sub_ifb:n}
% 中文意大利体伪粗体。
% \begin{macrocode}
\cs_new:Npn \@@_cfg_cjk_font_sub_ifb:n #1
{
BoldItalicFont = { #1 },
BoldItalicFeatures = { FakeBold = \l_@@_fake_bold_str }
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_cfg_cjk_font_sub_fifb:n}
% 中文伪意大利体伪粗体。
% \begin{macrocode}
\cs_new:Npn \@@_cfg_cjk_font_sub_fifb:n #1
{
BoldItalicFont = { #1 },
BoldItalicFeatures =
{
FakeBold = \l_@@_fake_bold_str,
FakeSlant = \l_@@_fake_slant_str
}
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_cfg_cjk_font_r:n}
% 配置中文字体,包括粗体、斜体、斜粗体、意大利体、粗意大利体。
% \begin{macrocode}
\cs_new:Npn \@@_cfg_cjk_font_r:n #1
{
\@@_cfg_cjk_font_sub_fb:n { #1 },
\@@_cfg_cjk_font_sub_fs:n { #1 },
\@@_cfg_cjk_font_sub_fbfs:n { #1 },
\@@_cfg_cjk_font_sub_fi:n { #1 },
\@@_cfg_cjk_font_sub_fifb:n { #1 }
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_cfg_cjk_font_rb:nn}
% 配置中文字体,包括粗体、斜体、斜粗体、意大利体、粗意大利体,其中粗体和斜粗体为其他字体。
% \begin{arguments}
% \item 常规字体。
% \item 粗体字体。
% \end{arguments}
% \begin{macrocode}
\cs_new:Npn \@@_cfg_cjk_font_rb:nn #1#2
{
\@@_cfg_cjk_font_sub_b:n { #2 },
\@@_cfg_cjk_font_sub_fs:n { #1 },
\@@_cfg_cjk_font_sub_bfs:n { #2 },
\@@_cfg_cjk_font_sub_fi:n { #1 },
\@@_cfg_cjk_font_sub_fifb:n { #1 }
}
% \end{macrocode}
% \end{macro}
% \begin{macro}{\@@_cfg_cjk_font_ri:nn}