BibTeX, biblatex and biberCitation Errors with Chicago Bibliography Style

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Sire El Fatos
Posts: 3
Joined: Tue Oct 15, 2013 11:36 am

Citation Errors with Chicago Bibliography Style

Post by Sire El Fatos »

Dear (bib)latex users,

I'd greatly appreciate any help with this issue.

With this minimal example:

Code: Select all

\documentclass[11pt,a4paper]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,francais]{babel}

\begin{document}
Hello world \cite{toto}

\bibliographystyle{chicago}
\bibliography{Biblio}
\end{document}
A bibliogrpahy file (named "Biblio.bib") like this:

Code: Select all

@article{toto,
  author = {tata},
  title = {tonton},
  journal = {titi},
  year = {2013},
}
I get these two errors :

Code: Select all

! Undefined control sequence.
\b@toto ->\@safe@activesfalse \citeauthoryear
{tata}{tata}{2013}
l.14 \cite{toto}

! Undefined control sequence.
<argument> \protect \citeauthoryear
{tata}{tata}{2013}
l.3 ...ect\citeauthoryear{tata}{tata}{2013}]{toto}
If I change the bibliography style (for example plain, apalike, ...), there are no errors anymore.

Thank you in advance for your precious help.
Attachments
Biblio.bib
(85 Bytes) Downloaded 377 times
rest.tex
(242 Bytes) Downloaded 366 times
Last edited by Sire El Fatos on Sun Oct 20, 2013 7:46 pm, edited 2 times in total.

Recommended reading 2024:

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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Citation Errors with Chicago Bibliography Style

Post by cgnieder »

Hi Sire El Fatos,

Welcome to the LaTeX community!

It looks like the chicago style needs the natbib package:

Code: Select all

\RequirePackage{filecontents}
\begin{filecontents}{somesample.bib}
@article{toto,
  author = {tata},
  title = {tonton},
  journal = {titi},
  volume = {1} ,
  pages = {203},
  year = {2013},
}
\end{filecontents}
\documentclass[11pt,a4paper]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{natbib}
\usepackage[english,francais]{babel}

\begin{document}
Hello world \cite{toto}

\bibliographystyle{chicago}
\bibliography{somesample}
\end{document}
Regards
site moderator & package author
Sire El Fatos
Posts: 3
Joined: Tue Oct 15, 2013 11:36 am

Re: Citation Errors with Chicago Bibliography Style

Post by Sire El Fatos »

Thanks for you help, Cgnieder !
Post Reply