这是该讨论的后续内容:如何将注入文本添加到目录中,其范围是特定的目录(\tableofcontents 或 \localtableofcontents)?
我想在目录中的某个位置添加一行文本。我的目录目前如下所示
我想在这个位置附近添加文字“页面”
我正在将 PDFLATEX 与文章类结合使用。如果还有其他要求,请告诉我。
答案1
尝试此代码。(无需额外的软件包。)
\documentclass[12pt,a4paper]{article}
\renewcommand{\contentsname}{\bfseries Contents\hfill Page} % added <<<<<<<<<
\begin{document}
\tableofcontents
\newpage
\section{Signature Block}
\section{Record of Revision}
\addcontentsline{toc}{section}{List of Figures}
\listoffigures
\addcontentsline{toc}{section}{List of Tables}
\listoftables
\end{document}
要在下一行添加单词“Page”并更改字体大小,请使用
\renewcommand{\contentsname}{\bfseries Contents\hfill \par \hfill {\normalsize Page}}