答案1
您已设置tocloft
标签,因此我假设您使用的文档类与托克洛夫特包裹。
在以下示例中,宏\cftXpagefont
和\cftXafterpnum
-- 其中X
可能是sec
、subsec
、fig
或tab
-- 被重新定义以满足您对节级和小节级 ToC 条目以及图表列表和表格列表中条目的格式目标。
\documentclass{article} % or some other suitable document class
\usepackage{tocloft}
\renewcommand\cftsecpagefont{(}
\renewcommand\cftsubsecpagefont{(}
\renewcommand\cftfigpagefont{(}
\renewcommand\cfttabpagefont{(}
\renewcommand\cftsecafterpnum{)}
\renewcommand\cftsubsecafterpnum{)}
\renewcommand\cftfigafterpnum{)}
\renewcommand\cfttabafterpnum{)}
\begin{document}
\tableofcontents
\listoffigures
\listoftables
\bigskip
\hrule
\section{Hello}
\begin{figure}[h!] \caption{Hello} \end{figure}
\subsection{World}
\begin{table}[ht] \caption{World} \end{table}
\end{document}