61 lines
1.9 KiB
TeX
61 lines
1.9 KiB
TeX
% !TEX root = ../thuthesis-example.tex
|
|
|
|
\chapter{补充内容}
|
|
|
|
附录是与论文内容密切相关、但编入正文又影响整篇论文编排的条理和逻辑性的资料,例如某些重要的数据表格、计算程序、统计表等,是论文主体的补充内容,可根据需要设置。
|
|
|
|
附录中的图、表、数学表达式、参考文献等另行编序号,与正文分开,一律用阿拉伯数字编码,
|
|
但在数码前冠以附录的序号,例如“图~\ref{fig:appendix-figure}”,
|
|
“表~\ref{tab:appendix-table}”,“式\eqref{eq:appendix-equation}”等。
|
|
|
|
|
|
\section{插图}
|
|
|
|
% 附录中的插图示例(图~\ref{fig:appendix-figure})。
|
|
|
|
\begin{figure}
|
|
\centering
|
|
\includegraphics[width=0.6\linewidth]{example-image-a.pdf}
|
|
\caption{附录中的图片示例}
|
|
\label{fig:appendix-figure}
|
|
\end{figure}
|
|
|
|
|
|
\section{表格}
|
|
|
|
% 附录中的表格示例(表~\ref{tab:appendix-table})。
|
|
|
|
\begin{table}
|
|
\centering
|
|
\caption{附录中的表格示例}
|
|
\begin{tabular}{ll}
|
|
\toprule
|
|
文件名 & 描述 \\
|
|
\midrule
|
|
thuthesis.dtx & 模板的源文件,包括文档和注释 \\
|
|
thuthesis.cls & 模板文件 \\
|
|
thuthesis-*.bst & BibTeX 参考文献表样式文件 \\
|
|
thuthesis-*.bbx & BibLaTeX 参考文献表样式文件 \\
|
|
thuthesis-*.cbx & BibLaTeX 引用样式文件 \\
|
|
\bottomrule
|
|
\end{tabular}
|
|
\label{tab:appendix-table}
|
|
\end{table}
|
|
|
|
|
|
\section{数学表达式}
|
|
|
|
% 附录中的数学表达式示例(式\eqref{eq:appendix-equation})。
|
|
\begin{equation}
|
|
\frac{1}{2 \uppi \symup{i}} \int_\gamma f = \sum_{k=1}^m n(\gamma; a_k) \mathscr{R}(f; a_k)
|
|
\label{eq:appendix-equation}
|
|
\end{equation}
|
|
|
|
|
|
\section{文献引用}
|
|
|
|
附录\cite{dupont1974bone}中的参考文献引用\cite{zhengkaiqing1987}示例
|
|
\cite{dupont1974bone,zhengkaiqing1987}。
|
|
|
|
\printbibliography
|