NJUST南京理工大学硕士博士论文模板2024
Author
Tingwei Wang
Last Updated
před 18 dny
License
Creative Commons CC BY 4.0
Abstract
--bibtex format, English spelling font, cover fixed
%%%%% ------------------------------------------------------------------------------------------
%%
%% Document Template
%%
%% Project Name: njustThesis
%% Repository: https://github.com/jiec827/njustThesis
%%
%%%%% ------------------------------------------------------------------------------------------
%% re-written by Jie Cheng <jie.cheng@aliyun.com>
%% Last-modified: 2015-01-05
%%
%% This program can be redistributed and/or modified under the terms
%% of the GNU Public License, version 2.
%%%%% ------------------------------------------------------------------------------------------
%%
%%%%*************************Document Class Declaration*******************************
%%
\documentclass{sty/njustThesis}% thesis template of the Nanjing Univ of Sci & Tech
%% Options:
%% [draftinfo] % show draft version information
%%%%% --------------------------------------------------------------------------------
%%
%%%%**************************Command Define and Settings***************************
%%
\makeatletter
\def\@textbottom{\vskip \z@ \@plus 10pt}
\let\@texttop\relax
\makeatother
\usepackage[njust]{sty/commons}% common settings
\usepackage{sty/custom}% user defined commands
% wtw comment two lines below:
%\usepackage[numerical]{bib/gbt7714}
%\usepackage{fancyhdr, hyperref}
\usepackage{latexsym}
\usepackage{pifont}
\usepackage{braket} % for Dirac notation
\usepackage{multirow}
\usepackage{longtable}
%\usepackage{mathpazo}
% WTW2024 修改字体
\setmainfont{Times New Roman} % 常规英文字体
\usepackage{siunitx} % 单位
%\input{tex/macros.tex} % WTW2024 一些变量名或上下标的宏包,如无请注释
%%%%% ------------------------------------------------------------------------------------------
%%%%*********************************Content**********************************************
%%
\pdfstringdefDisableCommands{%
\let\enspace\empty % this causes the warning for \kern
\let\noindent\empty % this causes the warning for \indent
\let\hskip\empty
}
\begin{document}
%%
%%%%% ------------------------------------------------------------------------------------------
%%
%%%%*********************************Frontmatter******************************************
%%
%% Frontmatter of Title page, Table of contents, Preface chapter.
%%
%% >>> Cover
%%
\input{tex/cover}
%%
%% >>> start frontmatter page No.
%%
\frontmatter
%%
%% >>> Abstract
%%
\input{tex/abstract}
%%
%%% >>> List of Content
%%
%\clearpage
\tableofcontents% contents catalog
\addcontentsline{toc}{chapter}{目录}
%% list figures and tables sperately
%\listoffigures% figures catalog
%\addcontentsline{toc}{chapter}{插图目录}
%\listoftables% tables catalog
%\addcontentsline{toc}{chapter}{表格目录}
% list figures and tables together
% 王廷伟 硕士论文 注释掉图表目录
\listoffiguresandtables
\addcontentsline{toc}{chapter}{图表目录}
%%
% {\centering\printnomenclature}% nomenclature catalog
% \addcontentsline{toc}{chapter}{术语表}
%%
%%%%% ------------------------------------------------------------------------------------------
%%
%%%%*********************************Mainmatter******************************************
%%
%% Main topics.
\mainmatter
%%
%%% >>> Main Contents
%%
\input{tex/introduction}%
\input{tex/chap2}%
\input{tex/chap3}%
\input{tex/chap4}%
\input{tex/chap5}%
\input{tex/thanks}
%\input{tex/appendix}%
%%%%% ------------------------------------------------------------------------------------------
%%
%%%%*********************************Appendix********************************************
%%
%% Some subordinate chapters.
%\input{tex/appendix}%
%%%%% ------------------------------------------------------------------------------------------
%%
%%%%********************************Backmatter*******************************************
%%
%% Matters of Bibliography, Glossary, Index.
\backmatter
%%
%%% >>> Acknowledgements
%%
%%
%%% >>> Bibliography
%%
%\bibliographystyle{bib/GBT7714}
% WTW2024 编译前开放上一行
%\bibliographystyle{bib/bnubibn}
%这里需要注意,如果参考文献前有一面空白页(偶数页),则使用\cleardoublepage
%如果参考文献前,没有空白页,则使用\clearpage,这是保证目录里参考文献页码正确,以单数页开始
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{参考文献}
{\centering\bibliography{bib/references}}
%%
%%% >>> Publications
%%
%\appendix
\input{tex/appendix}%
\input{tex/publications}
%%
%%% >>> Resume
%%
%%% >>> Resume
%%
%\input{tex/resume}
%%
\end{document}
%%%%%