BibTeX, biblatex and biber ⇒ biblatex-chicago & origdate
biblatex-chicago & origdate
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?
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
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
biblatex-chicago & origdate
http://tex.stackexchange.com/questions/ ... ex-chicago
biblatex-chicago & origdate
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.