没有图号,也没有图题标题和摘要

没有图号,也没有图题标题和摘要

我想删除图片文本和图片编号,但我甚至无法删除编号。有人知道如何轻松做到这一点吗?

\documentclass[a6paper, 12pt]{memoir}
\begin{document}
\begin{figure*}
    \caption{foo}
\end{figure*}
\end{document}

在此处输入图片描述

答案1

您可以加载该caption包,它提供了一个名为的宏\caption*,并替换

\caption{foo}

\caption*{foo}

答案2

以下说明了如何执行此操作memoir

% memfigprob.tex  SE 571318
\documentclass[a6paper, 12pt]{memoir}
\newcommand{\fcaption}[1]{{\centering #1\par}%
  \addcontentsline{lof}{figure}{#1}%  % delete this if no LoF entry needed
  }
\begin{document}
\pagestyle{plain}
\listoffigures

\begin{figure*}
\centering
THIS IS A PICTURE
    \caption{foo}
\fcaption{achoo}
\end{figure*}
\end{document}

我已经定义了\fcaption在 中使用,figure它可以做你想做的事,而且与caption包不同,它\caption*还会在 LoF 中放置一个条目。您可以对表格中的标题进行类似操作(例如\tcaption对 LoT 条目进行适当的更改)。如果您不受 LoF 或 LoT 条目的困扰,那么\fcaption没有 也\addcontentsline...可以。在此处输入图片描述

在此处输入图片描述

相关内容