在目录中添加新条目

在目录中添加新条目

我现在在撰写论文时遇到两个问题,需要一些帮助。

我想在论文末尾添加一个新页面,标题为“科学贡献列表”,并在目录中添加相应的条目。

我正在使用 sharelatex 的 Easy Thesis 模板。

在 Thesis.tex 文件中,我有

\documentclass[a4paper, 12pt, oneside, doublespacing]{Thesis}
\input{Settings/Packages.tex}
\input{Settings/Administrative.tex}
%% ----------------------------------------------------------------
\begin{document}
\frontmatter      % Begin Roman style (i, ii, iii, iv...) page numbering

\widowpenalty=500
\clubpenalty=500

\input{Frontpages/Fixed/Title}
\input{Frontpages/DeclarationPage.tex}
\input{Frontpages/Abstract}
\input{Frontpages/Abstrak}
\input{Frontpages/Acknowledgements.tex}
\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}    % Introduction
%\include{Chapters/Chapter2}    % Literature Review
%\include{Chapters/Chapter3}    % Research Methodology 
%\include{Chapters/Chapter4}    % Paper 1
%\include{Chapters/Chapter5}    % Paper 2
%\include{Chapters/Chapter6}    % PAper 3
\include{Chapters/Chapter7}     % Conclusion
%\include{Chapters/testChap} 
%\include{Chapters/abbreTest}



%% Bibliography ---------------------------------------------------
\backmatter 
\begingroup
\begin{normalsize}
\bibliographystyle{Files/vjHarvard3}
\renewcommand{\bibname}{References}
    \setlength{\bibsep}{10pt}
    \setstretch{1}
\bibliography{Backmatters/References/all_thesis_chapters} \endgroup


\mainmatter

\begin{appendices}
\input{Backmatters/Appendices/Appendix_A} % Appendix Title
\input{Backmatters/Appendices/Appendix_B} % Appendix Title
\end{appendices}

% List of publication
\input{Backmatters/listofpublication}


\end{document}  % The End
%% ----------------------------------------------------------------

我已将新文件放在\input{Backmatters/listofpublication}附录部分之后和\end{document}行之前。

为了测试目的,该文件listofpublication.tex包含如下行:

\clearpage
\addtotoc{LIST OF SCIENTIFIC CONTRIBUTION}
\pagestyle{fancy}
\setstretch{1.3} 
\addtocontents{toc}{\vspace{1em}}
%############################################################################

\chap{List of Scientific Contribution}


\begin{enumerate}
  \item The first item 

  \item The second item

  \item The third etc \ldots
\end{enumerate}

当我遵循这一步骤时,我得到如下输出:

在此处输入图片描述

问题。1) 在输出中,最后一行 ( 2 List of Scientific Contribution) 不应该出现在目录中。但在这里我可以看到它作为最后一行出现。我该如何删除它?

问题 2)我希望目录中的条目Apendix以大写形式显示。

感谢您提供的任何帮助。谢谢。

相关内容