This is probably a problem with an easy solution, but I am very new to using LaTeX and I have not been able to find the solution.
Anyhow, I am working in Sharelatex on a thesis, and I am using a chicago-authordate-ish bibliography version in biblatex. The problem grew out of me trying to add a newspaper article to my bibliography. When using the following code I could not get the date of the article to show up in the bibliography:
\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber, style=chicago-authordate,sorting=nyt,cmsdate=both,maxcitenames=2]{biblatex}
\begin{filecontents}{bibliography.bib}
@article{blakeslee1947,
title={'Flying Saucers' Called Forerunners of the New Atomic Folklore},
author={Howard W. Blakeslee},
journal={The Washington Post},
pages={B2},
date={1947-07-20},
entrysubtype={newspaper},
}
@book{Dorson1971a,
author={Richard M. Dorson},
title={American folklore},
publisher={University of Chicago Press},
address={Chicago},
year={1971},
origdate={1959},
}
\end{filecontents}
\addbibresource{bibliography.bib}
\begin{document}
text \footnote{\cite{blakeslee1947}; \cite[][p. 78]{Dorson1971a}}
\printbibliography
\end{document}
Using this code the output became:
When searching for a solution to the missing date in the reference to the article from the Washington post I found an article (Difference between biblatex [style=chicago] and biblatex-chicago packages?) stating that the proper way to call on this style would be like this:
\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber, style=authordate,sorting=nyt,cmsdate=both,maxcitenames=2]{biblatex-chicago}
\begin{filecontents}{bibliography.bib}
@article{blakeslee1947,
title={'Flying Saucers' Called Forerunners of the New Atomic Folklore},
author={Howard W. Blakeslee},
journal={The Washington Post},
pages={B2},
date={1947-07-20},
entrysubtype={newspaper},
}
@book{Dorson1971a,
author={Richard M. Dorson},
title={American folklore},
publisher={University of Chicago Press},
address={Chicago},
year={1971},
origdate={1959},
}
\end{filecontents}
\addbibresource{bibliography.bib}
\begin{document}
text \footnote{\cite{blakeslee1947}; \cite[][p. 78]{Dorson1971a}}
\printbibliography
\end{document}
This proved to amend the problem with the missing date, but I do now instead get a different layout of the bibliography and the footnotes, is there any easy way to get the style of the first example back without having to revert back to the first code-example?:




style=chicago-authordatein the second code block? – cfr Jun 10 '17 at 03:00\footnote{\cite{blakeslee1947}; \cite[][p. 78]{Dorson1971a}}on anauthordatestyle. Your second example trows an error to me, but if I give justauthordateas an option tobiblatex-chicago(that is, notstyle=authordate, justauthordate), I get results very similar to your first printout, with the newspaper date. Which seems to be what you want. – gusbrs Jun 10 '17 at 03:05\cite{blakeslee1947}could have produced "Howard W. Blakeslee, “’Flying Saucers’ Called Forerunners of the New Atomic Folk-lore,” The Washington Post, July 20, 1947, B2" etc inauthordatestyle. Which makes me think your compilation might be stumbling on some kind of error (and thus not completing). – gusbrs Jun 10 '17 at 03:27biblatex-chicagodoes not recognizestyleas an option, and thus reverts to the default, which isnotes. That's why you get a notes-like citation with that "option". Do you get any errors when compiling? Still I cannot help much as to why the date goes missing withauthordate, as I observe here a different behavior. – gusbrs Jun 10 '17 at 03:54Package keyval Error: style undefined.
See the keyval package documentation for explanation. Type H for immediate help.
...
l.98 ...liographyOptions\expandafter{\cms@options}
Try typing to proceed.
If that doesn't work, type X to quit.
– Erik Jun 10 '17 at 10:56Package biblatex Warning: '\name' is deprecated in sorting specifications, please use '\field'.
– Erik Jun 10 '17 at 10:59Package biblatex Warning: '\list' is deprecated in sorting specifications, please use '\field'.
– Erik Jun 10 '17 at 11:00Package biblatex Warning: 'labeldate' option used to determine whether to provide label date fields and extrayear field is renamed to 'labeldateparts', setting this instead. This option is now used to set the format of the labeldate.
– Erik Jun 10 '17 at 11:06authordatestyle at all, for the default ofbiblatex-chicagoisnotes. – gusbrs Jun 10 '17 at 11:29