从章节列表中删除额外的参考书目标题

从章节列表中删除额外的参考书目标题

我有这个演示文稿:

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

在此处输入图片描述

相关内容