表格列表 - 如何在表格/图表列表中使用冒号(:)

表格列表 - 如何在表格/图表列表中使用冒号(:)

我的论文的正文表格如下:

在此处输入图片描述

但是,我想要文本中表 1 后面带有冒号的标题:

在此处输入图片描述

如果我在标题中添加冒号“:”,我的代码是

\caption{:\textbf{ The Title}}

表格列表页面将有两个“:”

在此处输入图片描述

如何解决?另外,我不需要将“标题”在表格列表页中加粗,但最好将文本加粗。

非常感谢!我将不胜感激。

答案1

标准类(、、、book等)在表格中打印标题为(对于第一个表格)reportarticlememoir

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。

相关内容