BibTeX, biblatex and biberbiblatex-chicago & origdate

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Gnosos
Posts: 23
Joined: Wed Jun 29, 2011 10:52 pm

biblatex-chicago & origdate

Post by Gnosos »

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?

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

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

biblatex-chicago & origdate

Post by Johannes_B »

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
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
jplobaton
Posts: 1
Joined: Tue Apr 03, 2018 4:35 pm

biblatex-chicago & origdate

Post by jplobaton »

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.
Post Reply