從章節清單中刪除額外的參考書目標題

從章節清單中刪除額外的參考書目標題

我有這個演示:

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

在此輸入影像描述

相關內容