Tengo esta presentación:
\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}
Muestra un título extra en el índice (en la parte superior). ¿Cómo puedo hacer que desaparezca?
Respuesta1
Puedes utilizar \printbibliography[heading=none]
para evitar que biblatex inicie una nueva sección:
\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}