如何删除图形环境中的编号?

如何删除图形环境中的编号?
\documentclass{beamer}
\usepackage{caption}
\begin{document}
\begin{frame}{Title}
\begin{figure}[ht]
\centering
\includegraphics[width=0.9\linewidth]{picture.jpg}
\caption{Source: something}
\end{figure}
\end{frame}
\end{document}

如何在图形环境中删除标题的编号?我试过了caption*,但没有用。

答案1

这里有一个没有的答案\usepackage{caption}

\documentclass{beamer}

\setbeamertemplate{caption}{%
    \insertcaption\par
}
\setbeamertemplate{caption label separator}{}

\begin{document}

\begin{frame}{Title}
\begin{figure}
\includegraphics[width=0.9\linewidth]{pic}
\caption{Source: something}
\end{figure}
\end{frame}
\end{document}

在此处输入图片描述


评论:

  1. 你不需要\centeringfigures会自动居中beamer
  2. 在没有浮动的情况下documentclass,例如beamer,你不需要使用[ht]

相关内容