答案1
标准类(、、、book
等)在表格中打印标题为(对于第一个表格)report
article
memoir
Table 1: Caption text
这正是你想要的。你做了什么来防止这种情况发生?
您可以使用该tocloft
包来更改 LoT 中的条目样式。这里有一个 MWE,可以提供您所需的内容。
% captiontocprob.tex SE 545537
\documentclass{report}
\usepackage{tocloft}
\renewcommand{\cfttabpresnum}{Table } % put this before the number
\setlength{\cfttabnumwidth}{4em} % more space needed for Table number
\renewcommand{\cfttabaftersnum}{:} % put this after the table number
\begin{document}
\listoftables
\begin{table}
\centering
A TABLE
\caption{Tables's caption}
\end{table}
\end{document}
阅读tocloft
文档以了解详细信息(texdoc tocloft
)。
如果您能给我们一个 MWE,那将会非常有帮助,这样我们就不必猜测您做了什么;我尽力表现得友善,但我是一个 GOM。