I would like to add a simple caption "Figure [number]" before an image in my document. If I just use
\begin{figure}[h!]
\centering
\includegraphics[scale=0.5]{galor3.png}
\end{figure}
there is no caption.
If I add
\caption{}
I get the caption "Figure 1.1:". Of course, this code generates a colon, because it expects some caption after the figure number. I would like to have the images numbered without the colon. Is it possible? Thanks
\usepackage{caption}in the preamble – karlkoeller Oct 07 '13 at 16:10[!h]is highly likely to take the figure to the end of the document, or make a bad page break, or both. You should almost always include at leastp– David Carlisle Oct 07 '13 at 16:41I apologize for the duplicate. I always look for duplicates, but this time I've missed it.
Thank you too DavidCarlisle.
– Luigi Oct 09 '13 at 21:37