I am getting errors when compiling a LaTeX document with the beamer (v3.13) class when using bold shape in a title section:
\documentclass{beamer}
\begin{document}
\section{The \textbf{Section} Title}
\begin{frame}{Testing frame}
This is a test.
\end{frame}
\end{document}
Compilation with pdflatex gives the error:
! Argument of \@gobble has an extra }.
<inserted text>
\par
l.5 \section{The \textbf{Section} Title}
The error happens when using other font variations like slanted and italic.
Also the command \emph used in a section title gives an error:
! Undefined control sequence.
\beamer@sort #1#2->\long \def \beamer@todo
{#1}\def \beamer@ospec {}\beamer@...
l.5 \section{The \emph{Section} Title}
Are these known bugs or am I missing something? Is there any fix for them?