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