Is there any trick to getting biblatex-chicago to format original dates properly?
According to the Chicago Manual of Style 16th ed., if one is using the author-date format, citations should have the original date in square brackets and references should have it in parentheses. To wit:
Marx ([1893] 1967) said, "..."
and
Marx, Karl. (1893) 1967. Capital: A Critique of Political Economy, Volume II, The Circulation of Capital. NY: International Publishers.
If I understand this correctly, to implement this with biblatex-chicago, one should merely have to set the "origdate" field in the bib file to 1893 and the "date" field to "1967."
I've done so, but the formatted document doesn't seem to show both dates as described above. Do I have to do something else?
BibTeX, biblatex and biber ⇒ biblatex-chicago & origdate
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
biblatex-chicago & origdate
Can you prepare a minimal working example so we can reproduce what you see (or not see) and have a perfect test case to start from?
http://tex.stackexchange.com/questions/ ... ex-chicago
http://tex.stackexchange.com/questions/ ... ex-chicago
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
biblatex-chicago & origdate
Years later... in Bibliatex-Chicago (notes) origdate should appear between [], before the publication year. I cannot reproduce that output.
main.tex
\documentclass[12pt,a4paper,oneside]{book}
\usepackage[spanish]{babel}
\usepackage[babel]{csquotes}
\usepackage{makeidx}
\usepackage{graphicx}
\usepackage{fontspec}
\usepackage[left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm,bindingoffset=10mm,headsep=2.5em]{geometry}
\usepackage{titlesec}
\usepackage{color}
\usepackage{fancyhdr}
\usepackage[notes,strict,backend=biber,autolang=other,cmsdate=both,ibidtracker=false]{biblatex-chicago}
\addbibresource{LaTeXis.bib}
\begin{document}
Primera cita \footnote{\cite{sombra}}
Esto es la segunda cita \cite{sombra}
Esto es otra \cite{carnaval}
Una nueva cita \footnote{Comprobar \cite{limites} }
Last cita \footnote{Ver \cite{limites} }
\printbibliography
\end{document}
latexis.bib
@Book{sombra,
title = {La filosof{\'\i}a y su sombra},
publisher = {Seix Barral},
year = 1969,
author = {Tr{\'\i}as, Eugenio},
address = {Madrid},
edition = {2\textordfeminine{} ed.},
origyear = 1987
}
@book{carnaval,
author = {Trias},
title = {Carnaval},
date = {1971},
options = {cmsdate=new},
origdate = {1787}
}
@book{esencia,
author = {Trias},
title = {Drama e identidad},
date = {1971},
options = {cmsdate=new},
origdate = {2002}
}
@Book{limites,
title = {Los límites del mundo},
author = {Eugenio Trías},
date = {1981},
origdate = {1234},
}
Any clue will be appreciated. Thanks.
main.tex
\documentclass[12pt,a4paper,oneside]{book}
\usepackage[spanish]{babel}
\usepackage[babel]{csquotes}
\usepackage{makeidx}
\usepackage{graphicx}
\usepackage{fontspec}
\usepackage[left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm,bindingoffset=10mm,headsep=2.5em]{geometry}
\usepackage{titlesec}
\usepackage{color}
\usepackage{fancyhdr}
\usepackage[notes,strict,backend=biber,autolang=other,cmsdate=both,ibidtracker=false]{biblatex-chicago}
\addbibresource{LaTeXis.bib}
\begin{document}
Primera cita \footnote{\cite{sombra}}
Esto es la segunda cita \cite{sombra}
Esto es otra \cite{carnaval}
Una nueva cita \footnote{Comprobar \cite{limites} }
Last cita \footnote{Ver \cite{limites} }
\printbibliography
\end{document}
latexis.bib
@Book{sombra,
title = {La filosof{\'\i}a y su sombra},
publisher = {Seix Barral},
year = 1969,
author = {Tr{\'\i}as, Eugenio},
address = {Madrid},
edition = {2\textordfeminine{} ed.},
origyear = 1987
}
@book{carnaval,
author = {Trias},
title = {Carnaval},
date = {1971},
options = {cmsdate=new},
origdate = {1787}
}
@book{esencia,
author = {Trias},
title = {Drama e identidad},
date = {1971},
options = {cmsdate=new},
origdate = {2002}
}
@Book{limites,
title = {Los límites del mundo},
author = {Eugenio Trías},
date = {1981},
origdate = {1234},
}
Any clue will be appreciated. Thanks.