\documentclass{sysuthesis}
\sysusetup[option]
{
type = bachelor
% type = master
% type = doctor
}
\sysusetup[style]
{
% cjk-font = windows,
% math-font = newcm
}
\sysusetup[info]
{
title = {标题第一行\\标题第二行},
title* = {first line\\ second line},
keywords = {中山大学, 论文模版, 本科生, 研究生},
keywords* = {SYSU, template, undergraduate, graduate},
student-id = {00000000},
author = {作者名},
author* = {XXX},
department = {数学学院},
department* = {Department of Mathematics},
major = {数学与应用数学},
major* = {Mathematics and Applied Mathematics},
supervisors = {XXX~教授, XXX~教授},
supervisors* = {Prof.~XXX, Prof.~XXX},
% date = {2025/05/31}, % 默认为编译当天
secret-level = {公开}, % 仅研究生
thesis-code = {00000000} % 仅研究生
}
% 参考文献设置: 可选 BibTeX 或 BibLaTeX
\sysusetup[bib]
{
backend = bibtex,
style = gbt7714-numerical,
resource = reference/sysuthesis-sample
}
% \sysusetup[bib]
% {
% backend = biblatex,
% style = gb7714-2015,
% resource = reference/sysuthesis-sample.bib
% }
% 载入其他常用宏包
\usepackage{thmtools} % 数学定理
% \usepackage{keytheorems} % 数学定理
\usepackage{subcaption} % 图片并排
\usepackage{tabularray} % 表格
\UseTblrLibrary{booktabs} % 三线表样式
\usepackage{float} % 浮动体
\usepackage[ruled]{algorithm2e} % 算法
\usepackage{minted} % 代码
\begin{document}
\maketitle
\frontmatter
\input{chapters/abstract.tex}
\tableofcontents
\mainmatter
\input{chapters/chapter1.tex}
\input{chapters/chapter2.tex}
\appendix
\input{chapters/appendix.tex}
\input{chapters/acknowledgements.tex}
\end{document}