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 369 times
rest.tex
(242 Bytes) Downloaded 358 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

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

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