I wanted to change the name in my beamer slide from Part to Theme.
So in the Google BOK if found:
\renewcommand*{\partname}{Theme}
I could not get to work. Then I start to switch off (%) everything that I added and found that:
\usepackage[english]{babel}
is the holder of the key.
An MWE:
\documentclass[compress,infolines,smaller]{beamer}
%\usepackage[english]{babel}
\useinnertheme[shadow=true]{rounded}
\usecolortheme{beaver}
\renewcommand*{\partname}{Theme}
\begin{document}
\AtBeginLecture{
\begin{frame}
\titlepage
\end{frame}
}
\part{Title}
\begin{frame}<beamer>
\partpage
\end{frame}
\section{test1}
\begin{frame}
Test
\end{frame}
\end{document}
Is there a way to get passed this?
\AtBeginDocument{\renewcommand*{\partname}{Theme}}. – Gonzalo Medina Aug 2 '12 at 14:54\begin{document}will work. But in general it is better to get used to the babel syntax\addto\captionsenglish{...}– Ulrike Fischer Aug 2 '12 at 14:59\AtBeginDocumenthint. – lockstep Aug 9 '12 at 10:50\addto\caption...and not move the\renewcommandbehind\begin{document}or in a\AtBeginDokument. – Ulrike Fischer Aug 10 '12 at 7:30