我在撰写论文的toc
格式时遇到了两个麻烦,尤其是APPENDIX
和List of Scientific Contribution
。
我正在使用基于Easy Thesis Template
Thesis class
Book
的{{1}}。
toc
中我想要的标题顺序如下:
ABSTRACT
LIST OF FIGURES
LIST OF TABLES
LIST OF ABBREVIATIONS
LIST OF SYMBOLS
CHAPTER 1
CHAPTER 2
CHAPTER 3
.
.
CHAPTER CONCLUSION
RFERENCES
Appendix A: Prepin File
Appendix B: GLYCAM
LIST OF SCIENTIFIC CONTRIBUTION
我遇到的问题是:
问题1):我希望条目Appendix A
为APPENDIX A
我尝试将usepackage[titletoc,title]{appendix}
和\renewcommand{\appendixname}{APPENDIX}
与
\begin{appendices}
\chapter{A: Prepin File}
\Blindtext[4][25] %5 paragraphs, each 3 pangrams
\end{appendices}
但是Appendix
APPENDIX
成为toc
问题2):我在附录(我的大学要求)之后添加了一个名为LIST OF SCIENTIFIC CONTRIBUTION
的新条目。
但是在该页面的标题处,我得到A: Prepin File
,而不是。{/ p>
我试图在附录部分之后插入\mainmatter
,但我从第1页,第2页开始编号,依此类推。
这里我展示了Thesis.tex文件内容:
\documentclass[a4paper, 12pt, oneside, doublespacing]{Thesis} % Use the "Thesis" style, based on the ECS Thesis style by Steve Gunn
\input{Settings/Packages.tex}
\input{Settings/Administrative.tex}
%% ----------------------------------------------------------------
\begin{document}
\frontmatter % Begin Roman style (i, ii, iii, iv...) page numbering
\widowpenalty=500
\clubpenalty=500
%% All the pages before the chapters ------------------------------
\input{Frontpages/Fixed/Title}
%%\newpage
%\input{Frontpages/DeclarationPage.tex}
%\input{Frontpages/Abstract}
%\input{Frontpages/Abstrak}
%\input{Frontpages/Acknowledgements.tex}
%%\newpage
\input{Frontpages/Fixed/TableOfContents.tex}
\input{Frontpages/Fixed/ListOfFigures.tex}
\input{Frontpages/Fixed/ListOfTables.tex}
\input{Frontpages/Abbrev.tex}
\input{Frontpages/Symbols.tex}
%##################################################
%% The Body -------------------------------------------------------
\setstretch{1.3} % Return the line spacing back to 1.3 the whole document.
\mainmatter % Begin normal, numeric (1,2,3...) page numbering
\pagestyle{fancy} % Return the page headers back to the "fancy" style
\newpage
%\include{Chapters/Chapter1}
%\include{Chapters/Chapter2}
\include{Chapters/Chapter3}
%\include{Chapters/Chapter4}
%\include{Chapters/Chapter5}
%\include{Chapters/Chapter6}
%\include{Chapters/Chapter7}
%% Reference---------------------------------------------------
\addtocontents{toc}{\vspace{1em}}
\backmatter % Cue to tell LaTeX that the following 'chapters' are Bibliography
\begingroup
\begin{normalsize}
\bibliographystyle{Files/vjHarvard3}
\renewcommand{\bibname}{References}
\setlength{\bibsep}{10pt}
\setstretch{1}
\bibliography{Backmatters/References/all_thesis_chapters} % The references (bibliography)
\end{normalsize}
\endgroup
% FOR APPENDIX
\include{Backmatters/testAppendix}
\include{Backmatters/testAppendix2}
% List of publication
\addtocontents{toc}{\vspace{1em}}
\input{Backmatters/listofpublication}
\end{document} % The End
我希望得到一些帮助来解决附录和其他页面List of Scientific Contribution
。非常感谢提前。