更改表格列表中的标题

更改表格列表中的标题

我想更改表格列表中的标题,使其与相应表格中的标题不同。我该怎么做?是否有命令可以做到这一点?

答案1

默认\caption提供参数。第一个是可选的,定义表格列表中设置的内容,而后者是必需的,用于设置实际的标题。如果您不提供前者,它将被传递为与后者等效。所以

\caption[<LoT entry>]{<regular caption>}

以下是一个例子:

标题 + LoT

\documentclass{article}
\begin{document}
\tableofcontents
\listoftables
\begin{table}\caption{A table}\end{table}
\begin{table}\caption[Another table]{A table}\end{table}
\end{document}

caption包裹添加可选的星号版本\caption*,设置标题没有标题 (Table ##)。

答案2

你可以写\caption[For the table]{In the main text}

相关内容