Text FormattingHow to suppress Reference section in beamer

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Locked
runninfarmer
Posts: 2
Joined: Mon Dec 13, 2010 7:05 am

How to suppress Reference section in beamer

Post by runninfarmer »

I'm using beamer and when I use natbib it generates a references section in my section navigation bar, which I don't want. Is there a way to suppress that? Thanks in advance.

Code: Select all

\documentclass{beamer}
\setbeamertemplate{navigation symbols}{}
\setbeamerfont{caption}{size=\tiny,series=\bfseries}
\setbeamertemplate{caption}[numbered]
\usepackage{textcomp}
\usepackage{gensymb}
\setbeamertemplate{bibliography item}[text]
\usepackage[numbers,sort&compress]{natbib}
\mode<presentation>{\usetheme{Ilmenau}}
\usepackage{tabularx}
\usepackage[latin1]{inputenc}
\usecolortheme[RGB={24,69,59}]{structure} 
\usepackage{times}
\usepackage[T1]{fontenc}
\begin{document}
\begin{frame}
  \titlepage
\end{frame}
\begin{frame}{Outline}
  \tableofcontents
\end{frame}
\begin{frame}[allowframebreaks]{References}
  \tiny{\bibliographystyle{ieeetr}}
\def\newblock{}
\bibliography{lit}
\end{frame}
\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

How to suppress Reference section in beamer

Post by localghost »

No double posts please (see Board Rules). Topic closed.
Locked