我正在使用 LaTeX 进行演示,并且我不想有标有“图 1:”等的标题,因此我遵循了此页面的帮助:
\setbeamertemplate{caption}{\raggedright\insertcaption\par}
运行正常,我只得到了标题,前面没有“Figure:”。但是,当我加载包subcaption
(我需要它,因为我还要制作子图)时,上述命令停止工作,并在标题前显示“Figure:”。有没有办法使用包subcaption
,同时在演示中摆脱它们?
答案1
如果您想使用该subcaption
包,您可以使用该包的机制caption
来改变字幕的外观
\documentclass{beamer}
\usepackage[labelformat=empty]{caption}
\usepackage{subcaption}
\begin{document}
\begin{frame}
\begin{figure}
\caption{text}
\end{figure}
\end{frame}
\end{document}