[Tex/LaTex] How to set beamer Berkeley margins

beamer

Could I know how to set the width of the left margin of the Berkeley theme please? (that is where the section titles appear)

Best Answer

The width of the bar can be set with the width= option passed to the \usetheme{Berkeley} command. In this example I've set it unreasonably wide for demonstration purposes. You can set the size of the text in the sidebar using \setbeamerfont{section in sidebar}{size= ...}.

\documentclass{beamer}
\usetheme[width=2in]{Berkeley} 
\setbeamerfont{section in sidebar}{size=\Huge}

\begin{document}
\begin{frame}{A frame}
\end{frame}
\end{document}

output of code