2

I know the thread How to hide references from navigation bar in beamer class? I do not want to hide it but suppress it such that it does not come out. I got this complication in this thread Set limit on number of authors in citation call-out when using the IEEEtranN bibliography style.

Code

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

task.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"
}

I think the top-bar is handled like section by beamer. Normally, I do \section*{My Name is Masi} to hide the numbering. Probably, a similar procedure could work somehow with BibTeX.

Complication

enter image description here

How to Suppress the top bar refereces in BibTeX of Beamer?

1 Answers1

2

I suggest you add the instruction

\useoutertheme{infolines}

after loading the "Berlin" main document theme.

For more information on "outer themes" (including alternatives to "infolines"), see section 16.2 of the user guide of the beamer package.

You may also want to consider switching the main document theme of your beamer document. For instance, the Rochester theme has no navigational sidebars anywhere, but is otherwise somewhat similar to the Berlin theme.

Mico
  • 506,678