-
Notifications
You must be signed in to change notification settings - Fork 208
基本模板
Yu Hao edited this page Mar 31, 2019
·
8 revisions
下面是一份理工科适用的基本模板。请自行删改。更加详细的设置,请仔细阅读fduthesis的模板使用手册。
另外还需要准备一个reference.bib
文件,放在这个文件的「旁边」。
\documentclass[type=master, twoside]{fduthesis}
% 本科生:type=bachelor
% 硕士:type=master ,学硕/专硕在后面设置
% 博士: type=doctor
% 提交校审建议用oneside
% 自己打印建议用twoside
\fdusetup{
style = {
% font = times*,
% cjk-font=sourcehan,
% font-size = 5,
% fullwidth-stop = mapping,
% footnote-style = pifont*,
% auto-make-cover = false,
% logo = {../logo/pdf/fudan-name-black.pdf},
% logo-size = {2cm,2cm,2cm}
hyperlink = none,
% hyperlink-color = default,
bib-backend = bibtex,
bib-style = numerical,
bib-resource = {reference.bib}
},
info = {
title = {使用深度神经网络玩星际争霸},
title* = {Playing StarCraft with Deep Learning},
date = {2099年9月9日},
author = {乔布斯},
author* = {Busi Qiao},
supervisor = {盖茨 \quad 教授},
instructors = {
盖茨 \quad 教授\quad\quad\quad\quad, % 一个\quad差不多等同于一个中文字符的宽度
库克 \quad 青年研究员
},
major = {炼丹应用技术},
department = {炼丹学院},
% degree = professional, % 默认为学硕,加上这句变专硕
% secret-level = ii,
% secret-year = {三年},
student-id = {16210000000},
keywords = {苹果手机, 英伟达显卡, 人工智障},
keywords* = {iPhone, Nvidia, AI},
clc = {TP391}
}
}
% 默认情况下,正文之前的页码是小写罗马字母。
% 如果希望改成大写罗马字母,加上下面6行内容:
\makeatletter
\renewcommand\frontmatter{%
\cleardoublepage
\@mainmatterfalse
\pagenumbering{Roman}}
\makeatother
\begin{document}
\raggedbottom
\chapter*{评审委员会名单} % 带星号的章节不会被标号,也就是说不会显示成“第 X 章 评审委员会名单”
霍去病
川普
\chapter*{中英文对照表}
MEME 梗
LOL 笑
\frontmatter
\tableofcontents
\begin{abstract}
我是中文摘要
\end{abstract}
\begin{abstract*}
我是英文摘要
\end{abstract*}
\begin{notation}[lp{20em}] % 符号表
$\sin$ & 正弦 \\
API & 应用程序编程接口 \\
$c$ & 光速 \\
$P$ & 概率 \\
$T$ & 时间 \\
$v$ & 速度
\end{notation}
\mainmatter
% 如果不喜欢将所有内容全都写在同一个文件里,
% 可以使用 \input{some-other-file} 来包含其他文件
\chapter{绪论}
\section{研究背景与意义}
因为要炫酷
\section{本文的研究内容}
如何自动玩星际
\section{本文的主要贡献}
我们搞了个大新闻
\section{本文的组织结构}
本文共分为五个章节,其中每个章节的内容组织如下:
第一章为绪论。
第二章为相关方法概述。
第三章详细介绍本文提出的方法。
第四章为实验和分析。
第五章为总结与展望。
\chapter{相关方法概述}
\section{某某方法1}
\subsection{某某方法1的特点1}
\subsection{某某方法1的特点2}
\section{某某方法2}
\section{本章小结}
\chapter{自己提出的方法}
反正说了你们也不懂,先画张图:
% \begin{figure}
% \begin{center}
% \includegraphics[width=\textwidth]{images/概念示意图.pdf}
% \caption{
% 概念示意图
% }
% \label{img:what_is_it}
% \end{center}
% \end{figure}
\chapter{实验及分析}
我们XJB做了一堆实验
\chapter{总结与展望}
\section{工作总结}
反正……我们输给人类了。
\section{未来展望}
为荣誉而战!
% \nocite{*} % 这一句,可以将你的bib文件中的所有文献全都放到 参考文献 列表。如果不需要,请去掉这一句
\backmatter
%\bibliography{reference} % 在写作的时候可以打开这一句,这样编辑器就能有bib文件的自动提示了。但是编译之前请关掉
\printbibliography % 这一句,生成 参考文献列表
\chapter{致谢}
感谢自己能耐心写完
感谢你们能耐心读完
\chapter{攻读硕⼠学位期间的研究成果}
\begin{enumerate}
\item 成果1
\item 成果2
\end{enumerate}
\chapter{攻读硕⼠学位期间参与的项目}
这里列出项目
\end{document}
更加详细的设置,请仔细阅读fduthesis的模板使用手册。