Ich habe diese Präsentation:
\documentclass{beamer}
\usepackage{biblatex}
\bibliography{bib/bibliografia.bib}
\usetheme{Madrid}
\useoutertheme{shadow}
\AtBeginSection[]
{
\begin{frame}<beamer>
\frametitle{Sección \thesection}
\tableofcontents[currentsection,currentsubsection]
\end{frame}
}
\begin{document}
\section{Section 1}
\begin{frame}{Frame 1}
My cite.\cite{testbib}
\end{frame}
\section{Section References}
\begin{frame}{Frame References}
\nocite{testbib}
\printbibliography
\end{frame}
\end{document}
Im Index (ganz oben) wird ein zusätzlicher Titel angezeigt. Wie kann ich ihn verschwinden lassen?
Antwort1
Sie können Folgendes verwenden, \printbibliography[heading=none]
um zu verhindern, dass Biblatex einen neuen Abschnitt beginnt:
\documentclass{beamer}
\usepackage{biblatex}
\bibliography{biblatex-examples.bib}
\usetheme{Madrid}
\useoutertheme{shadow}
\AtBeginSection[]
{
\begin{frame}<beamer>
\frametitle{Sección \thesection}
\tableofcontents[currentsection,currentsubsection]
\end{frame}
}
\begin{document}
\section{Section 1}
\begin{frame}
\frametitle{Frame 1}
My cite.\cite{knuth:ct}
\end{frame}
\section{Section References}
\begin{frame}
\frametitle{Frame References}
\printbibliography[heading=none]
\end{frame}
\end{document}