如何在目录、图表、背面的表格中用括号写出页码?

如何在目录、图表、背面的表格中用括号写出页码?

在此处输入图片描述

我想要在乳胶中列出目录中的页码、图表列表、用括号括起来的表格

答案1

您已设置tocloft标签,因此我假设您使用的文档类与托克洛夫特包裹。

在以下示例中,宏\cftXpagefont\cftXafterpnum-- 其中X可能是secsubsecfigtab-- 被重新定义以满足您对节级和小节级 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}

相关内容