这是我和接受我的博士论文的大学之间的最后一个难题。
由于某种原因,目录中参考书目条目的页码比任何其他条目都大,我不知道如何更改它。
该文档是使用我所在大学指定的自定义 thesis.cls 文件编译的。我相信这些是文档中的相关行,它们设置了目录不同部分的大小的目录选项。我已验证此部分在编译过程中确实被触及,方法是插入调用typeout
并更改参考书目的拼写。
\else
% \typeout{no cap chapter names}
\renewcommand*{\contentsname}{\th@ChapHead{Contents}}
\renewcommand*{\listfigurename}{\th@ChapHead{Figures}}
\renewcommand*{\listtablename}{\th@ChapHead{Tables}}
\renewcommand*{\appendixname}{\th@ChapHead{Appendix}}
\renewcommand*{\bibname}{\th@ChapHead{Bibliography}}
\renewcommand*{\chaptername}{\th@ChapHead{Chapter}}
\newcommand*{\chapternameToC}{
\normalsize\th@HdFnt Chapter\normalfont}
\newcommand*{\bibnameToC}{
\normalsize\th@HdFnt Bibliography\normalfont}
\newcommand*{\appendixnameToC}{
\normalsize\th@HdFnt Appendix\normalfont}
\fi
这是来自 main.tex 文件的缩写代码。
\documentclass[12pt,modernstyle]{thesis} % Switch to {thesis} for PhD final paper
\begin{document}
\input chapter_introduction.tex
\input chapter_Conclusions.tex
\Urlmuskip=0mu plus 1mu\relax
\bibliographystyle{plain} % or "siam", or "alpha", etc.
\nocite{*} % list all refs in database, cited or not
\bibliography{bibtex_database}
\appendix
\input appendix_Baseline.tex
\input appendix_AR.tex
\end{document}
我正在使用 sublimetext 和 LaTexTools 包编译我的文档。有人知道如何解决这个问题吗?谢谢。