如何删除图片标题中的数字

如何删除图片标题中的数字

假设我有一个文档,其中只有一个图,并且我不希望该图被标记为“图 1:”,而只标记为“图:”

我怎样才能做到这一点?

我试过:

\begin{figure*}

但没用!我也试过

\def\figurename{Figure}

但也没有用

答案1

您没有提供更多详细信息,因此我假设您正在使用该类article。在这种情况下,您可以通过发出 将图形编号重新定义为空\renewcommand{\thefigure}{}

编辑:

如果还需要删除冒号前的额外空格,则可以轻松修改上述命令来弥补这一点:

\renewcommand{\thefigure}{\hspace{-.333333em}}

以下是一个例子:

\documentclass{article}
\usepackage{graphicx}
\renewcommand{\thefigure}{}
\begin{document}

\begin{figure}[h!]
\centering
\includegraphics[height=2cm]{example-image}
\caption{This is the first figure}
\end{figure}

\begin{figure}[h!]
\centering
\includegraphics[height=2cm]{example-image}
\caption{And this is the second one}
\end{figure}

\end{document}

在此处输入图片描述

答案2

加载caption包裹这使得您可以使用\caption*。然后您可以插入前缀Figure:

在此处输入图片描述

\documentclass{article}

\usepackage{graphicx,caption}

\begin{document}

\begin{figure}
  \centering
  \includegraphics[height=2cm]{example-image}
  \caption*{Figure: This is the first figure}
\end{figure}

\end{document}

相关内容