Unverified Commit 44a9ed53 authored by liziwl's avatar liziwl Committed by GitHub
Browse files

Merge pull request #30 from SUSTech-CRA/2022-dev

2022 届模版优化
parents bef17913 df7099aa
Loading
Loading
Loading
Loading

.vscode/settings.json

0 → 100644
+56 −0
Original line number Diff line number Diff line
{
    "latex-workshop.intellisense.package.enabled": true,
    "latex-workshop.intellisense.unimathsymbols.enabled": true,
    "latex-workshop.latex.autoBuild.run": "onSave",
    "latex-workshop.latex.build.forceRecipeUsage": true,
    "latex-workshop.latex.recipes": [
        {
            "name": "latexmk for sustechthesis",
            "tools": [
                "xetex-sustechthesis",
                "latexmk-xelatex"
            ]
        },
        {
            "name": "make thesis",
            "tools": [
                "make-thesis"
            ]
        }
    ],
    "latex-workshop.latex.tools": [
        {
            "name": "xetex-sustechthesis",
            "command": "xetex",
            "args": [
                "-file-line-error",
                "-halt-on-error",
                "-interaction=nonstopmode",
                "sustechthesis.ins"
            ],
            "env": {}
        },
        {
            "name": "latexmk-xelatex",
            "command": "latexmk",
            "args": [
                "-xelatex",
                "-file-line-error",
                "-halt-on-error",
                "-interaction=nonstopmode",
                "-synctex=1",
                "-pv-",
                "-pvc-",
                "-outdir=%OUTDIR%",
                "%DOCFILE%"
            ],
            "env": {}
        },
        {
            "name": "make-thesis",
            "command": "make",
            "args": [],
            "env": {}
        }
    ]
}
+1 −0
Original line number Diff line number Diff line
@@ -54,6 +54,7 @@ test: cls FORCE_MAKE
clean:
	$(LATEXMK) -c $(PACKAGE).dtx $(THESIS)
	-@$(RM) -rf *~ main-survey.* main-translation.* _markdown_sustechthesis* sustechthesis.markdown.* _markdown_thuthesis* thuthesis.markdown.*
	-@$(RM) -rf *.aux *.bbl *.blg

cleanall: clean
	-@$(RM) $(CLSFILE)
+2 −2
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@

  % 关键词用“英文逗号”分隔,输出时会自动处理为正确的分隔符
  \thusetup{
    keywords = {关键词 1, 关键词 2, 关键词 3, 关键词 4, 关键词 5},
    keywords = {关键词 1, 关键词 2, 关键词 3, 关键词 4, 长长长长长长长长长长长长长长长长长长长长长长长长长关键词 5},
  }
\end{abstract}

@@ -34,6 +34,6 @@

  % Use comma as seperator when inputting
  \thusetup{
    keywords* = {keyword 1, keyword 2, keyword 3, keyword 4, keyword 5},
    keywords* = {keyword 1, keyword 2, keyword 3, keyword 4, looooooooooooooooooooong keyword 5},
  }
\end{abstract*}
+4 −5
Original line number Diff line number Diff line
% !TeX root = ../sustechthesis-example.tex

% 中文使用{结\quad 论}(\quad 为空格不可删除),英文使用{CONCLUSION}作为章节标题。

\chapter{\quad}
% \chapter{CONCLUSION}
\begin{conclusion}

学位论文的结论作为论文正文的最后一章单独排写,但不加章标题序号。

结论应是作者在学位论文研究过程中所取得的创新性成果的概要总结,不能与摘要混为一谈。博士学位论文结论应包括论文的主要结果、创新点、展望三部分,在结论中应概括论文的核心观点,明确、客观地指出本研究内容的创新性成果(含新见解、新观点、方法创新、技术创新、理论创新),并指出今后进一步在本研究方向进行研究工作的展望与设想。对所取得的创新性成果应注意从定性和定量两方面给出科学、准确的评价,分(1)、(2)、(3)…条列出,宜用“提出了”、“建立了”等词叙述。

\end{conclusion}
+1 −0
Original line number Diff line number Diff line
% !TeX root = ../sustechthesis-example.tex

% denotation 环境带一个可选参数,用来指定符号列的宽度(默认为 2.5cm),下面改3cm为例。
\begin{denotation}[3cm]
  \item[PI] 聚酰亚胺
  \item[MPI] 聚酰亚胺模型化合物,N-苯基邻苯酰亚胺
Loading