如何在标题外的侧边图中添加文本(使其不会出现在图形列表中)

如何在标题外的侧边图中添加文本(使其不会出现在图形列表中)

如何在\caption命令之外添加侧边标题SCfigure,使其不出现在图片列表中?我试过了,但没有用

\begin{SCfigure}
    \label{fig:my_figure}
    \includegraphics{images/some_image.png}
    \caption{Caption of my figure}
    Here is where i want to elaborate but it will not compile
\end{SCfigure}

答案1

在此处输入图片描述

您可以使用可选参数\caption

\documentclass{article}
\usepackage{sidecap}
\usepackage{graphicx}
\begin{document}
    \listoffigures
    \begin{SCfigure}
        \label{fig:my_figure}
        \includegraphics{image.png}
        \caption[Caption of my figure]{Caption of my figure. Here is what I want to elaborate on.}
    \end{SCfigure}
\end{document}

可选参数(在 中[])是添加到图形列表中的内容,而强制参数(在 中{})是与图形一起显示的内容。这也适用于普通(非侧面)标题。

相关内容