summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/fduthesis/fduthesis-template.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/fduthesis/fduthesis-template.tex')
-rw-r--r--Master/texmf-dist/doc/latex/fduthesis/fduthesis-template.tex259
1 files changed, 259 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/fduthesis/fduthesis-template.tex b/Master/texmf-dist/doc/latex/fduthesis/fduthesis-template.tex
new file mode 100644
index 00000000000..810de971784
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/fduthesis/fduthesis-template.tex
@@ -0,0 +1,259 @@
+% \iffalse meta-comment
+%
+% Copyright (C) 2017, 2018 by Xiangdong Zeng <xdzeng96@gmail.com>
+%
+% This work 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:
+%
+% http://www.latex-project.org/lppl.txt
+%
+% and version 1.3 or later is part of all distributions of
+% LaTeX version 2005/12/01 or later.
+%
+% This work has the LPPL maintenance status `maintained'.
+%
+% The Current Maintainer of this work is Xiangdong Zeng.
+%
+% \fi
+
+%>********************************************************************
+%> 重要提示:
+%> 1. 请确保使用 UTF-8 编码保存
+%> 2. 请使用 XeLaTeX 或 LuaLaTeX 编译
+%> 3. 请仔细阅读用户文档
+%> 4. 修改、使用、发布本文档请务必遵循 LaTeX Project Public License
+%> 5. 不需要的注释可以尽情删除
+%>********************************************************************
+
+\documentclass{fduthesis}
+%> 模板选项:
+%> type = doctor|master|bachelor 论文类型,默认为本科论文
+%> oneside|twoside 论文的单双面模式,默认为 twoside
+%> draft = true|false 是否开启草稿模式,默认关闭
+%> 带选项的用法示例:
+%> \documentclass[oneside]{fduthesis}
+%> \documentclass[twoside, draft=true]{fduthesis}
+%> \documentclass[type=bavhelor, twoside, draft=true]{fduthesis}
+
+\fdusetup{
+ %> 参数设置
+ %> 允许采用两种方式设置选项:
+ %> 1. style/... = ...
+ %> 2. style = { ... = ... }
+ %> 注意事项:
+ %> 1. 不要出现空行
+ %> 2. “=” 两侧的空格【会】被忽略
+ %> 3. “/” 两侧的空格【不会】被忽略
+ %> 4. 请使用英文逗号 “,” 分隔选项
+ %
+ %> style 类用于设置论文格式
+ style = {
+ % font = times,
+ %> 西文字体(包括数学字体)
+ %> 允许选项:
+ %> font = libertinus|lm|palatino|times|none
+ %
+ % cjk-font = fandol,
+ %> 中文字体
+ %> 允许选项:
+ %> cjk-font = adobe|fandol|founder|mac|windows|none
+ %
+ %> 注意:
+ %> 1. 中文字体设置高度依赖于系统。各系统建议方案:
+ %> windows:cjk-font = windows
+ %> mac: cjk-font = mac
+ %> linux: cjk-font = fandol(默认值)
+ %> 2. 除 fandol 外,其余字体均为商用字体,请注意版权问题
+ %> 3. 但 fandol 字体缺字比较严重
+ %> 4. 这里中西文字体设置均注释掉了,即使用默认设置:
+ %> font = times
+ %> cjk-font = fandol
+ %> 5. 使用 font = none / cjk-font = none 关闭默认字体设置,需手动进行配置
+ %
+ font-size = 5,
+ %> 字号
+ %> 允许选项:
+ %> font-size = -4|5
+ %
+ fullwidth-stop = catcode,
+ %> 是否把全角实心句点 “.” 作为默认的句号形状
+ %> 允许选项:
+ %> fullwidth-stop = catcode|mapping|false
+ %> 解释:
+ %> catcode 【显式】的 “。” 会被替换为 “.”(e.g. 不包括用宏定义保存的 “。”)
+ %> mapping 【所有】的 “。” 会被替换为 “.”(使用 LuaLaTeX 编译则无效)
+ %> false 不进行替换
+ %
+ % footnote-style = pifont,
+ %> 脚注编号样式
+ %> 允许选项:
+ %> footnote-style = plain|libertinus|libertinus*|libertinus-sans|
+ %> pifont|pifont*|pifont-sans|pifont-sans*|
+ %> xits|xits-sans|xits-sans*
+ %
+ % hyperlink = color,
+ %> 超链接样式
+ %> 允许选项:
+ %> hyperlink = border|color|none
+ %
+ % hyperlink-color = default,
+ %> 超链接颜色
+ %> 允许选项:
+ %> hyperlink-color = default|classic|elegant|fantasy|material|
+ %> business|science|summer|autumn|graylevel|prl
+ %
+ logo = {../logo/pdf/fudan-name-black.pdf},
+ % logo = {fudan-name.pdf}, %> 图片与本文件放在同一目录
+ % logo = {figure/fudan-name.pdf}, %> 图片放在 figure/ 目录
+ %> 封面中的校名图片
+ %
+ % logo-size = {0.5\textwidth}, %> 只设置宽度
+ % logo-size = {{}, 3cm}, %> 只设置高度
+ % logo-size = {8cm, 3cm}, %> 设置宽度和高度
+ %> 设置校名图片的大小
+ %> 通常不需要调整
+ %
+ % auto-make-cover = true
+ %> 是否自动生成论文封面(封一)、指导小组成员名单(封二)和声明页(封三)
+ %> 除非特殊需要(e.g. 不要封面),否则不建议设为 false
+ },
+ %
+ %> info 类用于录入论文信息
+ info = {
+ title = {论文标题},
+ %> 中文标题
+ %> 长标题建议使用 “\\” 命令手动换行(不是指在源文件里输入回车符,当然
+ %> 源文件里适当的换行可以有助于代码清晰):
+ %> title = {最高人民法院、最高人民检察院关于适用\\
+ %> 犯罪嫌疑人、被告人逃匿、死亡案件违法所得\\
+ %> 没收程序若干问题的规定},
+ %
+ title* = {Thesis Title},
+ %> 英文标题
+ %
+ author = {你的名字},
+ %> 作者姓名
+ %
+ % author* = {Your name},
+ %> 作者姓名(英文 / 拼音)
+ %> 目前不需要填写
+ %
+ supervisor = {某某某\quad 教授},
+ %> 导师
+ %> 姓名与职称之间可以用 \quad 打印一个空格
+ %
+ major = {物理学},
+ %> 专业
+ %
+ department = {物理系},
+ %> 院系
+ %
+ student-id = {12300000000},
+ %> 作者学号
+ %
+ % date = {2018 年 1 月 1 日},
+ %> 日期
+ %> 注释掉表示使用编译日期
+ %
+ % secret-level = ii,
+ %> 密级
+ %> 允许选项:
+ %> secret-level = none|i|ii|iii
+ %> 解释:
+ %> none 不显示密级与保密年限
+ %> i 秘密
+ %> ii 机密
+ %> iii 绝密
+ %
+ % secret-year = {五年},
+ %> 保密年限
+ %> secret-level = none 时该选项无效
+ %
+ instructors = {
+ {张\quad 三 \quad 工程师},
+ {李\quad 四 \quad 工程师},
+ {王五六 \quad 讲\quad 师}
+ },
+ %> 指导小组成员
+ %> 使用英文逗号 “,” 分隔
+ %> 如有需要,可以用 \quad 手工对齐
+ %
+ keywords = {不确定关系, 量子力学, 理论物理},
+ %> 中文关键字
+ %> 使用英文逗号 “,” 分隔
+ %
+ keywords* = {Uncertainty principle, quantum mechanics, theoretical physics},
+ %> 英文关键字
+ %> 使用英文逗号 “,” 分隔
+ %
+ clc = {O413.1}
+ %> 中图分类号
+ }
+}
+
+\begin{document}
+
+% \raggedbottom
+%> 这个命令用来关闭版心底部强制对齐,可以减少不必要的 underfull \vbox 提示,但会影响排版效果
+
+\frontmatter
+%> 前置部分包含目录、中英文摘要以及符号表等
+
+\tableofcontents
+%> 目录
+
+\begin{abstract}
+ 中文摘要
+\end{abstract}
+
+\begin{abstract*}
+ English abstract
+\end{abstract*}
+
+\begin{notation}
+ $x$ & 坐标 \\
+ $p$ & 动量 \\
+ $\psi(x)$ & 波函数 \\
+ $\langle x |$ & 左矢(bra) \\
+ $| x \rangle$ & 右矢(ket) \\
+ $\langle\alpha|\beta\rangle$ & 内积 \\
+\end{notation}
+%> 符号表
+%> 语法与 LaTeX 表格一致:列用 & 区分,行用 \\ 区分
+%> 如需修改格式,可以使用可选参数:
+%> \begin{notation}[ll]
+%> $x$ & 坐标 \\
+%> $p$ & 动量
+%> \end{notation}
+%> 可选参数与 LaTeX 标准表格的列格式说明语法一致
+%> 这里的 “ll” 表示两列均为自动宽度,并且左对齐
+
+\mainmatter
+%> 主体部分是论文的核心
+%> 建议采用多文件编译的方式
+%> 比较好的做法是把每一章放进一个单独的 tex 文件里,并在这里用 \include 导入,例如
+%> \include{chapter1}
+%> \include{chapter2}
+%> \include{chapter3}
+
+\chapter{介绍}
+
+\section{量子力学历史概要}
+
+\section{研究对象}
+
+\section{研究方法}
+
+\chapter{核心定理证明}
+
+\chapter{总结与展望}
+
+\backmatter
+%> 后置部分包含参考文献、声明页(自动生成)等
+
+% \printbibliography
+%> 打印参考文献列表
+
+\end{document}