BIT-thesis-LaTex/demo.tex

163 lines
4.5 KiB
TeX
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

%%==================================================
%% demo.tex for BIT Thesis
%% modified by yang yating
%% version: 1.2
%% last update: Jan. 4th, 2018
%%==================================================
% 默认单面打印 oneside 、硕士论文模板 master
\documentclass[oneside, master,normal]{BIT-thesis-grd-jdh}
% 模板选项: 硕士论文 master 博士论文 doctor
% 正常模式normal 自查重模式selfSimilarCheck 盲审模式blindCheck
% 提交学校的查重文件可以直接使用normal模式结果
% 自查重模式主要用于关闭图片、公式等内容的显示以减少文章字符数和降低PDF转word过程中出现的乱码节省查重费用支出。应结合\insertcontents系列命令使用。对于土豪此选项没有任何卵用。。。。。
% 盲审模式主要根据盲审文件格式要求,隐去了作者、导师、致谢等信息,更改发表论文的格式
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 封面
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 中文封面内容(关注内容而不是表现形式)
\classification{TQ028.1} %可参考http://www.clcindex.com/category/TN91/
\UDC{540}
\title{这是一个有英文单词RapidIO的论文标题}
\vtitle{这是一个有英文单词\makeVerticalenWords{RapidIO}的竖排标题}
\author{张三}
\institute{信息与电子学院}
\advisor{**教授}
\chairman{**教授}
\degree{工学硕士(博士)}
\major{电子科学与技术}
\school{北京理工大学}
\defenddate{2019年6月}
%\studentnumber{**********}
% 英文封面内容(关注内容而不是表现形式)
\englishtitle{A Thesis Title with English word RapidIO}
\englishauthor{Zhangsan}
\englishadvisor{Prof. **}
\englishchairman{Prof. **}
\englishschool{Beijing Insititute of Technology}
\englishinstitute{School of Information and Electronics}
\englishdegree{Master}
\englishmajor{Electronics Science and Technology}
\englishdate{62019}
% 封面绘制
\maketitle
% 中文信息
\makeChineseInfo
% 英文信息
\makeEnglishInfo
%打印竖排论文题目
\makeVerticalTitle
% 论文原创性声明和使用授权
\makeDeclareOriginal
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 前置部分
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\frontmatter
% 摘要
\include{chapters/abstract}
%% 符号对照表,可选,如不用可注释掉
\input{chapters/denotation}
% 加入目录
\tableofcontents
%加入图、表索引(同时取消图表索引中章之间的垂直间隔)
%硕士论文貌似不做硬性要求,可不加
\let\origaddvspace\addvspace
\renewcommand{\addvspace}[1]{}
\listoffigures
\listoftables
\renewcommand{\addvspace}[1]{\origaddvspace{#1}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 正主体部分
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\mainmatter
%% 各章正文内容
%\include{chapters/chapter1}
%%%%%%%%%%%%%论文正文部分%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\include{chapters/chapter1/chapter1}
%%%%%%%%%%%%以下部分仅用于举例样式%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{部分新增命令使用示例}
\fbox{自查重模式下使用$\backslash$insert*系列命令指定的内容将不被显示。}\\
\begin{lstlisting}[language={tex}, caption={$\backslash$insert*系列指令使用示例}]
\insertContents{
anything contents....
}
\insertFigure{
\begin{figure}
.......
\end{figure}
}
\insertTable{
\begin{table}
.......
\end{table}
}
\insertEquation{
\begin{equation}
......
\end{equation}
}
\end{lstlisting}
%结论
自查重模式下使用$\backslash$ncite、$\backslash$nupcite、$\backslash$nref命令进行的引用引用标注将不显示。使用方式同$\backslash$cite、$\backslash$upcite、$\backslash$ref。
\include{chapters/conclusion}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 参考文献,五号字,使用 BibTeX包含参考文献文件.bib
%\bibliography{reference/chap1,reference/chap2} %多个章节的参考文献
\bibliography{reference/references}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 后置部分
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 附录(章节编号重新计算,使用字母进行编号)
\appendix
\renewcommand\theequation{\Alph{chapter}--\arabic{equation}} % 附录中编号形式是"A-1"的样子
\renewcommand\thefigure{\Alph{chapter}--\arabic{figure}}
\renewcommand\thetable{\Alph{chapter}--\arabic{table}}
\include{chapters/app1}
\include{chapters/app2}
%(其后部分无编号)
\backmatter
% 发表文章目录
\include{chapters/pub}
% 致谢
\include{chapters/thanks}
% 作者简介(博士论文需要)
\include{chapters/resume}
\end{document}