pdflatex - Latex List of Figures -
so i'm trying hide label in cover image.
>\begin{figure} >\center >\includegraphics[scale=0.5]{universidade} >\caption* {mycaption} >\end {figure}
this way it's not labeling figure not showing on list of figures please ;d
you can give caption package option labelformat=empty
suppress figure 1 etc. labelling:
\usepackage[labelformat=empty]{caption}
you can use square brackets specify description figure list, , curly brackets actual figure caption. think should able following supress caption still have entry in figure list:
\begin{figure} \center \includegraphics[scale=0.5]{universidade} \caption[mycaption]{} \end {figure}
Comments
Post a Comment