hfbzthesis/thesis.cls

3142 lines
87 KiB
TeX
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

%
% Copyright (C) 2015-2023 by USTC TeX Users Group <https://github.com/ustctug>
%
% This file may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3c
% of this license or (at your option) any later version.
% The latest version of this license is in
% https://www.latex-project.org/lppl.txt
% and version 1.3c or later is part of all distributions of LaTeX
% version 2008 or later.
%
\NeedsTeXFormat{LaTeX2e}[2017/04/15]
\newcommand\ustcthesisversion{3.3.4}
\ProvidesClass{thesis}[2023/05/10 {\ustcthesisversion} USTC thesis template]
% 报错和警告
\newcommand\ustc@error[1]{%
\ClassError{thesis}{#1}{}%
}
\newcommand\ustc@warning[1]{%
\ClassWarning{thesis}{#1}%
}
% 检查 \LaTeXe{} kernel 版本
\@ifl@t@r\fmtversion{2017/04/15}{}{
\ustc@error{%
TeX Live 2017 or later version is required to compile this document%
}
}
% 检查编译引擎,要求使用 XeLaTeX 或 LuaLaTeX。
\RequirePackage{iftex}
\ifXeTeX\else
\ifLuaTeX\else
\ustc@error{XeLaTeX or LuaLaTeX is required to compile this document}
\fi
\fi
% \subsection{处理选项}
\RequirePackage{kvdefinekeys}
\RequirePackage{kvsetkeys}
\RequirePackage{kvoptions}
% 提供一个 \cs{ustcsetup} 命令支持 \emph{key-value} 的方式来设置。
\let\ustc@setup@hook\@empty
\newcommand\ustcsetup[1]{%
\let\ustc@setup@hook\@empty
\kvsetkeys{ustc}{#1}%
\ustc@setup@hook
}
% 同时用 \emph{key-value} 的方式来定义这些接口:
% \begin{latex}
% \ustc@define@key{
% <key> = {
% name = <name>,
% choices = {
% <choice1>,
% <choice2>,
% },
% default = <default>,
% code = <code>,
% },
% }
% \end{latex}
% 其中 |choices| 设置允许使用的值,默认为第一个(或者 \meta{default}
% \meta{code} 是相应的内容被设置时执行的代码。
\newcommand\ustc@define@key[1]{%
\kvsetkeys{ustc@key}{#1}%
}
\kv@set@family@handler{ustc@key}{%
%
% \cs{ustcsetup} 会将 \meta{value} 存到 \cs{ustc@\meta{key}}
% 但是宏的名字包含 “-” 这样的特殊字符时不方便直接调用,比如 |key = math-style|
% 这时可以用 |name| 设置 \meta{key} 的别称,比如 |key = math@style|
% 这样就可以通过 \cs{ustc@math@style} 来引用。
% |default| 是定义该 \meta{key} 时默认的值,缺省为空。
%
\@namedef{ustc@#1@@name}{#1}%
\def\ustc@@default{}%
\def\ustc@@choices{}%
\kv@define@key{ustc@value}{name}{%
\@namedef{ustc@#1@@name}{##1}%
}%
%
% 由于在定义接口时,\cs{ustc@\meta{key}@@code} 不一定有定义,
% 而且在文档类/宏包中还有可能对该 |key| 的 |code| 进行添加。
% 所以 \cs{ustc@\meta{key}@@code} 会检查如果在定义文档类/宏包时则推迟执行,否则立即执行。
%
\@namedef{ustc@#1@@check}{}%
\@namedef{ustc@#1@@code}{}%
%
% 保存下 |choices = {}| 定义的内容,在定义 \cs{ustc@\meta{name}} 后再执行。
%
\kv@define@key{ustc@value}{choices}{%
\def\ustc@@choices{##1}%
\@namedef{ustc@#1@@reset}{}%
%
% \cs{ustc@\meta{key}@check} 检查 |value| 是否有效,
% 并设置 \cs{ifustc@\meta{name}@\meta{value}}。
%
\@namedef{ustc@#1@@check}{%
\@ifundefined{%
ifustc@\@nameuse{ustc@#1@@name}@\@nameuse{ustc@\@nameuse{ustc@#1@@name}}%
}{%
\ustc@error{Invalid value "#1 = \@nameuse{ustc@\@nameuse{ustc@#1@@name}}"}%
}%
\@nameuse{ustc@#1@@reset}%
\@nameuse{ustc@\@nameuse{ustc@#1@@name}@\@nameuse{ustc@\@nameuse{ustc@#1@@name}}true}%
}%
}%
\kv@define@key{ustc@value}{default}{%
\def\ustc@@default{##1}%
}%
\kvsetkeys{ustc@value}{#2}%
\@namedef{ustc@\@nameuse{ustc@#1@@name}}{}%
%
% 第一个 \meta{choice} 设为 \meta{default}
% 并且对每个 \meta{choice} 定义 \cs{ifustc@\meta{name}@\meta{choice}}。
%
\kv@set@family@handler{ustc@choice}{%
\ifx\ustc@@default\@empty
\def\ustc@@default{##1}%
\fi
\expandafter\newif\csname ifustc@\@nameuse{ustc@#1@@name}@##1\endcsname
\expandafter\g@addto@macro\csname ustc@#1@@reset\endcsname{%
\@nameuse{ustc@\@nameuse{ustc@#1@@name}@##1false}%
}%
}%
\kvsetkeys@expandafter{ustc@choice}{\ustc@@choices}%
%
% 将 \meta{default} 赋值到 \cs{ustc@\meta{name}},如果非空则执行相应的代码。
%
\expandafter\let\csname ustc@\@nameuse{ustc@#1@@name}\endcsname\ustc@@default
\expandafter\ifx\csname ustc@\@nameuse{ustc@#1@@name}\endcsname\@empty\else
\@nameuse{ustc@#1@@check}%
\fi
%
% 定义 \cs{ustcsetup} 接口。
%
\kv@define@key{ustc}{#1}{%
\@namedef{ustc@\@nameuse{ustc@#1@@name}}{##1}%
\@nameuse{ustc@#1@@check}%
\@nameuse{ustc@#1@@code}%
}%
}
% 定义接口向 |key| 添加 |code|
\newcommand\ustc@option@hook[2]{%
\expandafter\g@addto@macro\csname ustc@#1@@code\endcsname{#2}%
}
\ustc@define@key{
degree = {
choices = {
doctor,
master,
bachelor,
},
default = doctor,
},
degree-type = {
name = degree@type,
choices = {
academic,
professional,
},
default = academic,
},
main-language = {
name = main@language,
choices = {
chinese,
english,
},
default = chinese,
},
language = {
choices = {
chinese,
english,
},
default = chinese,
},
system = {
choices = {
auto,
mac,
unix,
windows,
},
default = auto,
},
fontset = {
choices = {
auto,
windows,
mac,
ubuntu,
fandol,
none,
},
default = auto,
},
font = {
choices = {
auto,
times,
termes,
stix,
xits,
libertinus,
newcm,
lm,
newtx,
none,
},
default = auto,
},
cjk-font = {
name = cjk@font,
choices = {
auto,
windows,
mac,
noto,
fandol,
none,
},
default = auto,
},
math-font = {
name = math@font,
choices = {
auto,
stix,
xits,
libertinus,
newcm,
cm,
lm,
newtx,
none,
},
default = auto,
},
math-style = {
name = math@style,
choices = {
GB,
ISO,
TeX,
},
},
uppercase-greek = {
name = uppercase@greek,
choices = {
italic,
upright,
},
},
less-than-or-equal = {
name = leq,
choices = {
slanted,
horizontal,
},
},
integral = {
choices = {
upright,
slanted,
},
},
integral-limits = {
name = integral@limits,
choices = {
true,
false,
},
},
partial = {
choices = {
upright,
italic,
},
},
math-ellipsis = {
name = math@ellipsis,
choices = {
centered,
lower,
AMS,
},
},
real-part = {
name = real@part,
choices = {
roman,
fraktur,
},
},
cite-style = {
name = cite@style,
choices = {
super,
inline,
authoryear,
},
},
output = {
choices = {
print,
electronic,
},
default = print,
},
section-style = {
name = section@style,
choices = {
chinese,
arabic,
},
default = chinese,
},
badge-color = {
name = badge@color,
choices = {
blue,
black,
},
default = blue,
},
reviewer = {
choices = {
true,
false,
},
default = false,
},
}
% 将 \ustc@cite@style 置空方便后续进行判断。
\def\ustc@cite@style{}
\newif\ifustc@degree@graduate
\newcommand\ustc@set@graduate{%
\ifustc@degree@bachelor
\ustc@degree@graduatefalse
\else
\ustc@degree@graduatetrue
\fi
}
\ustc@set@graduate
\ustc@option@hook{degree}{%
\ustc@set@graduate
}
% 使用 \pkg{kvoptions} 提供的 key-value 接口,
\SetupKeyvalOptions{
family = ustc,
prefix = ustc@,
setkeys = \kvsetkeys,
}
% 设置默认 \option{openany}。
\DeclareBoolOption[false]{openright}
\DeclareComplementaryOption{openany}{openright}
% 兼容旧版本的文档类选项。
% Reserved for compatibility until 2020-07-01.
\DeclareVoidOption{doctor}{\ustcsetup{degree=doctor}}
\DeclareVoidOption{master}{\ustcsetup{degree=master}}
\DeclareVoidOption{bachelor}{\ustcsetup{degree=bachelor}}
\DeclareVoidOption{chinese}{\ustcsetup{language=chinese}}
\DeclareVoidOption{english}{\ustcsetup{language=english}}
\DeclareVoidOption{academic}{\ustcsetup{degree-type=academic}}
\DeclareVoidOption{professional}{\ustcsetup{degree-type=professional}}
\DeclareVoidOption{print}{\ustcsetup{output=print}}
\DeclareVoidOption{pdf}{\ustcsetup{output=electronic}}
\newif\ifustc@legacy@cite@style
\DeclareVoidOption{super}{\ustcsetup{cite-style=super}\ustc@legacy@cite@styletrue}
\DeclareVoidOption{numbers}{\ustcsetup{cite-style=inline}\ustc@legacy@cite@styletrue}
\DeclareVoidOption{authoryear}{\ustcsetup{cite-style=authoryear}\ustc@legacy@cite@styletrue}
\DeclareVoidOption{arabic}{\ustcsetup{section-style=arabic}}
\DeclareVoidOption{colorlogo}{\ustcsetup{badge-color=blue}}
\DeclareVoidOption{bwlogo}{\ustcsetup{badge-color=black}}
% 载入 \cls{ctexbook}。
\DeclareDefaultOption{\PassOptionsToClass{\CurrentOption}{ctexbook}}
\ProcessKeyvalOptions*
% \subsection{加载文档类和宏包}
\ifustc@openright
\PassOptionsToClass{openright}{book}
\else
\PassOptionsToClass{openany}{book}
\fi
\ifustc@output@electronic
\PassOptionsToClass{oneside}{book}
\fi
\PassOptionsToPackage{no-math}{fontspec}
% 载入 \cls{ctexbook} 文档类,注意要求为 2.4.9 或更高的版本。
\LoadClass[UTF8,a4paper,scheme=plain,zihao=-4,fontset=none]{ctexbook}[2017/04/01]
% 建议在模板开始处载入全部宏包,不要轻易改变加载顺序。
% \pkg{hyperref} 一般在最后加载。
\RequirePackage{etoolbox}
\RequirePackage{amsmath}
\RequirePackage{fontspec}[2017/03/31]
\RequirePackage{geometry}
\RequirePackage{graphicx}
\RequirePackage{fancyhdr}
\RequirePackage{color}
\RequirePackage{titletoc}
\RequirePackage{caption}
\RequirePackage[perpage]{footmisc}
\RequirePackage{url}
\RequirePackage{notoccite}
\RequirePackage{multirow}
% 如果用户在导言区未调用 \pkg{biblatex},则自动调用 \pkg{natbib}。
\AtEndPreamble{
\@ifpackageloaded{biblatex}{}{
\RequirePackage{natbib}
}
}
% 对冲突的宏包报错。
\RequirePackage{filehook}
\newcommand\ustc@package@conflict[2]{
\AtEndOfPackageFile*{#1}{%
\AtBeginOfPackageFile*{#2}{%
\ustc@error{The "#2" package is incompatible with "#1"}%
}%
}%
}
\ustc@package@conflict{biblatex}{bibunits}
\ustc@package@conflict{biblatex}{chapterbib}
\ustc@package@conflict{biblatex}{cite}
\ustc@package@conflict{biblatex}{multibib}
\ustc@package@conflict{biblatex}{natbib}
\ustc@package@conflict{bibunits}{biblatex}
\ustc@package@conflict{bibunits}{chapterbib}
\ustc@package@conflict{bibunits}{multibib}
\ustc@package@conflict{unicode-math}{amscd}
\ustc@package@conflict{unicode-math}{amsfonts}
\ustc@package@conflict{unicode-math}{amssymb}
\ustc@package@conflict{unicode-math}{bbm}
\ustc@package@conflict{unicode-math}{bm}
\ustc@package@conflict{unicode-math}{eucal}
\ustc@package@conflict{unicode-math}{eufrak}
\ustc@package@conflict{unicode-math}{mathrsfs}
\ustc@package@conflict{unicode-math}{newtxmath}
\ustc@package@conflict{unicode-math}{upgreek}
\ustc@package@conflict{natbib}{biblatex}
\ustc@package@conflict{natbib}{cite}
\ustc@package@conflict{newtxmath}{amsfonts}
\ustc@package@conflict{newtxmath}{amssymb}
\ustc@package@conflict{newtxmath}{unicode-math}
\ustc@package@conflict{newtxmath}{upgreek}
% \pkg{amsthm} 需要在 \pkg{newtx} 前载入,参考 \pkg{newtx} 的文档。
\AtBeginOfPackageFile*{amsthm}{
\@ifpackageloaded{newtxmath}{
\ustc@error{The "amsthm" package should be loaded before setting "newtxmath"}
}{}
}%
% \subsection{处理语言}
% 定义 \cs{ustc@main@language},当在导言区修改 \option{language} 时,
% 保存为论文的主要语言;
% \cs{ustc@reset@main@language} 则用于正文中恢复为主要语言。
% \begin{macrocode}
\ustcsetup{main-language=\ustc@language}%
\let\ustc@main@language\ustc@language
\ustc@option@hook{language}{%
\ifx\@begindocumenthook\@undefined\else
\ustcsetup{main-language=\ustc@language}%
\let\ustc@main@language\ustc@language
\fi
}
\newcommand\ustc@reset@main@language{%
\ustcsetup{language = \ustc@main@language}%
\let\ustc@language\ustc@main@language
}
% 带圈数字和星号使用中文字体。
\ifLuaTeX
% ctex 将带圈数字 U+2460U+24FF 归入字符范围 3ALchar这里改回范围 6JAchar
\ltjdefcharrange{3}{%
"2000-"243F, "2500-"27BF, "2900-"29FF, "2B00-"2BFF}
\ltjdefcharrange{6}{%
"2460-"24FF, "2E80-"2EFF, "3000-"30FF, "3190-"319F, "31F0-"4DBF,
"4E00-"9FFF, "F900-"FAFF, "FE10-"FE1F, "FE30-"FE6F, "FF00-"FFEF,
"1B000-"1B16F, "1F100-"1F2FF, "20000-"3FFFF, "E0100-"E01EF}
\else
\ifXeTeX
\xeCJKDeclareCharClass{CJK}{"2460 -> "2473}
\xeCJKDeclareCharClass{CJK}{"2605}
\fi
\fi
% 由于 Unicode 的一些标点符号是中西文混用的:
% U+00B7、U+2013、U+2014、U+2018、U+2019、
% U+201C、U+201D、U+2025、U+2026、U+2E3A
% 所以要根据语言设置正确的字体。
% https://github.com/CTeX-org/ctex-kit/issues/389
\newcommand\ustc@set@punctuations{%
\ifustc@language@chinese
\ifLuaTeX
\ltjsetparameter{jacharrange={+9}}
\else
\ifXeTeX
\xeCJKDeclareCharClass{FullLeft}{"2018, "201C}%
\xeCJKDeclareCharClass{FullRight}{
"00B7, "2019, "201D, "2013, "2014, "2025, "2026, "2E3A,
}%
\fi
\fi
\else
\ifLuaTeX
\ltjsetparameter{jacharrange={-9}}
\else
\ifXeTeX
\xeCJKDeclareCharClass{HalfLeft}{"2018, "201C}%
\xeCJKDeclareCharClass{HalfRight}{
"00B7, "2019, "201D, "2013, "2014, "2025, "2026, "2E3A,
}%
\fi
\fi
\fi
}
\ustc@set@punctuations
\ustc@option@hook{language}{\ustc@set@punctuations}
% 根据语言设置各章节的名称,只有在导言区设置 \option{language} 时会修改,
% 而在正文局部切换语言时则不变。
% 由于《撰写手册》中的“speciality”一词使用的是英式拼法
% 所以“acknowledgements”也保持一致。
\newcommand\ustc@set@chapter@names{%
\ifustc@main@language@chinese
\def\contentsname{目录}%
\def\listfigurename{插图清单}%
\def\listtablename{表格清单}%
\ctexset{
chapter/name = {第,章},
}%
\def\bibname{参考文献}%
\def\appendixname{附录}%
\def\ustc@acknowledgements@name{致谢}%
\def\ustc@publication@name{在读期间发表的学术论文与取得的研究成果}%
\newcommand\ustc@notation@name{符号说明}%
\else
\def\contentsname{Contents}%
\def\listfigurename{List of Figures}%
\def\listtablename{List of Tables}%
\ctexset{
chapter/name = {\chaptername\space},
}%
\def\bibname{Bibliography}%
\def\appendixname{Appendix}%
\def\ustc@acknowledgements@name{Acknowledgements}%
\def\ustc@publication@name{Publications}%
\def\ustc@notation@name{Notation}%
\fi
}
\ustc@set@chapter@names
\ustc@option@hook{main-language}{\ustc@set@chapter@names}
% 这部分名称在正文中局部地修改语言时会发生变化。
\newcommand\ustc@set@names{%
\ifustc@language@chinese
\def\figurename{}%
\def\tablename{}%
\else
\def\figurename{Figure}%
\def\tablename{Table}%
\fi
}
\ustc@set@names
\ustc@option@hook{language}{\ustc@set@names}
% \subsection{字体}
% 字号
% 正文字号12bp研究生行距20bp本科生行距22bp
% 其他命令的行距按照相同的的比例设置,如表~\ref{tab:fontsize}。
% \begin{table}[htb]
% \centering
% \caption{标准字体命令与字号、行距的对应}
% \label{tab:fontsize}
% \begin{tabular}{lllll}
% \toprule
% 字体命令 & 字号 & bp & 研究生行距 & 本科生行距 \\
% \midrule
% \cs{tiny} & 小六 & 6.5 & 10.83 & 11.92 \\
% \cs{scriptsize} & 六号 & 7.5 & 12.5 & 13.75 \\
% \cs{footnotesize} & 小五 & 9 & 15 & 16.5 \\
% \cs{small} & 五号 & 10.5 & 17.5 & 19.25 \\
% \cs{normalsize} & 小四 & 12 & 20 & 22 \\
% \cs{large} & 小三 & 15 & 25 & 27.5 \\
% \cs{Large} & 小二 & 18 & 30 & 33 \\
% \cs{LARGE} & 二号 & 22 & 36.67 & 40.33 \\
% \cs{huge} & 小一 & 24 & 40 & 44 \\
% \cs{Huge} & 一号 & 26 & 43.33 & 47.67 \\
% \bottomrule
% \end{tabular}
% \end{table}
%
% 注意重定义 \normalsize 应在 \pkg{unicode-math} 的 \cs{setmathfont} 前。
\newcommand\ustc@set@font@size{%
\ifustc@degree@graduate
\renewcommand\normalsize{%
\@setfontsize\normalsize{12bp}{20bp}%
\abovedisplayskip 12bp \@plus3bp \@minus7bp%
\abovedisplayshortskip \z@ \@plus3bp%
\belowdisplayshortskip 6.5bp \@plus3.5bp \@minus3bp%
\belowdisplayskip \abovedisplayskip
\let\@listi\@listI}%
%
% 注意第~\ref{sec:list} 节去掉了列表的间距,所以不再修改 \cs{@listi}。
\else
\renewcommand\normalsize{%
\@setfontsize\normalsize{12bp}{22bp}%
\abovedisplayskip 12bp \@plus3bp \@minus7bp%
\abovedisplayshortskip \z@ \@plus3bp%
\belowdisplayshortskip 6.5bp \@plus3.5bp \@minus3bp%
\belowdisplayskip \abovedisplayskip
\let\@listi\@listI}%
\fi
\normalsize
\ifx\MakeRobust\@undefined \else
\MakeRobust\normalsize
\fi
}
\ustc@set@font@size
\ustc@option@hook{degree}{\ustc@set@font@size}
% 设置行距的倍数为 1。
\linespread{1}\selectfont
% 检测系统
\ifustc@system@auto
\IfFileExists{/System/Library/Fonts/Menlo.ttc}{
\ustcsetup{system = mac}
}{
\IfFileExists{/dev/null}{
\IfFileExists{null:}{
\ustcsetup{system = windows}
}{
\ustcsetup{system = unix}
}
}{
\ustcsetup{system = windows}
}
}
\fi
% 处理 \opt{fontset}
\ifustc@fontset@auto
\ifustc@system@windows
\ustcsetup{fontset = windows}
\else
\ifustc@system@mac
\ustcsetup{fontset = mac}
\else
\IfFontExistsTF{Noto Serif CJK SC}{
\ustcsetup{fontset = ubuntu}
}{
\ustcsetup{fontset = fandol}
}
\fi
\fi
\fi
% 《撰写手册》要求西文字体使用 Times New Roman 和 Arial
% 但是在 Linux 下没有这两个字体,所以使用它们的克隆版 TeX Gyre Termes 和
% TeX Gyre Heros。
\ifustc@font@auto
\ifustc@fontset@windows
\ustcsetup{font=times}
\else
\ifustc@fontset@mac
\ustcsetup{font=times}
\else
\ustcsetup{font=termes}
\fi
\fi
\fi
% Times New Roman + Arial
\newcommand\ustc@set@font@times{%
\setmainfont{Times New Roman}%
\setsansfont{Arial}%
\ifustc@system@mac
\setmonofont{Menlo}[Scale = MatchLowercase]%
\else
\setmonofont{Courier New}[Scale = MatchLowercase]%
\fi
}
% TeX Gyre Termes
\newcommand\ustc@set@font@termes{%
\setmainfont{texgyretermes}[
Extension = .otf,
UprightFont = *-regular,
BoldFont = *-bold,
ItalicFont = *-italic,
BoldItalicFont = *-bolditalic,
]%
\ustc@set@texgyre@sans@mono
}
\newcommand\ustc@set@texgyre@sans@mono{%
\setsansfont{texgyreheros}[
Extension = .otf,
UprightFont = *-regular,
BoldFont = *-bold,
ItalicFont = *-italic,
BoldItalicFont = *-bolditalic,
]%
\setmonofont{texgyrecursor}[
Extension = .otf,
UprightFont = *-regular,
BoldFont = *-bold,
ItalicFont = *-italic,
BoldItalicFont = *-bolditalic,
Scale = MatchLowercase,
Ligatures = CommonOff,
]%
}
% STIX Two 字体。
% STIX 文件名在 v2.10 2020-12-19 从
% \file{STIX2Text-Regular.otf}、\file{STIX2Math.otf} 分别改为
% \file{STIXTwoText-Regular.otf}、\file{STIXTwoMath-Regular.otf}。
\let\ustc@font@family@stix\@empty
\newcommand\ustc@set@stix@names{%
\ifx\ustc@font@family@stix\@empty
\IfFontExistsTF{STIXTwoText-Regular.otf}{%
\gdef\ustc@font@family@stix{STIXTwoText}%
\gdef\ustc@font@name@stix@math{STIXTwoMath-Regular}%
}{%
\gdef\ustc@font@family@stix{STIX2Text}%
\gdef\ustc@font@name@stix@math{STIX2Math}%
}%
\fi
}
\newcommand\ustc@set@font@stix{%
\ustc@set@stix@names
\setmainfont{\ustc@font@family@stix}[
Extension = .otf,
UprightFont = *-Regular,
BoldFont = *-Bold,
ItalicFont = *-Italic,
BoldItalicFont = *-BoldItalic,
]%
\ustc@set@texgyre@sans@mono
}
% XITS 字体。
% XITS 的文件名在 v1.109 2018-09-30
% 从 \file{xits-regular.otf}、\file{xits-math.otf} 分别改为
% \file{XITS-Regular.otf}、\file{XITSMath-Regular.otf}。
\let\ustc@font@family@xits\@empty
\newcommand\ustc@set@xits@names{%
\ifx\ustc@font@family@xits\@empty
\IfFontExistsTF{XITSMath-Regular.otf}{%
\gdef\ustc@font@family@xits{XITS}%
\gdef\ustc@font@style@xits@rm{Regular}%
\gdef\ustc@font@style@xits@bf{Bold}%
\gdef\ustc@font@style@xits@it{Italic}%
\gdef\ustc@font@style@xits@bfit{BoldItalic}%
\gdef\ustc@font@name@xits@math{XITSMath-Regular}%
}{%
\gdef\ustc@font@family@xits{xits}%
\gdef\ustc@font@style@xits@rm{regular}%
\gdef\ustc@font@style@xits@bf{bold}%
\gdef\ustc@font@style@xits@it{italic}%
\gdef\ustc@font@style@xits@bfit{bolditalic}%
\gdef\ustc@font@name@xits@math{xits-math}%
}%
\fi
}
\newcommand\ustc@set@font@xits{%
\ustc@set@xits@names
\setmainfont{\ustc@font@family@xits}[
Extension = .otf,
UprightFont = *-\ustc@font@style@xits@rm,
BoldFont = *-\ustc@font@style@xits@bf,
ItalicFont = *-\ustc@font@style@xits@it,
BoldItalicFont = *-\ustc@font@style@xits@bfit,
]%
\ustc@set@texgyre@sans@mono
}
% Libertinus 的文件名在 v6.7 2019-04-03 从小写改为驼峰式,
% 在大小写敏感的平台上需要进行判断。
\let\ustc@font@family@libertinus\@empty
\newcommand\ustc@set@libertinus@names{%
\ifx\ustc@font@family@libertinus\@empty
\IfFontExistsTF{LibertinusSerif-Regular.otf}{%
\gdef\ustc@font@family@libertinus@serif{LibertinusSerif}%
\gdef\ustc@font@family@libertinus@sans{LibertinusSans}%
\gdef\ustc@font@name@libertinus@math{LibertinusMath-Regular}%
\gdef\ustc@font@style@libertinus@rm{Regular}%
\gdef\ustc@font@style@libertinus@bf{Bold}%
\gdef\ustc@font@style@libertinus@it{Italic}%
\gdef\ustc@font@style@libertinus@bfit{BoldItalic}%
}{%
\gdef\ustc@font@family@libertinus@serif{libertinusserif}%
\gdef\ustc@font@family@libertinus@sans{libertinussans}%
\gdef\ustc@font@name@libertinus@math{libertinusmath-regular}%
\gdef\ustc@font@style@libertinus@rm{regular}%
\gdef\ustc@font@style@libertinus@bf{bold}%
\gdef\ustc@font@style@libertinus@it{italic}%
\gdef\ustc@font@style@libertinus@bfit{bolditalic}%
}%
\fi
}
\newcommand\ustc@set@font@libertinus{%
\ustc@set@libertinus@names
\setmainfont{\ustc@font@family@libertinus@serif}[
Extension = .otf,
UprightFont = *-\ustc@font@style@libertinus@rm,
BoldFont = *-\ustc@font@style@libertinus@bf,
ItalicFont = *-\ustc@font@style@libertinus@it,
BoldItalicFont = *-\ustc@font@style@libertinus@bfit,
]%
\setsansfont{\ustc@font@family@libertinus@sans}[
Extension = .otf,
UprightFont = *-\ustc@font@style@libertinus@rm,
BoldFont = *-\ustc@font@style@libertinus@bf,
ItalicFont = *-\ustc@font@style@libertinus@it,
]%
\setmonofont{lmmonolt10}[
Extension = .otf,
UprightFont = *-regular,
BoldFont = *-bold,
ItalicFont = *-oblique,
BoldItalicFont = *-boldoblique,
]%
}
% New Computer Modern
\newcommand\ustc@set@font@newcm{%
\setmainfont{NewCM10}[
Extension = .otf,
UprightFont = *-Book,
BoldFont = *-Bold,
ItalicFont = *-BookItalic,
BoldItalicFont = *-BoldItalic,
]%
\setsansfont{NewCMSans10}[
Extension = .otf,
UprightFont = *-Book,
BoldFont = *-Bold,
ItalicFont = *-BookOblique,
BoldItalicFont = *-BoldOblique,
]%
\setmonofont{NewCMMono10}[
Extension = .otf,
UprightFont = *-Book,
ItalicFont = *-BookItalic,
BoldFont = *-Bold,
BoldItalicFont = *-BoldOblique,
]%
}
% Latin Modern
\newcommand\ustc@set@font@lm{%
\setmainfont{lmroman10}[
Extension = .otf,
UprightFont = *-regular,
BoldFont = *-bold,
ItalicFont = *-italic,
BoldItalicFont = *-bolditalic,
]%
\setsansfont{lmsans10}[
Extension = .otf,
UprightFont = *-regular,
BoldFont = *-bold,
ItalicFont = *-oblique,
BoldItalicFont = *-boldoblique,
]%
\setmonofont{lmmonolt10}[
Extension = .otf,
UprightFont = *-regular,
BoldFont = *-bold,
ItalicFont = *-oblique,
BoldItalicFont = *-boldoblique,
]%
}
\newcommand\ustc@set@font@newtx{%
\RequirePackage{newtxtext}%
}
\newcommand\ustc@set@font{%
\@nameuse{ustc@set@font@\ustc@font}%
}
\ustc@set@font
\ustc@option@hook{font}{\ustc@set@font}
% 中文字体
\ifustc@cjk@font@auto
\ifustc@fontset@mac
\ustcsetup{cjk-font = mac}
\else
\ifustc@fontset@windows
\ustcsetup{cjk-font = windows}
\else
\ifustc@fontset@ubuntu
\ustcsetup{cjk-font = noto}
\else
\ustcsetup{cjk-font = fandol}
\fi
\fi
\fi
\fi
% Windows 的中易字体。
\newcommand\ustc@set@cjk@font@windows{%
\setCJKmainfont{SimSun}[
AutoFakeBold = 3,
ItalicFont = KaiTi,
]%
\setCJKsansfont{SimHei}[AutoFakeBold = 3]%
\setCJKmonofont{FangSong}%
\setCJKfamilyfont{zhsong}{SimSun}[AutoFakeBold = 3]%
\setCJKfamilyfont{zhhei}{SimHei}[AutoFakeBold = 3]%
\setCJKfamilyfont{zhkai}{KaiTi}%
\setCJKfamilyfont{zhfs}{FangSong}%
}
% macOS 的华文字体。
\newcommand\ustc@set@cjk@font@mac{%
\defaultCJKfontfeatures{}%
\setCJKmainfont{Songti SC}[
UprightFont = * Light,
BoldFont = * Bold,
ItalicFont = Kaiti SC Regular,
BoldItalicFont = Kaiti SC Bold,
]%
\setCJKsansfont{Heiti SC}[
UprightFont = * Light,
BoldFont = * Medium,
]%
\setCJKmonofont{STFangsong}
\setCJKfamilyfont{zhsong}{Songti SC}[
UprightFont = * Light,
BoldFont = * Bold,
]%
\setCJKfamilyfont{zhhei}{Heiti SC}[
UprightFont = * Light,
BoldFont = * Medium,
]%
\setCJKfamilyfont{zhfs}{STFangsong}%
\setCJKfamilyfont{zhkai}{Kaiti SC}[
UprightFont = * Regular,
BoldFont = * Bold,
]%
\setCJKfamilyfont{zhli}{Baoli SC}%
\setCJKfamilyfont{zhyuan}{Yuanyi SC}[
UprightFont = * Light,
BoldFont = * Bold,
]%
}
% 思源字体。
% 注意 Noto CJK 的 regular 字重名字不带“Regular”。
\newcommand\ustc@set@cjk@font@noto{%
\defaultCJKfontfeatures{}%
\setCJKmainfont{Noto Serif CJK SC}[
UprightFont = * Light,
BoldFont = * Bold,
ItalicFont = FandolKai-Regular,
ItalicFeatures = {Extension = .otf},
Script = CJK,
]%
\setCJKsansfont{Noto Sans CJK SC}[
BoldFont = * Medium,
Script = CJK,
]%
\setCJKmonofont{Noto Sans Mono CJK SC}[
Script = CJK,
]%
\setCJKfamilyfont{zhsong}{Noto Serif CJK SC}[
UprightFont = * Light,
UprightFont = * Bold,
Script = CJK,
]%
\setCJKfamilyfont{zhhei}{Noto Sans CJK SC}[
BoldFont = * Medium,
Script = CJK,
]%
\setCJKfamilyfont{zhfs}{FandolFang}[
Extension = .otf,
UprightFont = *-Regular,
]%
\setCJKfamilyfont{zhkai}{FandolKai}[
Extension = .otf,
UprightFont = *-Regular,
]%
}
% Fandol 字体。
\newcommand\ustc@set@cjk@font@fandol{%
\defaultCJKfontfeatures{}%
\setCJKmainfont{FandolSong}[
Extension = .otf,
UprightFont = *-Regular,
BoldFont = *-Bold,
ItalicFont = FandolKai-Regular,
ItalicFeatures = {Extension = .otf},
]%
\setCJKsansfont{FandolHei}[
Extension = .otf,
UprightFont = *-Regular,
BoldFont = *-Bold,
]%
\setCJKmonofont{FandolFang}[
Extension = .otf,
UprightFont = *-Regular,
]%
\setCJKfamilyfont{zhsong}{FandolSong}[
Extension = .otf,
UprightFont = *-Regular,
BoldFont = *-Bold,
]%
\setCJKfamilyfont{zhhei}{FandolHei}[
Extension = .otf,
UprightFont = *-Regular,
BoldFont = *-Bold,
]%
\setCJKfamilyfont{zhfs}{FandolFang}[
Extension = .otf,
UprightFont = *-Regular,
]%
\setCJKfamilyfont{zhkai}{FandolKai}[
Extension = .otf,
UprightFont = *-Regular,
]%
}
\ifustc@cjk@font@none\else
\providecommand\songti{\CJKfamily{zhsong}}
\providecommand\heiti{\CJKfamily{zhhei}}
\providecommand\fangsong{\CJKfamily{zhfs}}
\providecommand\kaishu{\CJKfamily{zhkai}}
\fi
\newcommand\ustc@set@cjk@font{%
\@nameuse{ustc@set@cjk@font@\ustc@cjk@font}%
}
\ustc@set@cjk@font
\ustc@option@hook{cjk-font}{\ustc@set@cjk@font}
% 数学字体
% 设置数学符号风格。
\newcommand\ustc@set@math@style{%
\ifustc@math@style@TeX
\ustcsetup{
uppercase-greek = upright,
less-than-or-equal = horizontal,
integral = slanted,
integral-limits = false,
partial = italic,
math-ellipsis = AMS,
real-part = fraktur,
}%
\else
\ustcsetup{
uppercase-greek = italic,
integral = upright,
partial = upright,
real-part = roman,
}%
\ifustc@math@style@ISO
\ustcsetup{
less-than-or-equal = horizontal,
integral-limits = true,
math-ellipsis = lower,
}%
\else
\ifustc@math@style@GB
\ustcsetup{
less-than-or-equal = slanted,
integral-limits = false,
math-ellipsis = centered,
}%
\fi
\fi
\fi
}
\ifustc@main@language@chinese
\ustcsetup{math-style = GB}%
\else
\ustcsetup{math-style = TeX}%
\fi
\ustc@set@math@style
\ustc@option@hook{math-style}{\ustc@set@math@style}
\ustc@option@hook{main-language}{%
\ifustc@main@language@chinese
\ustcsetup{math-style = GB}%
\else
\ustcsetup{math-style = TeX}%
\fi
}
% 针对 \pkg{unicode-math} 逐项配置数学符号。
\newcommand\ustc@set@unimath@leq{%
\ifustc@leq@horizontal
\ifx\@begindocumenthook\@undefined
\let\le\ustc@save@leq
\let\ge\ustc@save@geq
\let\leq\ustc@save@leq
\let\geq\ustc@save@geq
\else
\AtBeginDocument{%
\let\le\ustc@save@leq
\let\ge\ustc@save@geq
\let\leq\ustc@save@leq
\let\geq\ustc@save@geq
}%
\fi
\else
\ifustc@leq@slanted
\ifx\@begindocumenthook\@undefined
\let\le\leqslant
\let\ge\geqslant
\let\leq\leqslant
\let\geq\geqslant
\else
\AtBeginDocument{%
\let\le\leqslant
\let\ge\geqslant
\let\leq\leqslant
\let\geq\geqslant
}%
\fi
\fi
\fi
}
\newcommand\ustc@set@unimath@integral@limits{%
\ifustc@integral@limits@true
\removenolimits{%
\int\iint\iiint\iiiint\oint\oiint\oiiint
\intclockwise\varointclockwise\ointctrclockwise\sumint
\intbar\intBar\fint\cirfnint\awint\rppolint
\scpolint\npolint\pointint\sqint\intlarhk\intx
\intcap\intcup\upint\lowint
}%
\else
\addnolimits{%
\int\iint\iiint\iiiint\oint\oiint\oiiint
\intclockwise\varointclockwise\ointctrclockwise\sumint
\intbar\intBar\fint\cirfnint\awint\rppolint
\scpolint\npolint\pointint\sqint\intlarhk\intx
\intcap\intcup\upint\lowint
}%
\fi
}
\newcommand\ustc@set@unimath@ellipsis{%
\ifustc@math@ellipsis@centered
\DeclareRobustCommand\mathellipsis{\mathinner{\unicodecdots}}%
\else
\DeclareRobustCommand\mathellipsis{\mathinner{\unicodeellipsis}}%
\fi
}
\newcommand\ustc@set@unimath@real@part{%
\ifustc@real@part@roman
\AtBeginDocument{%
\def\Re{\operatorname{Re}}%
\def\Im{\operatorname{Im}}%
}%
\else
\AtBeginDocument{%
\let\Re\ustc@save@Re
\let\Im\ustc@save@Im
}%
\fi
}
\newcommand\ustc@set@unimath@style{%
\ifustc@uppercase@greek@upright
\unimathsetup{math-style = TeX}%
\else
\ifustc@uppercase@greek@italic
\unimathsetup{math-style = ISO}%
\fi
\fi
\ifustc@math@style@TeX
\unimathsetup{bold-style = TeX}%
\else
\unimathsetup{bold-style = ISO}%
\fi
\ustc@set@unimath@leq
\ustc@set@unimath@integral@limits
\ifustc@partial@upright
\unimathsetup{partial = upright}%
\else
\ifustc@partial@italic
\unimathsetup{partial = italic}%
\fi
\fi
\ustc@set@unimath@ellipsis
\ustc@set@unimath@real@part
}
\newcommand\ustc@qed{\rule{1ex}{1ex}}
\newcommand\ustc@load@unimath{%
\@ifpackageloaded{unicode-math}{}{%
\RequirePackage{unicode-math}%
\AtBeginDocument{%
\let\ustc@save@leq\leq
\let\ustc@save@geq\geq
\let\ustc@save@Re\Re
\let\ustc@save@Im\Im
}%
%
% 兼容旧的粗体命令:\pkg{bm} 的 \cs{bm} 和 \pkg{amsmath} 的 \cs{boldsymbol}。
\DeclareRobustCommand\bm[1]{{\symbfit{##1}}}%
\DeclareRobustCommand\boldsymbol[1]{{\symbfit{##1}}}%
%
% 兼容 \pkg{amsfonts} 和 \pkg{amssymb} 中的一些命令。
\newcommand\square{\mdlgwhtsquare}%
\newcommand\blacksquare{\mdlgblksquare}%
\AtBeginDocument{%
\renewcommand\checkmark{\ensuremath{}}%
}%
%
% 兼容 \pkg{amsthm} 的 \cs{qedsymbol}。
\renewcommand\ustc@qed{\ensuremath{\QED}}%
}%
}
% STIX Two Math
\newcommand\ustc@set@math@font@stix{%
\ustc@load@unimath
\ustc@set@unimath@style
\ustc@set@stix@names
\setmathfont{\ustc@font@name@stix@math}[
Extension = .otf,
Scale = MatchLowercase,
StylisticSet = \ustc@xits@integral@stylistic@set,
]%
\setmathfont{\ustc@font@name@stix@math}[
Extension = .otf,
Scale = MatchLowercase,
StylisticSet = 1,
range = {scr,bfscr},
]%
}
% XITS Math
\newcommand\ustc@xits@integral@stylistic@set{%
\ifustc@integral@upright
8%
\fi
}
\newcommand\ustc@set@math@font@xits{%
\ustc@load@unimath
\ustc@set@unimath@style
\ustc@set@xits@names
\setmathfont{\ustc@font@name@xits@math}[
Extension = .otf,
StylisticSet = \ustc@xits@integral@stylistic@set,
]%
\setmathfont{\ustc@font@name@xits@math}[
Extension = .otf,
StylisticSet = 1,
range = {cal,bfcal},
]%
}
% Libertinus Math
\newcommand\ustc@libertinus@integral@stylistic@set{%
\ifustc@integral@slanted
8%
\fi
}
\newcommand\ustc@set@math@font@libertinus{%
\ustc@load@unimath
\ustc@set@unimath@style
\ustc@set@libertinus@names
\ustc@set@xits@names
\setmathfont{\ustc@font@name@libertinus@math}[
Extension = .otf,
StylisticSet = \ustc@libertinus@integral@stylistic@set,
]%
\setmathfont{\ustc@font@name@xits@math}[
Extension = .otf,
range = {\checkmark},
]%
}
% New Computer Modern Math
\newcommand\ustc@newcm@integral@stylistic@set{%
\ifustc@integral@upright
2%
\fi
}
\newcommand\ustc@set@math@font@newcm{%
\ustc@load@unimath
\ustc@set@unimath@style
\setmathfont{NewCMMath-Book}[
Extension = .otf,
StylisticSet = \ustc@newcm@integral@stylistic@set,
]%
\setmathfont{NewCMMath-Book}[
Extension = .otf,
StylisticSet = 1,
range = {scr,bfscr},
]%
\setmathrm{NewCM10}[
Extension = .otf,
UprightFont = *-Book,
BoldFont = *-Bold,
ItalicFont = *-BookItalic,
BoldItalicFont = *-BoldItalic,
]%
\setmathsf{NewCMSans10}[
Extension = .otf,
UprightFont = *-Book,
BoldFont = *-Bold,
ItalicFont = *-BookOblique,
BoldItalicFont = *-BoldOblique,
]%
\setmathtt{NewCMMono10}[
Extension = .otf,
UprightFont = *-Book,
ItalicFont = *-BookItalic,
BoldFont = *-Bold,
BoldItalicFont = *-BoldOblique,
]%
}
% Latin Modern Math
\newcommand\ustc@set@math@font@lm{%
\ustc@load@unimath
\ustc@set@unimath@style
\setmathfont{latinmodern-math}[Extension=.otf]%
\setmathrm{lmroman10}[
Extension = .otf,
UprightFont = *-regular,
BoldFont = *-bold,
ItalicFont = *-italic,
BoldItalicFont = *-bolditalic,
]%
\setmathsf{lmsans10}[
Extension = .otf,
UprightFont = *-regular,
BoldFont = *-bold,
ItalicFont = *-oblique,
BoldItalicFont = *-boldoblique,
]%
\setmathtt{lmmonolt10}[
Extension = .otf,
UprightFont = *-regular,
BoldFont = *-bold,
ItalicFont = *-oblique,
BoldItalicFont = *-boldoblique,
]%
}
% NewTX Math
% 注意 NewTX Math 是 Type 1 字体,如果正文西文使用了 OpenType 字体时需要小心处理。
\newcommand\ustc@set@math@font@newtx{%
\ifustc@font@newtx\else
\let\ustc@save@encodingdefault\encodingdefault
\let\ustc@save@rmdefault\rmdefault
\let\ustc@save@sfdefault\sfdefault
\let\ustc@save@ttdefault\ttdefault
\RequirePackage[T1]{fontenc}%
\renewcommand{\rmdefault}{ntxtlf}%
\renewcommand{\sfdefault}{qhv}%
\renewcommand{\ttdefault}{ntxtt}%
\fi
\ifustc@uppercase@greek@italic
\PassOptionsToPackage{slantedGreek}{newtxmath}%
\fi
\ifustc@integral@upright
\PassOptionsToPackage{upint}{newtxmath}%
\fi
\RequirePackage{newtxmath}
\let\ustc@save@leq\leq
\let\ustc@save@geq\geq
\ifustc@leq@slanted
\let\le\leqslant
\let\ge\geqslant
\let\leq\leqslant
\let\geq\geqslant
\fi
\ifustc@integral@limits@true
\let\ilimits@\displaylimits
\fi
\let\ustc@save@partial\partial
\ifustc@partial@upright
\let\partial\uppartial
\fi
\ifustc@math@ellipsis@centered
\DeclareRobustCommand\mathellipsis{\mathinner{\cdotp\cdotp\cdotp}}%
\else
\DeclareRobustCommand\mathellipsis{\mathinner{\ldotp\ldotp\ldotp}}%
\fi
\let\ustc@save@Re\Re
\let\ustc@save@Im\Im
\ifustc@real@part@roman
\def\Re{\operatorname{Re}}%
\def\Im{\operatorname{Im}}%
\fi
\RequirePackage{bm}%
\ifustc@font@newtx\else
\let\encodingdefault\ustc@save@encodingdefault
\let\rmdefault\ustc@save@rmdefault
\let\sfdefault\ustc@save@sfdefault
\let\ttdefault\ustc@save@ttdefault
\fi
\DeclareRobustCommand\symup[1]{{\mathrm{##1}}}%
\DeclareRobustCommand\symbf[1]{{\bm{##1}}}%
\DeclareRobustCommand\symbfsf[1]{{\bm{##1}}}%
\let\increment\upDelta%
\renewcommand\ustc@qed{\openbox}%
}
% Computer Modern
% 使用 LaTeX 默认的 cm 字体
\newcommand\ustc@set@math@font@cm{%
\RequirePackage{amssymb}
\let\ustc@save@leq\leq
\let\ustc@save@geq\geq
\ifustc@leq@slanted
\let\le\leqslant
\let\ge\geqslant
\let\leq\leqslant
\let\geq\geqslant
\fi
\ifustc@integral@limits@true
\let\ilimits@\displaylimits
\fi
\ifustc@math@ellipsis@centered
\DeclareRobustCommand\mathellipsis{\mathinner{\cdotp\cdotp\cdotp}}%
\else
\DeclareRobustCommand\mathellipsis{\mathinner{\ldotp\ldotp\ldotp}}%
\fi
\let\ustc@save@Re\Re
\let\ustc@save@Im\Im
\ifustc@real@part@roman
\def\Re{\operatorname{Re}}%
\def\Im{\operatorname{Im}}%
\fi
\RequirePackage{bm}%
\DeclareRobustCommand\symup[1]{{\mathrm{##1}}}%
\DeclareRobustCommand\symbf[1]{{\bm{##1}}}%
\DeclareRobustCommand\symbfsf[1]{{\bm{##1}}}%
\let\increment\Delta
\renewcommand\ustc@qed{\openbox}%
\let\uppi\pi
}
% 不设置数学字体,仅提供兼容支持。
\newcommand\ustc@set@math@font@none{%
\RequirePackage{amssymb}
\RequirePackage{bm}%
\DeclareRobustCommand\symup[1]{{\mathrm{##1}}}%
\DeclareRobustCommand\symbf[1]{{\bm{##1}}}%
\DeclareRobustCommand\symbfsf[1]{{\bm{##1}}}%
\let\increment\Delta
\renewcommand\ustc@qed{\openbox}%
\let\uppi\pi
}
\newcommand\ustc@set@math@font{%
\@nameuse{ustc@set@math@font@\ustc@math@font}%
}
\ustc@option@hook{math-font}{\g@addto@macro\ustc@setup@hook{\ustc@set@math@font}}
\newcommand\ustc@set@math@font@auto{%
\ifustc@math@font@auto
\ustcsetup{math-font=xits}%
\fi
}
\AtBeginOfPackageFile*{siunitx}{\ustc@set@math@font@auto}
\AtEndPreamble{%
\ustc@set@math@font@auto
\ifx\square\@undefined
\RequirePackage{amssymb}%
\fi
}
% \subsection{纸张和页面}
% 使用 \pkg{geometry} 宏包设置纸张和页面。
% 纸张A4
% 页面设置:上、下 2.54 cm左、右 3.17 cm页眉 1.5 cm页脚 1.75 cm。
% 注意这里指的是页眉顶部到纸张顶部的距离为 1.5 cm
% 所以应该是 2.54cm - 0.8cm - 0.24cm = 1.5cm
\geometry{
paper = a4paper,
vmargin = 2.54cm,
hmargin = 3.17cm,
headheight = 0.75cm,
headsep = 0.29cm,
footskip = 0.79cm,
}
% 使用 \pkg{fancy} 需要先调用 |\pagestyle{fancy}| 再修改 \cs{chaptermark} 和
% \cs{sectionmark}。
\pagestyle{fancy}
\let\sectionmark\@gobble
\renewcommand\headrulewidth{0.4\p@}
% 重定义默认的 |plain| page style会显示页眉和页脚。
\fancypagestyle{plain}{%
\fancyhf{}%
%
% 页眉与该部分的章标题相同,宋体 10.5 磅(五号)居中。
% 页码:宋体 10.5 磅、页面下脚居中。
\ifustc@degree@graduate
\def\ustc@hf@font{\fontsize{10.5bp}{12bp}\selectfont}
\fancyhead[C]{\ustc@hf@font\leftmark}%
\fancyfoot[C]{\ustc@hf@font\thepage}%
\let\@mkboth\markboth
\def\chaptermark##1{%
\markboth{\CTEXifname{\CTEXthechapter\quad}{}\ustc@spacetitle{##1}}{}%
}%
\let\sectionmark\@gobble
\else
%
% 本科生要求除封面、扉页外,每面上部加页眉,
% 用小 5 号字9 bp标注“中国科学技术大学本科毕业论文”居中
% 从目录页开始在每面底部居中用小五宋体9 bp连续编页码。
\def\ustc@hf@font{\fontsize{9bp}{12bp}\selectfont}
\fancyhead[C]{\ustc@hf@font 中国科学技术大学本科毕业论文}%
\fancyfoot[C]{\ustc@hf@font\thepage}%
\let\@mkboth\@gobbletwo
\let\chaptermark\@gobble
\let\sectionmark\@gobble
\fi
}
\pagestyle{plain}
% |headings| 只有页眉,没有页脚,用于研究生的符号说明和本科生的 front matter。
\fancypagestyle{headings}{\fancyfoot{}}
% 设置特殊的 page style 不改变任何内容,用于每章首页。
\def\ps@chapter{}
\ctexset{chapter/pagestyle=chapter}
% 空白页不加页眉和页码。
\def\cleardoublepage{%
\clearpage
\if@twoside
\ifodd\c@page\else
\hbox{}%
\thispagestyle{empty}%
\newpage
\if@twocolumn
\hbox{}%
\newpage
\fi
\fi
\fi
}
%
% 研究生要求从“中文摘要”开始页码用大写罗马数字,
% 而本科生的 frontmatter只有致谢不编页码从目录开始页码用阿拉伯数字。
\renewcommand\frontmatter{%
\cleardoublepage
\@mainmatterfalse
\pagenumbering{Roman}%
\ifustc@degree@graduate
\pagestyle{plain}%
\else
\pagestyle{headings}%
\fi
}
% 研究生要求“第 1 章”要另页起,但是本科生要求另面起。
\renewcommand\mainmatter{%
\ifustc@degree@graduate
\cleardoublepage
\pagenumbering{arabic}%
\else
\clearpage
\fi
\pagestyle{plain}%
\@mainmattertrue
}
\g@addto@macro\appendix{\@mainmattertrue}%
% \subsection{封面}
% 定义用户接口:
\ustc@define@key{
title = {
default = {论文题目},
},
class = {
default = {所属班级},
},
author = {
default = {作者姓名},
},
speciality = {
default = {专业},
},
speciality* = {
default = {Speciality},
name = speciality@en,
},
supervisor = {
default = {导师姓名},
},
advisor = {
default = {},
},
advisor* = {
default = {},
name = advisor@en,
},
date = {
default = {\the\year-\two@digits{\month}-\two@digits{\day}},
},
professional-type = {
name = professional@type,
},
professional-type* = {
name = professional@type@en,
},
department,
student-id = {
name = student@id,
},
secret-level = {
name = secret@level,
},
secret-level* = {
name = secret@level@en,
},
secret-year = {
name = secret@year,
},
keywords,
keywords* = {
name = keywords@en,
},
}
% 输出日期的给定格式:\cs{ustc@format@date}\marg{format}\marg{date}
% 其中格式 \meta{format} 接受三个参数分别对应年、月、日,
% \meta{date} 是 ISO 格式的日期yyyy-mm-dd
\newcommand\ustc@format@date[2]{%
\edef\ustc@@date{#2}%
\def\ustc@@process@date##1-##2-##3\@nil{%
#1{##1}{##2}{##3}%
}%
\expandafter\ustc@@process@date\ustc@@date\@nil
}
\newcommand\ustc@date@format@zh@small[3]{\number#1 年 \number#2 月 \number#3 日}
\newcommand\ustc@date@format@zh@big[3]{\zhdigits{#1}\zhnumber{#2}\zhnumber{#3}}
\newcommand\ustc@date@month[1]{%
\ifcase\number#1\or
January\or February\or March\or April\or May\or June\or
July\or August\or September\or October\or November\or December%
\fi
}
\newcommand\ustc@date@format@zh@short[3]{\number#1 年 \number#2 月}
\newcommand\ustc@date@format@en[3]{\ustc@date@month{#2} \number#3, #1}
\newcommand\ustc@date@zh@small{\ustc@format@date{\ustc@date@format@zh@small}{\ustc@date}}
\newcommand\ustc@date@zh@big{\ustc@format@date{\ustc@date@format@zh@big}{\ustc@date}}
\newcommand\ustc@date@zh@short{\ustc@format@date{\ustc@date@format@zh@short}{\ustc@date}}
\newcommand\ustc@date@en{\ustc@format@date{\ustc@date@format@en}{\ustc@date}}
% 版本 v3.2 开始使用 \cs{ustcsetup} 设置接口,
% 兼容旧版本的命令式设置。
% Reserved for compatibility until 2020-07-01.
\def\ustc@define@term#1#2{%
\expandafter\gdef\csname #1\endcsname##1{%
\ustcsetup{#2 = {##1}}%
}%
}
\ustc@define@term{title}{title}
\ustc@define@term{entitle}{title*}
\ustc@define@term{author}{author}
\ustc@define@term{enauthor}{author*}
\ustc@define@term{supervisor}{supervisor}
\gdef\date#1{\renewcommand\ustc@date@zh@big{#1}}
\gdef\endate#1{\renewcommand\ustc@date@en{#1}}
\ustc@define@term{professionaltype}{professional-type}
\ustc@define@term{enprofessionaltype}{professional-type*}
\ustc@define@term{secretlevel}{secret-level}
\ustc@define@term{ensecretlevel}{secret-level*}
\ustc@define@term{secretyear}{secret-year}
\gdef\keywords#1{\renewcommand\ustc@keywords@text{#1}}
\gdef\enkeywords#1{\renewcommand\ustc@keywords@en@text{#1}}
% 定义一些常量。
\ifustc@degree@doctor
\newcommand\ustc@thesis@name{研究性学习报告}
\newcommand\ustc@thesis@name@en{A dissertation for doctor's degree}
\else
\ifustc@degree@master
\newcommand\ustc@thesis@name{硕士学位论文}
\newcommand\ustc@thesis@name@en{A dissertation for master's degree}
\else
\newcommand\ustc@thesis@name{学士学位论文}
\newcommand\ustc@thesis@name@en{A dissertation for bachelor's degree}
\fi
\fi
\ifustc@degree@type@academic
\newcommand\ustc@speciality@name{学科专业}
\else
\ifustc@degree@doctor
\renewcommand\ustc@thesis@name{专业博士学位论文}
\else
\renewcommand\ustc@thesis@name{专业硕士学位论文}
\fi
\ifustc@cjk@font@mac
\providecommand\lishu{\CJKfamily{zhli}}
\else
\ifustc@cjk@font@windows
\setCJKfamilyfont{zhli}{LiSu}
\providecommand\lishu{\CJKfamily{zhli}}
\else
\ustc@warning{LiShu font is required}
\providecommand\lishu{\sffamily}
\fi
\fi
\newcommand\ustc@speciality@name{专业领域}
\fi
% 定义校徽颜色
%
% 推迟定义颜色以避免调用 \pkg{xcolor} 时的警告
\AtBeginDocument{
\definecolor{ustcblue}{cmyk}{1,0.8,0,0}
}
% 添加 PDF 书签,在 \pkg{hyperref} 载入后才有效。
\newcommand\ustc@pdfbookmark{\@gobble}
% 重定义 \env{titlepage} 环境,不修改页码。
\renewenvironment{titlepage}{%
\cleardoublepage
\if@twocolumn
\@restonecoltrue\onecolumn
\else
\@restonecolfalse\newpage
\fi
\thispagestyle{empty}%
}{%
\if@restonecol\twocolumn \else \newpage \fi
}
% 中文封面:
% 密级仿宋 14 磅;
% 论文类型黑体 56 磅;
% 论文题目黑体 26 磅加粗居中,单倍行距;
% 作者姓名宋体 16 磅,单倍行距;
% 注意这里的“单倍行距”的地方开启了“对齐到网格”,所以实际行距有所偏差,
% 所以只能使用直尺测量。
\newcommand\ustc@speciality@sse{软件工程}
\newcommand\ustc@title@page@graduate@zh{%
\ustcsetup{language=chinese}%
\begin{titlepage}%
\ustc@pdfbookmark{封面}%
\centering
\parbox[t][0.6cm][t]{\textwidth}{%
\raggedleft\fangsong\fontsize{14bp}{14bp}\selectfont
\null\ustc@secret@level\par}\par
\vskip 0.5cm%
\includegraphics[height=1.5cm]{figures/name.pdf}\par
\vskip 0.6cm%
{\sffamily\fontsize{56bp}{56bp}\selectfont
\ustc@thesis@name\par}%
\ifustc@degree@type@academic
\vskip 2.0cm%
\else
\vskip 0.8cm%
\begingroup
\fontsize{26bp}{26bp}\selectfont
\ifx\ustc@professional@type\@empty
\null
\else
\lishu \ustc@professional@type %
\fi
\par
\endgroup
\vskip 1.0cm%
\fi
\ifustc@badge@color@blue
\textcolor{ustcblue}{%
\includegraphics[height=4.1cm]{figures/hfbz-icon.pdf}}%
\else
\includegraphics[height=4.1cm]{figures/hfbz-icon.pdf}%
\fi\par
\vskip 0.9cm%
\parbox[t][3.5cm][c]{\textwidth}{%
\centering\sffamily\bfseries\fontsize{26bp}{50bp}\selectfont
\ustc@title\par}\par
\vskip 0.6cm%
{\fontsize{16bp}{31bp}\selectfont
\begin{tabular}{@{}l@{\hspace{\ccwd}}l@{}}%
\textsf{所属班级:} & \ustc@class \\
\textsf{作者姓名:} & \ustc@author \\
\textsf{指导教师:} & \ustc@supervisor \\
\textsf{完成时间:} & \ustc@date@zh@big
\end{tabular}\par}%
\end{titlepage}%
\ustc@reset@main@language
}
\newbox\ustc@title@box
\newlength\ustc@title@page@item@width
% 重新定义 \cs{maketitle},调用 \cs{ustc@makezhtitle}, \cs{ustc@makeentitle}
% 生成中文封面。
\renewcommand\maketitle{
\newgeometry{margin=2.54cm}
\pagenumbering{Alph}
\pagestyle{empty}
\ustc@title@page@graduate@zh
% \cleardoublepage
\restoregeometry
\pagestyle{plain}
}
\newcommand\ustc@underline[2][3.2cm]{\underline{\hb@xt@ #1{\hss#2\hss}}}
\newcommand\ustc@checkbox{%
\makebox[\z@][l]{$\square$}%
\raisebox{-0.2ex}{\hspace{0.1em}$\checkmark$}%
}
\ifustc@degree@bachelor
\let\copyrightpage\relax
\fi
% Reserved for compatibility until 2020-07-01.
\let\makestatement\copyrightpage
% \subsection{章节标题}
% 标题最多允许使用五级。
\setcounter{secnumdepth}{5}
% 研究生规定章题为两字时中间空两字,三字时空一字,四字时空半字,四字以上不空。
% 这里用 \LaTeX3 的 \cs{str\_count:N} 判断字数。
% 注意,\pkg{stringstrings} 宏包会导致范数命令 \verb+\|+ 被修改。
\newcount\ustc@titlelength
\DeclareRobustCommand\ustc@spacetitle[1]{%
\ustc@titlelength=\csname str_count:N\endcsname{#1}%
\begingroup
\ifustc@degree@graduate
\ifcase\ustc@titlelength
\or\or
\ziju{2}%
\or
\ziju{1}%
\or
\ziju{0.5}%
\fi
\else
\if@mainmatter\else
\ifcase\ustc@titlelength
\or\or
\ziju{1}%
\or\or
\ziju{0.5}%
\fi
\fi
\fi
#1%
\endgroup
}
% 五级节标题和脚注需要使用带圈的数字,这里使用 \cs{ustc@circlefont}
\newcommand\ustc@textcircled[1]{%
\ifnum\value{#1}<21\relax
{\symbol{\numexpr\value{#1} + "245F\relax}}%
\else
\ustc@error{Cannot display more than 20 footnotes}%
\fi
}
% 用 \pkg{ctex} 的接口设置全部章节标题格式。
% 各章标题:黑体 16 磅加粗居中,单倍行距,段前 24 磅,段后 18 磅,
% 章序号与章名间空一字。
% 由于 Word 模板中使用“单倍行距”,还“对齐到网格”,这在 TeX 中不容易实现。
% 所以目前按照默认的行距。
% 注意 \pkg{ctex} v2.4.3 以下版本的bug会导致章节标题前后的距离的实际值偏大。
% 另外 \pkg{ctex} v2.2 前的beforeskip的符号有特殊意义。
\ctexset{
chapter = {
format = \centering\sffamily\bfseries\fontsize{16bp}{26.67bp}\selectfont,
nameformat = {},
titleformat = \ustc@spacetitle,
number = \thechapter,
aftername = \hspace{\ccwd},
beforeskip = 24bp,
afterskip = 18bp,
fixskip = true,
},
}
% 一级节标题:黑体 14 磅左顶格,单倍行距,段前 24 磅,段后 6 磅,
% 序号与题名间空一字。
\ctexset{
section = {
format = \sffamily\fontsize{14bp}{23.33bp}\selectfont,
aftername = \hspace{\ccwd},
beforeskip = 24bp,
afterskip = 6bp,
},
%
% 二级节标题:黑体 13 磅,左缩进两字,单倍行距,段前 12 磅,段后 6 磅,
% 序号与题名间空一字。
subsection = {
format = \sffamily\fontsize{13bp}{21.67bp}\selectfont,
aftername = \hspace{\ccwd},
indent = 2\ccwd,
beforeskip = 12bp,
afterskip = 6bp,
},
%
% 三级及以下节标题的格式没有具体规定,按照 Word 模板的格式:
% 使用黑体 12 磅,左缩进两字,行距 20 磅,段前段后 0 磅,序号与题名间空半字宽。
subsubsection = {
format = \sffamily\fontsize{12bp}{20bp}\selectfont,
number = \arabic{subsubsection},
aftername = .\hspace{0.5\ccwd},
indent = 2\ccwd,
beforeskip = \z@,
afterskip = \z@,
},
%
% 按照 Word 模板的格式,四级节标题:宋体 12 磅,左缩进两字,行距 20 磅,
% 段前段后 0 磅,序号使用全宽括号,与题名间空半字宽。
paragraph = {
format = \rmfamily\fontsize{12bp}{20bp}\selectfont,
number = \arabic{paragraph},
aftername = \hspace{0.5\ccwd},
indent = 2\ccwd,
beforeskip = \z@,
afterskip = \z@,
runin = false,
},
%
% 按照 Word 模板的格式,五级节标题:宋体 12 磅,左缩进两字,行距 20 磅,
% 段前段后 0 磅,序号使用全宽括号,与题名间空半字宽。
subparagraph = {
format = \rmfamily\fontsize{12bp}{20bp}\selectfont,
number = \ustc@textcircled{subparagraph},
aftername = \hspace{0.5\ccwd},
indent = 2\ccwd,
beforeskip = \z@,
afterskip = \z@,
runin = false,
},
}
\ifustc@degree@bachelor
\ifustc@main@language@english
\ustcsetup{section-style = arabic}
\fi
\fi
\ustc@option@hook{main-language}{%
\ifustc@degree@bachelor
\ifustc@main@language@english
\ustcsetup{section-style = arabic}%
\fi
\fi
}
% 在研究生格式的基础上再设置本科生的章节标题格式。
\ifustc@degree@bachelor
\setcounter{secnumdepth}{4}
\ctexset{
%
% 论文的致谢、目录、摘要和参考文献等标题用小二号18 bp黑体字居中
% 这通过 \cs{if@mainmatter} 区分。
% 正文中的标题分章、节、段三级;章、节标题居中,段标题居左,
% 分别用三号16 bp黑体、小三15 bp黑体、四号14 bp黑体。
chapter = {
format = {
\centering\sffamily
\if@mainmatter
\fontsize{16bp}{29.33bp}\selectfont
\else
\fontsize{18bp}{33bp}\selectfont
\fi
},
},
section = {
format = \centering\sffamily\fontsize{15bp}{27.5bp}\selectfont,
},
subsection = {
format = \sffamily\fontsize{14bp}{25.67bp}\selectfont,
indent = \z@,
},
subsubsection = {
format = \rmfamily\fontsize{12bp}{22bp}\selectfont,
indent = \ccwd,
},
paragraph = {
format = \rmfamily\fontsize{12bp}{22bp}\selectfont,
aftername = {},
indent = \ccwd,
},
}
%
% 本科生的阿拉伯数字式标题的格式与研究生几乎一致,只有中文数字式需要修改。
\ifustc@section@style@arabic\else
\ctexset{
chapter = {
number = \chinese{chapter},
},
section = {
name = {第,节},
number = \chinese{section},
},
subsection = {
number = \chinese{subsection},
aftername = {},
},
}
\fi
\fi
% 默认的 \cs{chapter*} 生成的章标题没有编号、不更改页眉,
% 也不添加进目录或 PDF 书签。
% 然而像摘要、目录、符号说明这样的章节,它们不需要编号、不加入目录,
% 但是需要修改页眉,并且加入 PDF 标签。
% 所以我们新定义 \cs{ustc@chapter} 用于处理这些章节。%
\NewDocumentCommand\ustc@chapter{o m}{%
\if@openright\cleardoublepage\else\clearpage\fi
\IfValueTF{#1}{%
\ustc@pdfbookmark{#1}%
\chaptermark{#1}%
}{%
\ustc@pdfbookmark{#2}%
\chaptermark{#2}%
}%
\chapter*{#2}}
% \subsection{摘要}
% 中文摘要环境。
\newcommand\ustc@keywords@text{%
\ifustc@degree@graduate
\ustc@clist@use{\ustc@keywords}{\quad}%
\else
\ustc@clist@use{\ustc@keywords}{}%
\fi
}
\newcommand\ustc@keywords@en@text{%
\ifustc@degree@graduate
\ustc@clist@use{\ustc@keywords@en}{, }%
\else
\ustc@clist@use{\ustc@keywords@en}{; }%
\fi
}
\newenvironment{abstract}{%
\ustcsetup{language=chinese}%
\ustc@chapter{摘要}%
}{
\par\null\par\noindent\hangindent=4\ccwd\relax
\textbf{关键词}\ustc@keywords@text\par
\ustc@reset@main@language
}
\newbox\ustc@keywords@box
\newlength\ustc@keywords@width
% 英文摘要环境
\newenvironment{abstract*}{%
\ustcsetup{language=english}%
\ifustc@degree@graduate
\ustc@chapter[Abstract]{ABSTRACT}%
\else
\begingroup
% 本科生的英文摘要使用小二号衬线体
\ctexset{chapter/format=\centering\fontsize{18bp}{33bp}\selectfont}%
\ustc@chapter{ABSTRACT}%
\endgroup
\fi
}{
\par\null\par\noindent
\savebox\ustc@keywords@box{\textbf{Key Words}: }%
\ustc@keywords@width=\linewidth
\advance\ustc@keywords@width-\wd\ustc@keywords@box
\textbf{Key Words}: \parbox[t]{\ustc@keywords@width}{\ustc@keywords@en@text\par}\par
\ifustc@degree@graduate
\cleardoublepage
\fi
\ustc@reset@main@language
}
% Reserved for compatibility until 2020-07-01.
\newenvironment{enabstract}{%
\begin{abstract*}%
}{%
\end{abstract*}%
}
% \subsection{目录}
% 研究生规定目录另面起;
% 本科生规定从目录开始编页码,所以必须另页起。
\renewcommand\tableofcontents{%
\ustc@chapter{\contentsname}%
\@starttoc{toc}%
}
% 下面用 \pkg{titletoc} 宏包设置目录内容的格式。
% 先定义目录线:
\newcommand\ustc@leaders{%
\hspace{2bp}%
\titlerule*[4bp]{\textperiodcentered}%
\hspace{2bp}%
}
\contentsmargin{0bp}
% 各章目录要求宋体 14 磅,单倍行距,段前 6 磅,段后 0 磅,两端对齐,
% 页码右对齐,章序号与章名间空一字。
% 但是 Word 模板中实际是行距 20 磅。
\ifustc@degree@graduate
\titlecontents{chapter}
[\z@]{\addvspace{6bp}\fontsize{14bp}{20bp}\selectfont}
{\contentspush{\thecontentslabel\hspace{\ccwd}}}{}
{\fontsize{12bp}{20bp}\selectfont\ustc@leaders\thecontentspage}
%
% 一级节标题目录要求宋体 12 磅,单倍行距,左缩进一字,段前 6 磅,段后 0 磅,
% 两端对齐,页码右对齐,序号与题名间空一字。
% Word 模板中实际是行距 20 磅,段前 0 磅。
\titlecontents{section}
[\ccwd]{\fontsize{12bp}{20bp}\selectfont}
{\contentspush{\thecontentslabel\hspace{\ccwd}}}{}
{\ustc@leaders\thecontentspage}
%
% 二级节标题目录要求仿宋 12 磅,单倍行距,左缩进两字,段前 6 磅,段后 0 磅,
% 两端对齐,页码右对齐,序号与题名间空一字。
% Word 模板中实际是行距 20 磅,段前 0 磅。
\titlecontents{subsection}
[2\ccwd]{\fangsong\fontsize{12bp}{20bp}\selectfont}
{\contentspush{\thecontentslabel\hspace{\ccwd}}}{}
{\ustc@leaders\thecontentspage}
%
% 本科生的目录使用小四宋体(同正文字体),其他同研究生的格式相近。
\else
\titlecontents{chapter}
[\z@]{\normalsize}
{\contentspush{\thecontentslabel\unskip\hspace{\ccwd}}}{}
{\ustc@leaders\thecontentspage}
\titlecontents{section}
[\ccwd]{\normalsize}
{\contentspush{\thecontentslabel\hspace{\ccwd}}}{}
{\ustc@leaders\thecontentspage}
\titlecontents{subsection}
[2\ccwd]{\normalsize}
{\contentspush{\thecontentslabel
\ifustc@section@style@arabic\hspace{\ccwd}\else\fi}}{}
{\ustc@leaders\thecontentspage}
\fi
% 本科生要求目录中正文每章前多空一行,而目录、附录等章则不需要空行,
% 所以不能简单判断 \cs{if@mainmatter},需要重新定义 \cs{mainmatter} 等命令。
\newif\ifustc@addtocspace
\ifustc@degree@bachelor
\ustc@addtocspacetrue
\g@addto@macro\frontmatter{\ustc@addtocspacefalse}%
\g@addto@macro\mainmatter{\ustc@addtocspacetrue}%
\g@addto@macro\backmatter{\ustc@addtocspacefalse}%
\g@addto@macro\appendix{\ustc@addtocspacefalse}%
\fi
% 处理本科生在目录中添加空行。
\renewcommand\chapter{%
\if@openright\cleardoublepage\else\clearpage\fi
\thispagestyle{\CTEX@chapter@pagestyle}%
\global\@topnum\z@
\@afterindenttrue
\ifustc@degree@bachelor
\ifustc@addtocspace
\addtocontents{toc}{\protect\addvspace{12bp}}%
\fi
\fi
\secdef\@chapter\@schapter
}
% 研究生要求图、表的清单须另页起。
\newlength{\ustc@lof@label@width}
\newcommand\ustc@set@lof@format{%
\settowidth{\ustc@lof@label@width}{\figurename~9.99}%
\addtolength{\ustc@lof@label@width}{1em}%
\titlecontents{figure}%
[\ustc@lof@label@width]{\normalsize}%
{\contentslabel[\figurename~\thecontentslabel]{\ustc@lof@label@width}}{}%
{\ustc@leaders\thecontentspage}%
\titlecontents{table}%
[\ustc@lof@label@width]{\normalsize}%
{\contentslabel[\tablename~\thecontentslabel]{\ustc@lof@label@width}}{}%
{\ustc@leaders\thecontentspage}%
}
\ustc@set@lof@format
\ustc@option@hook{main-language}{\ustc@set@lof@format}
\renewcommand\listoffigures{%
\ifustc@degree@graduate
\cleardoublepage
\fi
\ustc@chapter{\listfigurename}%
\@starttoc{lof}%
}
\renewcommand\listoftables{%
\ifustc@degree@graduate
\cleardoublepage
\fi
\ustc@chapter{\listtablename}%
\@starttoc{lot}%
}
% \subsection{符号说明}
% 研究生规定符号说明另页起,标题字体字号等同论文正文,
% 《撰写手册》第 9 页 1.10(2) 还规定“符号说明不加页码”。
\newenvironment{notation}{%
\ifustc@degree@graduate
\cleardoublepage
\pagestyle{headings}%
\fi
\ustc@chapter{\ustc@notation@name}%
}{%
\ifustc@degree@graduate
\clearpage
\pagestyle{plain}%
\fi
}%
\newcommand*\notationlabel[1]{#1\hfil}%
\newenvironment{notationlist}[1]{%
\list{}{%
\itemsep 3bp%
\labelwidth #1\relax%
\labelsep 1em%
\leftmargin\labelwidth
\advance\leftmargin\labelsep
\advance\leftmargin 3em%
\rightmargin 3em%
\let\makelabel\notationlabel
}%
}{%
\endlist
}
% \subsection{正文}
% \cs{sloppy} 可以减少“overfull boxes”。
\sloppy
% 禁止扩大段间距。(\href{https://github.com/ustctug/ustcthesis/issues/209}{
% ustctug/ustcthesis\#209}
\raggedbottom
% 段间距 0 磅。
\setlength{\parskip}{\z@}
% 首段缩进。
\ctexset{autoindent=2}
% 首段缩进。
\let\@afterindentfalse\@afterindenttrue
\@afterindenttrue
% URL 的字体设为保持原样。
\urlstyle{same}
% 使用 \pkg{xurl} 宏包的方法,增加 URL 可断行的位置。
\def\UrlBreaks{%
\do\/%
\do\a\do\b\do\c\do\d\do\e\do\f\do\g\do\h\do\i\do\j\do\k\do\l%
\do\m\do\n\do\o\do\p\do\q\do\r\do\s\do\t\do\u\do\v\do\w\do\x\do\y\do\z%
\do\A\do\B\do\C\do\D\do\E\do\F\do\G\do\H\do\I\do\J\do\K\do\L%
\do\M\do\N\do\O\do\P\do\Q\do\R\do\S\do\T\do\U\do\V\do\W\do\X\do\Y\do\Z%
\do0\do1\do2\do3\do4\do5\do6\do7\do8\do9\do=\do/\do.\do:%
\do\*\do\-\do\~\do\'\do\"\do\-}
\Urlmuskip=0mu plus 0.1mu
% 脚注用带圈的数字:
\renewcommand\thefootnote{\ustc@textcircled{footnote}}
% LaTeX 默认脚注按章计数,即每章的开始才重置脚注计数器;我们修改为按页计数。
% 简单的|\@addtoreset{footnote}{page}|并不可靠,
% \footnote{\url{https://texfaq.org/FAQ-footnpp.html}}
% 所以我们使用 \pkg{footmisc} 宏包。
% 脚注线长为版心宽度的四分之一:
\renewcommand\footnoterule{%
\kern-3\p@
\hrule\@width.25\textwidth
\kern2.6\p@}
%
% 注文缩进两字:
\renewcommand\@makefntext[1]{%
\parindent 2\ccwd\relax
\noindent
\hb@xt@2\ccwd{\hss\@makefnmark}#1}
% \subsection{列表}
% \label{sec:list}
% 调整列表中各项之间过大的间距。
\setlength\partopsep{\z@}
\newcommand\ustc@nolistsep{%
\parsep 0\p@ \@plus.2\p@
\topsep 0\p@ \@plus.2\p@
\itemsep0\p@ \@plus.2\p@
}
\def\@listi{\leftmargin\leftmargini
\ustc@nolistsep}
\let\@listI\@listi
\@listi
\def\@listii {\leftmargin\leftmarginii
\labelwidth\leftmarginii
\advance\labelwidth-\labelsep
\ustc@nolistsep}
\def\@listiii{\leftmargin\leftmarginiii
\labelwidth\leftmarginiii
\advance\labelwidth-\labelsep
\ustc@nolistsep}
% \subsection{浮动体}
% \LaTeX{} 对放置浮动体的要求比较强,这里按照 UK TeX FAQ 的建议
% \footnote{\url{https://texfaq.org/FAQ-floats}} 对其适当放宽。
\renewcommand\topfraction{.85}
\renewcommand\bottomfraction{.7}
\renewcommand\textfraction{.15}
\renewcommand\floatpagefraction{.66}
\renewcommand\dbltopfraction{.66}
\renewcommand\dblfloatpagefraction{.66}
\setcounter{topnumber}{9}
\setcounter{bottomnumber}{9}
\setcounter{totalnumber}{20}
\setcounter{dbltopnumber}{9}
% 修改默认的浮动体描述符为 |h|。
\def\fps@figure{h}
\def\fps@table{h}
% 用 \pkg{caption} 宏包设置图、表的格式:
% 图号、图题置于图的下方,宋体 10.5 磅居中,单倍行距,段前 6 磅,段后 12 磅,
% 图号与图题文字之间空一字,图号、图题加粗。
% 图注位于图的下方,左缩进两字,续行悬挂缩进左对齐,两端对齐。
% 表号、表题置于表的上方,黑体 10.5 磅居中,单倍行距,段前 6 磅,段后 6 磅,
% 表号与表题文字之间空一字,表号、表题加粗。
% 表注左缩进两字,续行悬挂缩进左对齐,两端对齐。
\setlength{\floatsep}{6bp}
\setlength{\textfloatsep}{6bp}
\setlength{\intextsep}{6bp}
\DeclareCaptionFont{ustc}{%
\ifustc@language@chinese
\fontsize{10.5bp}{13.65bp}\selectfont
\else
\fontsize{10.5bp}{12.075bp}\selectfont
\fi
}
\captionsetup{
font = ustc,
labelsep = quad,
skip = 6bp,
figureposition = bottom,
tableposition = top,
}
\ifustc@degree@graduate
\captionsetup{font+=bf}
\captionsetup[table]{font+=sf}
\fi
\captionsetup[figure]{
belowskip = 6bp,
}
% 由于 LaTeX2e kernel 的问题,图表等浮动体与文字前后的距离不一致,需要进行 patch。
% 参考 \href{https://github.com/tuna/thuthesis/issues/614}{tuna/thuthesis/issues\#614}、
% \url{https://www.zhihu.com/question/46618031} 和
% \url{https://tex.stackexchange.com/a/40363/82731}。
% \begin{macrocode}
\patchcmd{\@addtocurcol}%
{\vskip \intextsep}%
{\edef\save@first@penalty{\the\lastpenalty}\unpenalty
\ifnum \lastpenalty = \@M % hopefully the OR penalty
\unpenalty
\else
\penalty \save@first@penalty \relax % put it back
\fi
\ifnum\outputpenalty <-\@Mii
\addvspace\intextsep
\vskip\parskip
\else
\addvspace\intextsep
\fi}%
{}{\ustc@patch@error{\@addtocurcol}}
\patchcmd{\@addtocurcol}%
{\vskip\intextsep \ifnum\outputpenalty <-\@Mii \vskip -\parskip\fi}%
{\ifnum\outputpenalty <-\@Mii
\aftergroup\vskip\aftergroup\intextsep
\aftergroup\nointerlineskip
\else
\vskip\intextsep
\fi}%
{}{\ustc@patch@error{\@addtocurcol}}
\patchcmd{\@getpen}{\@M}{\@Mi}
{}{\ustc@patch@error{\@getpen}}
% 新定义了 \cs{note} 来生成图表的附注。
% 如果用 \cs{caption} 生成图表的附注会导致图表的序号有误;
% 如果用 \cs{bicaption} 会导致表注无法置于表后,而且对齐方式不对。
\newcommand\note[1]{%
\begingroup
\captionsetup{
font = ustc,
margin = 2\ccwd,
position = bottom,
}%
\caption*{#1}%
\endgroup
}
% 表格默认字号略小
\patchcmd\@floatboxreset{%
\normalsize
}{%
\small
}{}{\ustc@patch@error{\@floatboxreset}}
% 对 \pkg{longtable} 跨页表格进行相同的设置。
%
% 在 Word 模板中按照正确的设置(需要去掉文档网格),
% 中文模板每页能装下 1 行标题、1 行表头、30 行表身,
% 英文模板每页能装下 1 行标题、1 行表头、33 行表身。
% \begin{macrocode}
\AtEndOfPackageFile*{longtable}{
\AtBeginEnvironment{longtable}{%
\ifdim\f@size pt > 12pt\relax
\small
\fi
}
}
% \subsection{参考文献}
\PassOptionsToPackage{compress}{natbib}
\AtEndOfPackageFile*{natbib}{
% 定义几种引用文献的标注样式。
\newcommand\bibstyle@super{\bibpunct{[}{]}{,}{s}{,}{\textsuperscript{,}}}
\newcommand\bibstyle@inline{\bibpunct{[}{]}{,}{n}{,}{,}}
\newcommand\bibstyle@authoryear{\bibpunct{(}{)}{;}{a}{,}{,}}
\@namedef{bibstyle@author-year}{\bibstyle@authoryear}
%
% 几种种引用样式,与 \file{bst} 文件名保持一致,
% 这样在使用 \cs{bibliographystyle} 选择参考文献表的样式时也会设置对应的引用样式。
\@namedef{bibstyle@thesis-numerical}{\bibstyle@super}
%
% 如果载入 `natbib` 前设置了 `cite-style`,这里先进行配置。
% https://github.com/ustctug/ustcthesis/issues/327
\ifx\ustc@cite@style\@empty\else
\citestyle{\ustc@cite@style}%
\fi
%
% 定义接口 cite-style 切换引用样式。
\ustc@option@hook{cite-style}{%
\citestyle{\ustc@cite@style}%
}
%
% 如果文献序号作为叙述文字的一部分,需要临时将文献序号与正文平排
\DeclareRobustCommand\inlinecite{\@inlinecite}
\def\@inlinecite#1{\begingroup\let\@cite\NAT@citenum\citep{#1}\endgroup}
%
% 修改引用的样式。
% 这里在 filehook 中无法使用 \cs{patchcmd},所以只能手动重定义。
%
% 将 super 式 \cs{citep} 引用的页码置于括号外。
\renewcommand\NAT@citesuper[3]{%
\ifNAT@swa
\if*#2*\else
#2\NAT@spacechar
\fi
% \unskip\kern\p@\textsuperscript{\NAT@@open#1\NAT@@close}%
% \if*#3*\else\NAT@spacechar#3\fi\else #1\fi\endgroup}
\unskip\kern\p@
\textsuperscript{%
\NAT@@open#1\NAT@@close
\if*#3*\else#3\fi
}%
\kern\p@
\else
#1%
\fi
\endgroup
}
%
% 将 numbers 式 \cs{citep} 引用的页码置于括号外并改为上标。
\renewcommand\NAT@citenum[3]{%
\ifNAT@swa
\NAT@@open
\if*#2*\else
#2\NAT@spacechar
\fi
% #1\if*#3*\else\NAT@cmt#3\fi\NAT@@close
#1\NAT@@close
\if*#3*\else
\textsuperscript{#3}%
\fi
\else
#1%
\fi
\endgroup
}
%
% 在 filehook 中无法使用 \cs{patchcmd},所以只能手动重定义。
\def\NAT@citexnum[#1][#2]#3{%
\NAT@reset@parser
\NAT@sort@cites{#3}%
\NAT@reset@citea
\@cite{\def\NAT@num{-1}\let\NAT@last@yr\relax\let\NAT@nm\@empty
\@for\@citeb:=\NAT@cite@list\do
{\@safe@activestrue
\edef\@citeb{\expandafter\@firstofone\@citeb\@empty}%
\@safe@activesfalse
\@ifundefined{b@\@citeb\@extra@b@citeb}{%
{\reset@font\bfseries?}
\NAT@citeundefined\PackageWarning{natbib}%
{Citation `\@citeb' on page \thepage \space undefined}}%
{\let\NAT@last@num\NAT@num\let\NAT@last@nm\NAT@nm
\NAT@parse{\@citeb}%
\ifNAT@longnames\@ifundefined{bv@\@citeb\@extra@b@citeb}{%
\let\NAT@name=\NAT@all@names
\global\@namedef{bv@\@citeb\@extra@b@citeb}{}}{}%
\fi
\ifNAT@full\let\NAT@nm\NAT@all@names\else
\let\NAT@nm\NAT@name\fi
\ifNAT@swa
\@ifnum{\NAT@ctype>\@ne}{%
\@citea
\NAT@hyper@{\@ifnum{\NAT@ctype=\tw@}{\NAT@test{\NAT@ctype}}{\NAT@alias}}%
}{%
\@ifnum{\NAT@cmprs>\z@}{%
\NAT@ifcat@num\NAT@num
{\let\NAT@nm=\NAT@num}%
{\def\NAT@nm{-2}}%
\NAT@ifcat@num\NAT@last@num
{\@tempcnta=\NAT@last@num\relax}%
{\@tempcnta\m@ne}%
\@ifnum{\NAT@nm=\@tempcnta}{%
\@ifnum{\NAT@merge>\@ne}{}{\NAT@last@yr@mbox}%
}{%
\advance\@tempcnta by\@ne
\@ifnum{\NAT@nm=\@tempcnta}{%
% 在顺序编码制下,\pkg{natbib} 只有在三个以上连续文献引用才会使用连接号,
% 这里修改为允许两个引用使用连接号。
% 参考 https://tex.stackexchange.com/a/86991/82731 。
%
% \ifx\NAT@last@yr\relax
% \def@NAT@last@yr{\@citea}%
% \else
% \def@NAT@last@yr{--\NAT@penalty}%
% \fi
\def@NAT@last@yr{-\NAT@penalty}%
}{%
\NAT@last@yr@mbox
}%
}%
}{%
\@tempswatrue
\@ifnum{\NAT@merge>\@ne}{\@ifnum{\NAT@last@num=\NAT@num\relax}{\@tempswafalse}{}}{}%
\if@tempswa\NAT@citea@mbox\fi
}%
}%
\NAT@def@citea
\else
\ifcase\NAT@ctype
\ifx\NAT@last@nm\NAT@nm \NAT@yrsep\NAT@penalty\NAT@space\else
\@citea \NAT@test{\@ne}\NAT@spacechar\NAT@mbox{\NAT@super@kern\NAT@@open}%
\fi
\if*#1*\else#1\NAT@spacechar\fi
\NAT@mbox{\NAT@hyper@{{\citenumfont{\NAT@num}}}}%
\NAT@def@citea@box
\or
\NAT@hyper@citea@space{\NAT@test{\NAT@ctype}}%
\or
\NAT@hyper@citea@space{\NAT@test{\NAT@ctype}}%
\or
\NAT@hyper@citea@space\NAT@alias
\fi
\fi
}%
}%
\@ifnum{\NAT@cmprs>\z@}{\NAT@last@yr}{}%
\ifNAT@swa\else
% 将 numerical 式 \cs{citet} 引用的页码置于括号外并改为上标。
%
% \@ifnum{\NAT@ctype=\z@}{%
% \if*#2*\else\NAT@cmt#2\fi
% }{}%
\NAT@mbox{\NAT@@close}%
\@ifnum{\NAT@ctype=\z@}{%
\if*#2*\else
\textsuperscript{#2}%
\fi
}{}%
\NAT@super@kern
\fi
}{#1}{#2}%
}%
%
% 将 author-year 式 \cs{citep} 引用的页码置于括号外并改为上标:
\renewcommand\NAT@cite%
[3]{\ifNAT@swa\NAT@@open\if*#2*\else#2\NAT@spacechar\fi
% #1\if*#3*\else\NAT@cmt#3\fi\NAT@@close\else#1\fi\endgroup}
#1\NAT@@close\if*#3*\else\textsuperscript{#3}\fi\else#1\fi\endgroup}
%
% 调整 author-year 式 \cs{citet} 引用的页码。
\def\NAT@citex%
[#1][#2]#3{%
\NAT@reset@parser
\NAT@sort@cites{#3}%
\NAT@reset@citea
\@cite{\let\NAT@nm\@empty\let\NAT@year\@empty
\@for\@citeb:=\NAT@cite@list\do
{\@safe@activestrue
\edef\@citeb{\expandafter\@firstofone\@citeb\@empty}%
\@safe@activesfalse
\@ifundefined{b@\@citeb\@extra@b@citeb}{\@citea%
{\reset@font\bfseries ?}\NAT@citeundefined
\PackageWarning{natbib}%
{Citation `\@citeb' on page \thepage \space undefined}\def\NAT@date{}}%
{\let\NAT@last@nm=\NAT@nm\let\NAT@last@yr=\NAT@year
\NAT@parse{\@citeb}%
\ifNAT@longnames\@ifundefined{bv@\@citeb\@extra@b@citeb}{%
\let\NAT@name=\NAT@all@names
\global\@namedef{bv@\@citeb\@extra@b@citeb}{}}{}%
\fi
\ifNAT@full\let\NAT@nm\NAT@all@names\else
\let\NAT@nm\NAT@name\fi
\ifNAT@swa\ifcase\NAT@ctype
\if\relax\NAT@date\relax
\@citea\NAT@hyper@{\NAT@nmfmt{\NAT@nm}\NAT@date}%
\else
\ifx\NAT@last@nm\NAT@nm\NAT@yrsep
\ifx\NAT@last@yr\NAT@year
\def\NAT@temp{{?}}%
\ifx\NAT@temp\NAT@exlab\PackageWarningNoLine{natbib}%
{Multiple citation on page \thepage: same authors and
year\MessageBreak without distinguishing extra
letter,\MessageBreak appears as question mark}\fi
\NAT@hyper@{\NAT@exlab}%
\else\unskip\NAT@spacechar
\NAT@hyper@{\NAT@date}%
\fi
\else
\@citea\NAT@hyper@{%
\NAT@nmfmt{\NAT@nm}%
\hyper@natlinkbreak{%
\NAT@aysep\NAT@spacechar}{\@citeb\@extra@b@citeb
}%
\NAT@date
}%
\fi
\fi
\or\@citea\NAT@hyper@{\NAT@nmfmt{\NAT@nm}}%
\or\@citea\NAT@hyper@{\NAT@date}%
\or\@citea\NAT@hyper@{\NAT@alias}%
\fi \NAT@def@citea
\else
\ifcase\NAT@ctype
\if\relax\NAT@date\relax
\@citea\NAT@hyper@{\NAT@nmfmt{\NAT@nm}}%
\else
\ifx\NAT@last@nm\NAT@nm\NAT@yrsep
\ifx\NAT@last@yr\NAT@year
\def\NAT@temp{{?}}%
\ifx\NAT@temp\NAT@exlab\PackageWarningNoLine{natbib}%
{Multiple citation on page \thepage: same authors and
year\MessageBreak without distinguishing extra
letter,\MessageBreak appears as question mark}\fi
\NAT@hyper@{\NAT@exlab}%
\else
\unskip\NAT@spacechar
\NAT@hyper@{\NAT@date}%
\fi
\else
\@citea\NAT@hyper@{%
\NAT@nmfmt{\NAT@nm}%
\hyper@natlinkbreak{\NAT@spacechar\NAT@@open\if*#1*\else#1\NAT@spacechar\fi}%
{\@citeb\@extra@b@citeb}%
\NAT@date
}%
\fi
\fi
\or\@citea\NAT@hyper@{\NAT@nmfmt{\NAT@nm}}%
\or\@citea\NAT@hyper@{\NAT@date}%
\or\@citea\NAT@hyper@{\NAT@alias}%
\fi
\if\relax\NAT@date\relax
\NAT@def@citea
\else
\NAT@def@citea@close
\fi
\fi
}}\ifNAT@swa\else
% 将 author-year 式 \cs{citet} 引用的页码置于括号外并改为上标。
%
% \if*#2*\else\NAT@cmt#2\fi
\if\relax\NAT@date\relax\else\NAT@@close\fi
\if*#2*\else\textsuperscript{#2}\fi
\fi}{#1}{#2}}
%
% 为了将参考文献加入目录和 pdf 书签,重新定义 \pkg{natbib} 的 \cmd{bibsection}
% 另外如果调用了 \pkg{chapterbib} 或者使用了 \opt{sectionbib} 参数,
% 需要使用节标题 \cs{section}。
\newcommand\ustc@bib@chapter{%
\@mainmatterfalse
\chapter{\bibname}%
}%
\newcommand\ustc@bib@section{%
\begingroup
\ctexset{section/numbering=false}%
\section{\bibname}%
\endgroup
}%
\@ifpackagewith{chapterbib}{sectionbib}{%
\ustc@error{The "sectionbib" option cannot be used with chaperbib if natbib loaded}%
}{}%
\@ifpackageloaded{chapterbib}{%
\let\bibsection\ustc@bib@section
}{%
\@ifxundefined\NAT@sectionbib{%
\let\bibsection\ustc@bib@chapter
}{%
\let\bibsection\ustc@bib@section
}%
}%
%
% 参考文献列表格式:宋体 10.5 磅,行距 20 磅,续行缩进两字,左对齐。
% 本科生依然是小四宋体。
\renewcommand\bibfont{%
\ifustc@degree@graduate
\fontsize{10.5bp}{20bp}\selectfont
\else
\normalsize
\fi
}
\setlength{\bibsep}{0\p@ \@plus.2\p@}
\renewcommand\@biblabel[1]{[#1]\hfill}
\setlength{\bibhang}{2\ccwd}
}
% biblatex 宏包的配置
\AtEndOfPackageFile*{biblatex}{
\DeclareRobustCommand\inlinecite{\parencite}
\defbibheading{bibliography}[\bibname]{%
\@mainmatterfalse
\chapter{\bibname}%
}
\renewcommand\bibfont{%
\ifustc@degree@graduate
\fontsize{10.5bp}{20bp}\selectfont
\else
\normalsize
\fi
}
\setlength{\bibitemsep}{0\p@ \@plus.2\p@}
\setlength{\bibhang}{2\ccwd}
}
% \subsection{附录}
% 定义了一个满足要求的致谢环境:
\newenvironment{acknowledgements}{%
\@mainmatterfalse
\chapter{\ustc@acknowledgements@name}%
}{
\ifustc@degree@bachelor
\par
\null\par
\begingroup
\raggedleft
\ustc@date@zh@short\par
\endgroup
\fi
}
% 兼容旧版本中“acknowledgments”的拼法。
% Reserved for compatibility until 2020-07-01.
\newenvironment{acknowledgments}{%
\begin{acknowledgements}%
}{%
\end{acknowledgements}%
}
% 发表成果环境:
\newenvironment{publications}{%
\@mainmatterfalse
\chapter{\ustc@publication@name}%
}{}
% \subsection{其他宏包的设置}
% 这些宏包并非格式要求,但是为了方便同学们使用,在这里进行简单设置。
% \subsubsection{\pkg{hyperref} 宏包}
\AtEndOfPackageFile*{hyperref}{
\hypersetup{
bookmarksnumbered = true,
bookmarksopen = true,
bookmarksopenlevel = 1,
linktoc = all,
unicode = true,
psdextra = true,
}
%
% 如果为 \opt{pdf} 样式,设置 hyperlink 颜色
\ifustc@output@electronic
\hypersetup{
colorlinks = true,
allcolors = blue,
}
\else
\hypersetup{hidelinks}
\fi
%
% 填写 PDF 元信息。
\AtBeginDocument{
\hypersetup{
pdftitle = \ustc@title,
pdfauthor = \ustc@author,
}
}
%
% 添加 PDF 书签
%
\newcounter{ustc@bookmarknumber}
\renewcommand\ustc@pdfbookmark[1]{%
\phantomsection
\stepcounter{ustc@bookmarknumber}%
\pdfbookmark[0]{#1}{ustcchapter.\theustc@bookmarknumber}%
}
%
% 在 PDF 字符串中去掉换行,以减少 \pkg{hyperref} 的警告信息。
\pdfstringdefDisableCommands{
\let\\\@empty
\let\hspace\@gobble
}
%
% \pkg{hyperref} 与 \pkg{unicode-math} 存在一些兼容性问题,见
% \href{https://github.com/ustctug/ustcthesis/issues/223}{%
% ustctug/ustcthesis\#223}
% \href{https://github.com/ho-tex/hyperref/pull/90}{ho-tex/hyperref\#90} 和
% \href{https://github.com/ustctug/ustcthesis/issues/235}{%
% ustctug/ustcthesis/\#235}。
\@ifpackagelater{hyperref}{2019/04/27}{}{%
\g@addto@macro\psdmapshortnames{\let\mu\textmu}%
}
%
% 设置中文的 \cs{autoref}。
% \footnote{\url{https://tex.stackexchange.com/a/66150/82731}}
\ifustc@language@chinese
\def\equationautorefname~#1\null{公式~(#1)\null}
\def\footnoteautorefname{脚注}
\def\itemautorefname~#1\null{第~#1~项\null}
\def\figureautorefname{}
\def\tableautorefname{}
\def\partautorefname~#1\null{第~#1~部分\null}
\def\appendixautorefname{附录}
\def\chapterautorefname~#1\null{第~#1~章\null}
\def\sectionautorefname~#1\null{第~#1~节\null}
\def\subsectionautorefname~#1\null{第~#1~小节\null}
\def\subsubsectionautorefname~#1\null{第~#1~小小节\null}
\def\paragraphautorefname~#1\null{第~#1~段\null}
\def\subparagraphautorefname~#1\null{第~#1~小段\null}
\def\theoremautorefname{定理}
\def\HyRef@autopageref#1{\hyperref[{#1}]{第~\pageref*{#1}}}
\fi
%
% 本科生需要在 \tableofcontents 处切换 \pagenumbering
% 在使用了 notoccite 后会导致 PDF 书签的页码有误(#293
% 所以需要补充 https://tex.stackexchange.com/a/593839/82731 的 patch。
% LuaTeX 不需要这个 patch。
\ifXeTeX
\def\HyPL@StorePageLabel#1{%
\begingroup
\edef\Hy@tempa{\the\Hy@abspage<<#1>>}%
\immediate\write\@mainaux{%
\string\HyPL@Entry{\Hy@tempa}%
}%
\endgroup
}
\fi
}
% \subsubsection{\pkg{amsthm} 宏包}
\AtEndOfPackageFile*{amsthm}{
\newtheoremstyle{ustcplain}
{}{}
{}{2\ccwd}
{\bfseries}{}
{\ccwd}{}
\theoremstyle{ustcplain}
% 定义新的定理
\ifustc@language@chinese
\newcommand\ustc@assertion@name{断言}
\newcommand\ustc@assumption@name{假设}
\newcommand\ustc@axiom@name{公理}
\newcommand\ustc@corollary@name{推论}
\newcommand\ustc@definition@name{定义}
\newcommand\ustc@example@name{}
\newcommand\ustc@lemma@name{引理}
\newcommand\ustc@proof@name{证明}
\newcommand\ustc@proposition@name{命题}
\newcommand\ustc@remark@name{}
\newcommand\ustc@theorem@name{定理}
\else
\newcommand\ustc@assertion@name{Assertion}
\newcommand\ustc@assumption@name{Assumption}
\newcommand\ustc@axiom@name{Axiom}
\newcommand\ustc@corollary@name{Corollary}
\newcommand\ustc@definition@name{Definition}
\newcommand\ustc@example@name{Example}
\newcommand\ustc@lemma@name{Lemma}
\newcommand\ustc@proof@name{Proof}
\newcommand\ustc@proposition@name{Proposition}
\newcommand\ustc@remark@name{Remark}
\newcommand\ustc@theorem@name{Theorem}
\fi
\newtheorem{theorem} {\ustc@theorem@name} [chapter]
\newtheorem{assertion} [theorem]{\ustc@assertion@name}
\newtheorem{axiom} [theorem]{\ustc@axiom@name}
\newtheorem{corollary} [theorem]{\ustc@corollary@name}
\newtheorem{lemma} [theorem]{\ustc@lemma@name}
\newtheorem{proposition}[theorem]{\ustc@proposition@name}
\newtheorem{assumption} {\ustc@assumption@name} [chapter]
\newtheorem{definition} {\ustc@definition@name} [chapter]
\newtheorem{example} {\ustc@example@name} [chapter]
\newtheorem*{remark} {\ustc@remark@name}
% \pkg{amsthm} 单独定义了 proof 环境,这里重新定义以满足格式要求。
% 原本模仿 \pkg{amsthm} 写成 |\item[\hskip\labelsep\hskip2\ccwd #1\hskip\ccwd]|
% 但是却会多出一些间隙。
\renewenvironment{proof}[1][\ustc@proof@name]{\par
\pushQED{\qed}%
\normalfont \topsep6\p@\@plus6\p@\relax
\trivlist
\item\relax\hskip2\ccwd
\textbf{#1}
\hskip\ccwd\ignorespaces
}{%
\popQED\endtrivlist\@endpefalse
}
\renewcommand\qedsymbol{\ustc@qed}
}
% \subsubsection{\pkg{algorithm2e} 宏包}
% 按章节编号。
\PassOptionsToPackage{algochapter}{algorithm2e}
\AtEndOfPackageFile*{algorithm2e}{
\ifustc@language@chinese
\SetAlgorithmName{算法}{算法}{算法清单}
\else
\SetAlgorithmName{Algorithm}{Algorithm}{List of Algorithms}
\fi
%
% 设置算法环境的格式。
\SetAlCapSkip{6bp}
\SetAlCapFnt{\small}
\SetAlCapNameFnt{\small}
\ifustc@degree@graduate
\SetAlCapNameSty{textbf}
\fi
\SetAlgoCaptionSeparator{\unskip\hspace*{\ccwd}}
%
% 设置算法清单的格式
\renewcommand\listofalgocfs{%
\ifustc@degree@graduate
\cleardoublepage
\fi
\ustc@chapter{\listalgorithmcfname}%
\@starttoc{loa}%
}
\titlecontents{algocf}
[2.3em]{\normalsize}
{\contentslabel{2.3em}}{}
{\ustc@leaders\contentspage}
\contentsuse{algocf}{loa}
}
% \subsubsection{\pkg{mathtools} 宏包}
% \pkg{mathtools} 会修改 \pkg{unicode-math} 的 `\underbrace` 和 `\overbrace`
% 需要还原为 `\LaTeXunderbrace` 和 `\LaTeXoverbrace`
% 参考 \url{https://tex.stackexchange.com/q/521394/82731}。
\AtEndOfPackageFile*{mathtools}{
\@ifpackageloaded{unicode-math}{
\let\underbrace\LaTeXunderbrace
\let\overbrace\LaTeXoverbrace
}{}
}
% \subsubsection{\pkg{nomencl} 宏包}
\AtEndOfPackageFile*{nomencl}{
\let\nomname\ustc@notation@name
\def\thenomenclature{%
\ifustc@degree@graduate
\cleardoublepage
\pagestyle{headings}%
\fi
\ustc@chapter{\ustc@notation@name}%
\nompreamble
\list{}{%
\labelwidth\nom@tempdim
\leftmargin\labelwidth
\advance\leftmargin\labelsep
\itemsep\nomitemsep
\let\makelabel\nomlabel}}
\def\endthenomenclature{%
\endlist
\nompostamble
\ifustc@degree@graduate
\clearpage
\pagestyle{plain}%
\fi
}
}
% \subsubsection{\pkg{siunitx} 宏包}
\AtEndOfPackageFile*{siunitx}{
\newcommand\ustc@set@siunitx@language{%
\ifustc@language@chinese
\sisetup{
list-final-separator = { 和~},
list-pair-separator = {},
range-phrase = {},
}%
\else
\sisetup{
list-final-separator = {, and },
list-pair-separator = { and },
range-phrase = { to },
}%
\fi
}
\ustc@set@siunitx@language
\ustc@option@hook{language}{\ustc@set@siunitx@language}
}
% \subsubsection{\pkg{chapterbib} 宏包}
\AtEndOfPackageFile*{chapterbib}{
\@ifpackageloaded{natbib}{%
\@ifpackagewith{chapterbib}{sectionbib}{%
\ustc@error{The "sectionbib" option cannot be used with chaperbib if natbib loaded}%
}{}%
\renewcommand\bibsection{%
\begingroup
\ctexset{section/numbering=false}%
\section{\bibname}%
\endgroup
}
}{}
}