I am writing some class notes, and babel (with spanish language option) + natbib + chicago bibliography style are producing some undesirable results: they give me the Missing \endcsname inserted. error when I add a volume to a given article I am trying to cite. The class notes are in spanish so I need babel. A minimal working example of my tex file:
\documentclass[10pt]{article}
\usepackage{natbib}
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}
\title{min}
\author{none}
\date{today}
\begin{document}
\maketitle
cite the citation \citep{efron1979}
\bibliographystyle{chicago}
\bibliography{biblio.bib}
\end{document}
and my biblio.bib file:
@article{efron1979,
author={Bradley Efron},
title={Bootstrap Methods: Another Look at the Jackknife},
journal={The Annals of Statistics},
year=1979,
number=1,
pages={1-26},
volume={7}
}
If I remove the volume from the cited work in the .bib file, for some reason, the code works. But these is a very annoying work around: I still get warnings from BibTex, saying that I have a missing volume. What is the proper solution to this?
biblatex-chicagopackage to print your bibliography – KersouMan Jan 19 '22 at 07:40