表格和表格列表中的标题

表格和表格列表中的标题

我目前使用一种简单的解决方案来获取表格内的标题。但是它不允许将表格列在“\listoftables”中:示例: 在此处输入图片描述
以及代码:

\documentclass[12pt,a4paper]{article}

\begin{document}

\begin{table}
\refstepcounter{table} \label{mytable}
\begin{tabular}{|c|}
\hline
Table \ref{mytable}: The test table\\\hline
contents\\\hline
\end{tabular}
\end{table}

\listoftables

\end{document}

有没有办法让 \listoftables 与我的解决方案配合使用?
感谢您提供任何想法

答案1

这相对简单。查看辅助文件以了解普通字幕是如何做到的。

\documentclass[12pt,a4paper]{article}

\begin{document}

\begin{table}
\refstepcounter{table} \label{mytable}
\addcontentsline{lot}{table}{\string\numberline{\thetable}{The test table}}%
\begin{tabular}{|c|}
\hline
Table \thetable: The test table\\\hline
contents\\\hline
\end{tabular}
\end{table}

\listoftables

\end{document}

相关内容