我希望其中一张表的标题只显示“表”,不显示数字。标题* 似乎不起作用。
此外,我仍然希望它出现在表格列表中。有什么办法吗?
答案1
包中提供了如的caption
星号形式,其中星号形式抑制了目录中的编号和条目。\caption
longtable
可以通过 添加表格列表的条目\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}