I'm having the following problem on the beamer:
The resulting frame does not enumerate the figure, ie,
I would like "Figure 1:" to appear instead of "Figure:". I am placing the commands I am using, but if it is placed as \documentclass{article} it enumerates normally.
\documentclass{beamer}
\usepackage{color}
\usepackage[portuguese]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amssymb,amsmath} %para usar simbolos matematicos
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage{amscd}
\usepackage{beamerthemesplit}
\usepackage{graphicx}
\usepackage{float}
\usepackage{ragged2e}
\usepackage{tikz}
\begin{document}
\begin{frame}
\begin{figure}[!htb]
\includegraphics[scale=0.5]{fig0}
\caption{Esquematização do problema.}
\end{figure}
\end{frame}
\end{document}
Thanks for your help.
floatpackage nor float placements like[!htb]in beamer, in beamerfigureis a non-floating environment anyway (and float placements will be ignored). – Jan 08 '21 at 19:24