次のようなプレゼンテーションがあります:
\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}
インデックス(上部)に余分なタイトルが表示されます。これを消すにはどうしたらよいでしょうか。
答え1
\printbibliography[heading=none]
biblatex が新しいセクションを開始するのを防ぐには、次のようにします。
\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}