不含文字的乳胶图片标题

不含文字的乳胶图片标题

可能重复:
如果图片标题为空,则删除冒号

我想添加一张带标题的图片Figure 1,但不添加任何附加文字。我想要自动编号。

如果我这样做

\begin{figure}[h!]
  \caption{}
  \includegraphics{graphics}
\end{figure}

我得到的Figure 1:结果看起来很丑陋。

我只想Figure 1在文本中说明。我会在其他地方解释该图的含义。我可以这样做吗?

答案1

caption自动执行此操作。

\documentclass{article}
\pagestyle{empty}
\usepackage{caption}
\begin{document}

\begin{figure}[h]
  \centering
  \caption{}
\end{figure}

\begin{figure}[h]
  \centering
  \caption{Test}
\end{figure}

在此处输入图片描述

相关内容