从图片列表中删除侧边标题

从图片列表中删除侧边标题

如何从图形列表中删除侧面标题?我一直在尝试使用以下代码:

\documentclass[12pt, a4paper]{book}
\usepackage[pdftex]{graphicx}
\usepackage{sidecap}
\begin{document}
\listoffigures
\begin{SCfigure}
\centering
\includegraphics[width=0.5\textwidth]{blank.jpg}
\caption*{Caption}
\end{SCfigure}
\end{document}

但是,添加*within\caption*{Caption}似乎不起作用。相反,在图片列表中,它只是用星号替换了“Caption”一词。

答案1

\caption*由包提供caption。添加

\usepackage{caption}

使其工作。

相关内容