胶乳清单

时间:2014-12-05 22:24:08

标签: latex pdflatex

所以我试图在封面图片中隐藏标签。

>\begin{figure}        
>\center        
>\includegraphics[scale=0.5]{universidade}        
>\caption* {Mycaption}        
>\end {figure}       

这种方式并没有标注数字,但没有显示在数字列表中 请帮忙; D

2 个答案:

答案 0 :(得分:0)

您可以为标题包提供选项labelformat=empty以禁止图1等标记:

\usepackage[labelformat=empty]{caption}

您可以使用方括号指定图表列表的说明,并使用大括号表示实际的图表标题。所以我认为你应该能够执行以下操作来抑制标题但仍然在图表列表中有一个条目:

\begin{figure}        
\center        
\includegraphics[scale=0.5]{universidade}        
\caption[Mycaption]{}        
\end {figure}       

答案 1 :(得分:0)

有两种选择,具体取决于您完全符合以下条件:

enter image description here

\documentclass{article}

\usepackage{graphicx}
\setcounter{topnumber}{3}% Just for this example
\begin{document}

\listoffigures

\begin{figure}
  \addcontentsline{lof}{figure}{Example image A}%
  \centering
  \includegraphics[height=4\baselineskip]{example-image-a}

  Example image A
\end{figure}

\begin{figure}
  \addcontentsline{lof}{figure}{\protect\numberline{}Example image B}%
  \centering
  \includegraphics[height=4\baselineskip]{example-image-b}

  Example image B
\end{figure}

\begin{figure}
  \centering
  \includegraphics[height=4\baselineskip]{example-image-c}
  \caption{Example image C}
\end{figure}

\end{document}

使用\addcontentsline{lof}{figure}{<caption>}添加图标题,其中<caption>可以包含空白\numberline{},也可以只包含常规标题。上面的例子显示了其中任何一个的用法。

图像中也没有标签显示,但使用caption在LoF中有编号的条目。但是在LoF中有一个带编号的条目和一个未编号的数字似乎很奇怪。