如何在目录中的特定位置添加文本?

如何在目录中的特定位置添加文本?

这是该讨论的后续内容:如何将注入文本添加到目录中,其范围是特定的目录(\tableofcontents 或 \localtableofcontents)?

我想在目录中的某个位置添加一行文本。我的目录目前如下所示

在此处输入图片描述

我想在这个位置附近添加文字“页面”

在此处输入图片描述

我正在将 PDFLATEX 与文章类结合使用。如果还有其他要求,请告诉我。

答案1

尝试此代码。(无需额外的软件包。)

A

\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}} 

d

相关内容