表格无长标题,但图表列表中有短标题

表格无长标题,但图表列表中有短标题

我有一张表格,我不想有标题(根本没有),但我希望能够插入一个简短的标题,以便该表格出现在表格列表中。

我怎样才能做到这一点?

答案1

您可以desc使用以下方式手动将表格插入 LoT:

\addcontentsline{lot}{table}{<desc>}

以下是一个例子:

在此处输入图片描述

\documentclass{article}

\begin{document}

\listoftables

\begin{table}
  \centering This is a table
  \caption{A table with a caption}
\end{table}

\begin{table}
  \centering Here is another table without a caption
  \refstepcounter{table}% Increase the table counter
  \addcontentsline{lot}{table}{\protect\numberline{\thetable}A short caption}
\end{table}

\end{document}

上述配置与命令执行的\addcontentsline操作类似。\caption

相关内容