Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

So i'm trying to hide the label in my cover image.

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

This way it's not labeling the figure but its not showing on the list of figures Help please ;D

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
208 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can give the caption package the option labelformat=empty to suppress the Figure 1 etc. labelling:

usepackage[labelformat=empty]{caption}

You can use square brackets to specify the description for the figure list, and curly brackets for the actual figure caption. So I think you should be able to do the following to supress the caption but still have an entry in the figure list:

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...