从目录中删除参考书目

从目录中删除参考书目

我正在做一个演讲,我有一个相当长的参考书目。我这样做是这样的:

\begin{thebibliography}{10} \addcontentsline{toc}{chapter}{\bibname}

\bibitem{Numerical Semigroups and Applications}
    \textsc{Assi, A., D'Anna, M., Garc\'ia-S\'anchez, P.A.}: Numerical semigroups and applications. \textit{Springer}, Switzerland, 2016.

\end{thebibliography}

但是条目更多。我也在使用 \setbeamertemplate{bibliography item}[text]。问题是,在目录页上,我得到了这个:

在此处输入图片描述

我不想要那个丑陋的参考书目。我想要一个更漂亮的(格式化为前两个项目)或者,如果不可能的话,什么都没有。有人能帮我吗?

答案1

删除\addcontentsline{toc}{chapter}{\bibname}并使用普通部分。对于较长的参考书目,您需要使用以下选项allowframebreaks

\begin{frame}[allowframebreaks]{Bibliography} 
  \begin{thebibliography}{10} 
    \bibitem{Numerical Semigroups and Applications}
      \textsc{Assi, A., D'Anna, M., Garc\'ia-S\'anchez, P.A.}: Numerical semigroups and applications. \textit{Springer}, Switzerland, 2016.
  \end{thebibliography}
\end{frame}

相关内容