Estoy usando el paquete beamerposter. Si bien puedo cambiar el tamaño de fuente de mis ecuaciones, no puedo cambiar el tamaño de sus etiquetas correspondientes. Considere el siguiente código como un MWE. ¿Es esto posible arreglarlo?
\documentclass{beamer}
\usepackage{tcolorbox}
\usepackage{beamerposter}
\setlength{\paperwidth}{11in}
\setlength{\paperheight}{8.5in}
\begin{document}
\begin{frame}
\begin{tcolorbox}[width = 0.7\paperwidth]
\begin{tiny}
\begin{equation}
1+1=2
\end{equation}
\end{tiny}
\begin{equation}
1+1=2
\end{equation}
\end{tcolorbox}
\end{frame}
\end{document}
Esto produce:
Respuesta1
beamerposter
contiene una línea
\renewcommand*{\normalfont}{\normalsize}
cual es la causa del problema.
Configuración
\renewcommand*{\normalfont}{\relax}
resuelve localmente el problema.
MWE:
\documentclass{beamer}
\usepackage{tcolorbox}
\usepackage{beamerposter}
\setlength{\paperwidth}{11in}
\setlength{\paperheight}{8.5in}
\begin{document}
\begin{frame}
\begin{tcolorbox}[width = 0.7\paperwidth]
{\renewcommand*{\normalfont}{\relax}
\tiny
\begin{equation}
1+1=2
\end{equation}
}
\begin{equation}
1+1=2
\end{equation}
\end{tcolorbox}
\end{frame}
\end{document}
Si tiene muchas ecuaciones como esa y no desea agregar esa línea cada vez, puede agregar las siguientes líneas en el preámbulo:
\makeatletter
\def\maketag@@@#1{\hbox{\m@th#1}}
\makeatother
de modo que el siguiente MWE produzca el mismo resultado que el anterior:
\documentclass{beamer}
\usepackage{tcolorbox}
\usepackage{beamerposter}
\setlength{\paperwidth}{11in}
\setlength{\paperheight}{8.5in}
\makeatletter
\def\maketag@@@#1{\hbox{\m@th#1}}
\makeatother
\begin{document}
\begin{frame}
\begin{tcolorbox}[width = 0.7\paperwidth]
\begin{equation}
\tiny
1+1=2
\end{equation}
\begin{equation}
1+1=2
\end{equation}
\end{tcolorbox}
\end{frame}
\end{document}