制作论文附录

制作论文附录

我需要一些帮助来为我的论文创建附录。我有大约 10 个图需要放在附录中。我有一个很好的附录,其中包含以下代码:

\appendix 
\addcontentsline{toc}{chapter}{APPENDICES}

\chapter{XXXX}

我有一个主文件,我在最后一章之后thesis.tex调用此文件。问题是:appendix.tex

  1. 附录开始时除了章节编号外没有任何说明它是附录A,但我想在附录开始之前有一个单独的页面写着“附录”,或者在第一个附录页的顶部明确写着“附录”。
  2. 现在我使用\chapter{}命令来获取附录的标题,但我认为附录中只有一个章节。是否有命令可以使标题位于章节中?

答案1

附录可以在这里使用包;tocpage包选项以及appendices环境将满足您的需要:

\documentclass{book}
\usepackage[toc,page]{appendix}

\begin{document}
\tableofcontents

\chapter{Regular Chapter}
\begin{appendices}
\chapter{Some Appendix}
The contents...
\end{appendices}

\end{document}

答案2

下面是我使用的另一种解决方案。

\appendix
\section{\\Title of Appendix A}
% the \\ insures the section title is centered below the phrase: AppendixA

Text of Appendix A is Here

\section{\\Title of Appendix B}
% the \\ insures the section title is centered below the phrase: Appendix B

Text of Appendix B is Here

答案3

\begin{document}
\bibliographystyle{phBYU}
\bibliographystyle{unsrt}
\maketitle
\begin{abstract}
% add abstract
\end{abstract}
\begin{acknowledgements}
% add acknowledgement
\end{acknowledgements}
\tableofcontents
\listoffigures
\listoftables
  \addtolength{\parskip}{10pt}
\chapter{\uppercase {Introduction}} %%add your chapter 1 title here
\setcounter{page}{1}
\pagenumbering{arabic}
\label{chapter1}
\input{chapter1} % filename in curly brackets
% add more chapters
\clearpage
**\appendix
\chapter{Name of Appendix A}
\label{whatever}
\input{appendixA} % filename in curly brackets
\chapter{Name of Appendix B}
\label{whatever}
\input{appendixB} % filename in curly brackets**
\clearpage
\phantomsection
\addcontentsline{toc}{chapter}{BIBLIOGRAPHY}
 \bibliographystyle{phBYU}
\bibliographystyle{unsrt}
\bibliography{phd}

答案4

如果您尝试执行此操作但没有得到预期的输出...请验证声明的位置\backmatter。您必须在最后一个附录部分之后或\end{document}语句的正上方输入。

相关内容