Latex 目錄

Latex 目錄
\renewcommand{\contentsname}{Table of Contents}
\maxtocdepth{subsection}
 \tableofcontents*
\addtocontents{toc}{\par\nobreak \mbox{}\hfill{\bf Page}\par\nobreak}
\clearpage
%
\listoftables
\addtocontents{lot}{\par\nobreak\textbf{{\scshape Table} \hfill Page}\par\nobreak}
\clearpage
%
\listoffigures
\addtocontents{lof}{\par\nobreak\textbf{{\scshape Figure} \hfill Page}\par\nobreak}
\clearpage
%
\addcontentsline{toc}{section}{\textbf Acronym}
 \section*{Acronym}

在此輸入影像描述

在這裡我想要的是“縮寫”線就像“表格列表”“人物清單”。 (更改縮排並刪除虛線)

我該如何解決這個問題?

答案1

\documentclass...如果您提供了一個 MWE(從到\end{document}),我們​​可以編譯它來顯示您的問題,這將會有很大幫助。例如,您如何獲得目錄中顯示的“圖表列表”?

也許正在嘗試

\addcontentsline{toc}{chapter}{\textbf Acronym}

而不是將其添加為一個部分會有所幫助。

相關內容