セクションのリストから余分な参考文献のタイトルを削除します

セクションのリストから余分な参考文献のタイトルを削除します

次のようなプレゼンテーションがあります:

\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}

ここに画像の説明を入力してください

関連情報