在标题中评论图片

在标题中评论图片

我想在里面评论一张图片caption{},但我不想在图片表中有评论。所以我用了caption*{}

\begin{figure}[H] \centering
    \includegraphics[height=6cm, width=0.65\textwidth, keepaspectratio]{figure/campione}
    \caption{\textit{text}}\caption*{\textit{comment}}
\end{figure}

我希望在text;之后立即添加注释,因为此代码comment会继续以新行显示。 textcomment情况如何

我多么想要

答案1

这个怎么样?\caption有一个可选参数,您可以使用它在图形列表中获得不同的文本。

输出

在此处输入图片描述

代码

\documentclass[11pt]{article}
\usepackage{graphicx}
\begin{document}
\listoffigures
\begin{figure}[hbt]
  \includegraphics[width=.5\linewidth]{example-image-a}
  \caption[Short caption for LoF]{Really long caption with lots of info}
\end{figure}

\end{document}

相关内容