我在图形环境中包含了一些插图,以便它们可以正确浮动,这样我就可以给它们添加标题,但我不需要计数器。有没有办法抑制这种情况?
\documentclass{memoir}
\usepackage[demo]{graphicx}
\usepackage{float}
\newfloat{illustration}{thp}{lop}
\begin{document}
\begin{illustration}
\begin{center}
\includegraphics[width=3.5in,height=5in]{image001}
\caption{{\large \textbf{Caption}}}
\end{center}
\end{illustration}
\end{document}
答案1
整个答案都参考了回忆录的记录:
您正在使用memoir
。memoir
还提供了命令\newfloat
,因此您不需要包newfloat
。请参阅部分10.1 新的浮动环境
您想要的是 memoir 调用的legend
。因此该命令\legend
可以帮助您。
您可以在文档中找到:
该
\legend
命令旨在用于将匿名标题或图例放入浮动环境,但可以在任何地方使用。
答案2
您可以加载caption
包并使用带星号的版本\caption*
。(该包对于格式化标题也很有用。)
\documentclass{memoir}
\usepackage[demo]{graphicx}
\usepackage{float}
\newfloat{illustration}{thp}{lop}
\usepackage[font={large,bf}]{caption}
\begin{document}
\begin{illustration}
\begin{center}
\includegraphics[width=3.5in,height=5in]{image001}
\caption*{Caption}
\end{center}
\end{illustration}
\end{document}