如何在 Beamer 中抑制 BibTeX 的顶部栏?

如何在 Beamer 中抑制 BibTeX 的顶部栏?

我知道线索如何隐藏 Beamer 类中导航栏的引用? 我不想隐藏它,而是想抑制它,让它不出来。我在这个帖子中遇到了这个并发症使用 IEEEtranN 书目样式时,设置引文标注中的作者数量限制

代码

\documentclass{beamer}
\usepackage{natbib}
\useoutertheme{Berlin} % I think not necessary because otherwise just default which is fine
\begin{document}
\begin{frame}
\frametitle{Cesarean Section and Epidemiology}

\begin{itemize}
\item First Modern C-section by Ferdinand Adolf Kehrer 1881. \cite{history_c_section}
\end{itemize}

\bibliographystyle{IEEEtranN}
\bibliography{task}

\end{frame}
\end{document}

任务.bib

@book{ history_c_section,
  author = "Dadebo, Dr. Benjamin",
  year = 2012,
  title = "Begat By God: Understanding the Concept of Being Born Again",
  publisher = "Xlibris Corporation",
  pages = "31–",
  note = "ISBN 978-1-4771-0612-9"
}

我认为顶部栏的处理方式与 beamer 的 section 类似。通常,我会\section*{My Name is Masi}隐藏编号。也许 BibTeX 也能采用类似的方法。

并发症

在此处输入图片描述

如何隐藏顶部栏參考文獻在 Beamer 的 BibTeX 中?

答案1

我建议你添加说明

\useoutertheme{infolines}

加载“柏林”主文档主题后。

有关“外部主题”(包括“信息线”的替代品)的更多信息,请参阅该包的用户指南第 16.2 节beamer

您可能还想考虑切换beamer文档的主文档主题。例如,Rochester主题没有任何导航侧边栏,但其他方面与Berlin主题有些相似。

相关内容