答案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
这里。