问题描述
所以我试图将标签隐藏在封面图像中.
So i'm trying to hide the label in my cover image.
>\begin{figure}
>\center
>\includegraphics[scale=0.5]{universidade}
>\caption* {Mycaption}
>\end {figure}
这样它就不会标记图形,而是不会显示在图形列表中请帮助; D
This way it's not labeling the figure but its not showing on the list of figuresHelp please ;D
推荐答案
有两种选择,具体取决于您要执行的操作:
There are a couple of options, depending on what yo're after exactly:
\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{}
,或只是常规标题.上面的示例显示了两者的用法.
The figure caption is added using \addcontentsline{lof}{figure}{<caption>}
, where <caption>
can either contain a blank \numberline{}
, or just the regular caption. The above example shows the usage of either.
也可以在图像中不显示标签,但在LoF中使用标题
.但是在LoF中有一个编号条目和一个未编号的数字似乎很奇怪.
It would also be possible to have no label shows in the image, but have a numbered entry in the LoF using caption
. But it would seem strange to have a numbered entry in the LoF and an unnumbered figure.
这篇关于乳胶图列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!