如何隐藏桌子编号,同时将其保留在桌子列表中

如何隐藏桌子编号,同时将其保留在桌子列表中

我希望其中一张表的标题只显示“表”,不显示数字。标题* 似乎不起作用。

此外,我仍然希望它出现在表格列表中。有什么办法吗?

答案1

包中提供了如的caption星号形式,其中星号形式抑制了目录中的编号和条目。\captionlongtable

可以通过 添加表格列表的条目\addcontentsline{lot}{table}{...}。例如,它还支持hyperref

\documentclass{article}
% \usepackage{hyperref}
\usepackage{caption}% for star form: \caption*

\begin{document}
  \listoftables

  \section{My section}
  The beautiful table can be found on page \pageref{fig:my}.

 \begin{table}[hpb]
    \csname phantomsection\endcsname % anchor, if hyperref is loaded
    \centering
    \fbox{My beautiful table}
    \caption*{My table caption}
    \label{fig:my}
    \addcontentsline{lot}{table}{My table caption}
  \end{table}
\end{document}

结果

相关内容