图表无标题编号

图表无标题编号

我想制作一些没有数字的图形。

代替图 1:标题。我想要简单标题。

我尝试过\caption*,但即使使用了caption包升级。

也许还有其他方法可以做到这一点?

答案1

您可以\captionsetup通过以下方式使用该包caption

\documentclass{article}

\usepackage{caption}

\usepackage{graphicx}

\begin{document}

\begin{figure}[h!]
\centering
\includegraphics[height=2cm]{figure}
\caption{Une figure.}
\end{figure}

\begin{figure}[h!]
\centering
\includegraphics[height=2cm]{figure1}
\captionsetup{labelformat=empty}
\caption{Une figure.}
% \addtocounter{figure}{-1} add this if you want the next figure to be numbered 2 
% otherwise it'll be numbered 3
\end{figure}

\end{document}

得出:

截屏

答案2

您还可以\caption*在使用时使用caption包裹仅保留标题。

您可能会做一些其他没有用的事情,但这个例子可以按预期工作:

\documentclass{article}
\usepackage{caption}
\usepackage[demo]{graphicx}
\begin{document}
\begin{figure}[ht]
\centering
\includegraphics{figure1}
\caption*{Caption.}
\end{figure}
\end{document}

答案3

我认为最简单的方法是输入未包含在caption{}命令中的标题。

平均能量损失

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}
  \centering
  \includegraphics[width=0.5\textwidth]{Fig_test.png}
  \caption{This with float name and number}
\end{figure}
\begin{figure}
  \centering
  \includegraphics[width=0.5\textwidth]{Fig_test.png}\par
  This with just the caption
\end{figure}
\end{document}

在此处输入图片描述

相关内容