单独目录 附录

单独目录 附录

对于我的报告,我需要为附录单独制作目录。联系帮助台后,他们为我提供了此代码,确实有效 :) ;

\usepackage[titles]{tocloft}
\newcommand{\listappendixname}{Contents Appendices}
\newlistof{appendix}{loa}{\listappendixname}

\usepackage{xpatch}

\makeatletter
\apptocmd{\appendix}{
  \xpatchcmd{\ttl@addcontentsline}
    {\addcontentsline{toc}}
    {\addcontentsline{loa}}{}{}
}
\makeatother

在文档正文中:

\appendix
\phantomsection % so that "Appendix" hyperlink in TOC is correct
\addcontentsline{toc}{chapter}{Appendix}
\listofappendix

但是,现在我需要将附录列表中的章节加粗,但部分和小节则不用。有人能帮我怎么做吗?

我尝试过这个,但是没有用;

% Manually adjust the formatting for appendix entries in TOC
\renewcommand{\cftchappresnum}{\textbf} % Make chapter numbers bold
\renewcommand{\cftchapfont}{\bfseries} % Make chapter titles bold

谢谢!' 诚挚的问候,Lea

相关内容