BibTeX, biblatex and biberProblems with cite package in beamer

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
runninfarmer
Posts: 2
Joined: Mon Dec 13, 2010 7:05 am

Problems with cite package in beamer

Post by runninfarmer »

I'm having problems using the cite package in beamer. When I don't use it everything's fine and natbib works, but natbib puts a references section in my section navigation bar, which I don't want. When I go to retry the cite package though, I get 101 undefined control sequence errors. Please help! Thanks!

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{cite}
\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{amsplain}}
\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

ceejaydee
Posts: 1
Joined: Thu Jan 13, 2011 1:54 pm

Problems with cite package in beamer

Post by ceejaydee »

Hi,

I ran into the same problem with the cite-package. Where you able to solve it?

You can use natbib without having the reference in the navigation-bar. Just put the code below in the header. It will change the section to a subsub-section, which will not show.

Code: Select all

\renewcommand{\bibsection}{\subsubsection*{\bibname } } %This way, the references will not appear as a section
Post Reply