I am creating a poster and for some reason, this doesn't work:
\begin{figure}
\centering
\includegraphics[scale=0.6]{Fig/pic.pdf}\\
\caption{BLAHBALH}
\end{figure}
It doesn't produce any error, it only doesn't show anything in the poster. However this works:
\begin{center}
\includegraphics[scale=0.6]{Fig/pic.pdf}\\
\end{center}
Why?
figureis a floating environment and therefore no use on a poster. Why do you want to use afigurehere? The second approach is just fine. If you need a caption, use the\captionof{figure}{<caption text>}command. – LaRiFaRi Aug 25 '15 at 09:14figureworks fine in abeamer+beamerposterposter (at least it did in my test), is the tag accurate? If this was a recent question I'd ask for a complete example, but I guess the above comment was sufficient answer. – Torbjørn T. Oct 19 '19 at 14:50