beamer
beamer copied to clipboard
Make beamer botton adjust to button font
Currently, the height of beamer buttons is hard coded in pt. It might be nice to use a font depended unit instead.
\documentclass{beamer}
\setbeamerfont{button}{size=\Huge}
\begin{document}
\begin{frame}
\beamergotobutton{Foo}
\end{frame}
\end{document}
With the upcoming version 1.1 of the tcolorbox inner beamer theme, one can avoid this issue by replacing the beamer buttons with tcboxes:
\documentclass{beamer}
\useinnertheme[
buttons=true,
blocks=false,
titlepage=false
]{tcolorbox}
\setbeamerfont{button}{size=\Huge}
\begin{document}
\begin{frame}
\beamergotobutton{Foo}
\end{frame}
\end{document}