Удалить лишнее название библиографии из списка разделов

Удалить лишнее название библиографии из списка разделов

У меня есть такая презентация:

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

введите описание изображения здесь

Связанный контент