国科大官方学位论文latex模板git
地址:https://github.com/mohuangrui/ucasthesisgithub
它支持硕士和博士学位论文、博士后出站报告的撰写。ide
如下是使用记录。ui
1、撰写全英文博士后出站报告spa
原模板的默认设置是中文,改成全英文写做,只需如下步骤中的 “步骤1”(“步骤2” 为可选项,实际只执行第1个步骤便可)。code
步骤1:在文件 Thesis.tex 中,将 \documentclass 的参数由默认的 [twoside] 改成 [scheme=plain]:orm
注意:“scheme=” 这几个字也不可省略!!!不能只改为 “[plain]” 的样式!!!!blog
%\documentclass[twoside]{Style/ucasthesis} % 原代码保留,只是注释掉
\documentclass[scheme=plain]{Style/ucasthesis}%[] % 新代码 %- Multiple optional arguments: %- [<oneside|twoside|print>]% oneside eprint, twoside eprint, or paper print %- [fontset=<adobe|...>]% specify font set to replace automatic detection %- [scheme=plain]% thesis writing of international students % 国际生的写做选项 %- [draftversion]% show draft version information %- [standard options for ctex book class: draft|paper size|font size|...]% %---------------------------------------------------------------------------% %->> Document settings
这样设置后,通篇为英文格式,可是,章的编号仍然是 “第x章”,而不是 “Chapter x",还须要执行步骤2,才能获得好看的效果。ip
步骤2(可略去):在文件 ./ucasthesis/Style/ucasthesis.cls 中,增长一句 “name = {Chapter\ }”,以下:ci
...
%---------------------------------------------------------------------------%
%->> Structure layout
%---------------------------------------------------------------------------%
%- chapter
\ctexset {
chapter = {
format = \linespread{1.0}\zihao{4}\bfseries\sffamily\centering,
nameformat = {},
titleformat = {},
number = \arabic{chapter},
numberformat = \rmfamily,
name = {Chapter\ },% 刚加上的,能够从“第×章”,改为“Chapter x”
aftername = \quad,
beforeskip = {7pt},
afterskip = {18pt},
pagestyle = plain,
}
}
...
步骤3:未完待续。