图表列表,更改标题名称

图表列表,更改标题名称

我正在尝试列出图表但是在标题方面遇到了一些问题。

由于我在标题中解释了一些事情,所以有些图片的名称很长,但我不想在图片列表中显示这些名称。我该如何更改?

附上一张现在的样子。我只希望它以“2.6 比例控制”为例。

在此处输入图片描述

答案1

\caption命令还有一个可选参数,\caption[''short'']{''long''}用于表格列表或图表列表。

通常,简短描述用于标题列表,详细描述将放在图形或表格旁边。如果标题很长,而图形/表格列表中只需要“一行”描述,则这尤其有用。

以下是此用法的一个示例:

\documentclass{article}

\usepackage{graphicx}

\begin{document}

\listoffigures

\begin{figure}[!ht]
  \centering
    \includegraphics[width=0.5\textwidth]{example-image-a}
    \caption[Image A]{Image A : describe it here.}
\end{figure}

\begin{figure}[!ht]
  \centering
      \includegraphics[width=0.5\textwidth]{example-image-b}
  \caption[Image B]{Image B : describe it here.}
\end{figure}


\end{document}

希望这能有所帮助。您可以找到有关\caption 这里。

相关内容