I'm using TeXworks to compile a paper, but can't figure out how to include a bibliography page with the author-date format style. I want to refer to papers in the format (Author, YYYY) and in the bibliography to have author, then year. I was previously using \bibliographystyle{ieeetr} and my document was compiling just fine.
Now, I've downloaded a bunch of packages following David Fussner's instructions for the biblatex-chicago package, but for the life of me I can't make my document run. I have a bunch of other packages in the preamble that may be conflicting with biblatex-chicago (I've added them as I've needed to do things with figures, tables, footnotes at the end of the document, etc).
Here's my preamble:
\documentclass[12pt]{article}
%
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage[nohead]{geometry}
\usepackage[singlespacing]{setspace}
\usepackage[bottom]{footmisc}
\usepackage{indentfirst}
\usepackage{endnotes}
\usepackage{graphicx, subfigure}
\usepackage{rotating}
\usepackage{booktabs}
\usepackage[tableposition=top]{caption}
\usepackage{placeins}
\usepackage{afterpage}
\usepackage{multirow}
\usepackage{hyperref}
\usepackage{color, colortbl}
\definecolor{Gray}{gray}{0.9}
\usepackage[justification=centering]{caption}
\usepackage{array,longtable,calc}
\usepackage{arydshln}
%
\newcommand{\ra}[1]{\renewcommand{\arraystretch}{#1}}
%
\usepackage[margin=65pt,font=small,labelfont=bf,justification=raggedright,singlelinecheck=false]{caption}
\DeclareGraphicsExtensions{.eps,.jpg}
\usepackage{etoolbox}
\usepackage[authordate,backend=biber]{biblatex-chicago}
\bibliography{newreferences.bib}
I'm citing using \cite{Glomm1994}and at the end I have:
\newpage
\printbibliography
I'm getting all sorts of errors. Once it actually ran, but with no bibliography page. I need some logic to follow when adding the packages necessary for Chicago style bibliography. There are so many options out there I no longer know what I'm doing.
Any help would be appreciated. I have a deadline and I've dedicated too much time on something that should be simple.
/cite{Glomm1994}you will not get a citation; macro begin with a backslash---not a frontslash. – Svend Tveskæg Sep 22 '13 at 02:08biblatex, see What to do to switch tobiblatex? and biblatex for idiots, specifically forbiblatex-chcagosee Getbiblatex-chicagoworking. From what I can see, the list of packages you load should not conflict withbiblatex-chacago(you loadcaptiontwice though). If after reading the post above you still have trouble compiling, delete all temporary files, recompile, edit your question and post the relevant errors here. – moewe Sep 22 '13 at 06:53booktabsorcaptionmore times than one call of\usepackage{...}. Try to check if the order/sequence of calls inside your preamble is right, then re-compile. If the problem persist, then you can focus only on the main error generated by the bib. and not the preamble. – TheVal Sep 22 '13 at 19:48\begin{document}to\end{document}) will run without problems, so more information is needed. Please post a complete (but minimal) example file -- most\usepackagecalls here are irrelevant. Some idea of what error messages you are getting would also be helpful. Finally, note two things:hyperrefshould be among the last packages you load; and you should switch from using\bibliography{newreferences.bib}to\addbibresource{newreferences.bib}. – jon Sep 22 '13 at 20:14\documentclass[12pt]{article} \usepackage[authordate,backend=biber]{biblatex-chicago} \addbibresource{references.bib} \begin{document} The inclusion of these two productive roles of government opens the door to the analysis of how taxation and the structure of government spending affect the level of output and human capital accumulation \cite{Holden2012}.
\newpage \printbibliography \end{document}
AND THE ERROR I AM GETTING IS:
! Package keyval Error: avdate undefined. See the keyval package documentation for explanation. I.92 \csuse{cms@\cms@style}
– timbers Sep 22 '13 at 23:49references.bib, so I used another file and another entry notHolden2012) on my setup. Try an update. What version ofbiblatex,biber,biblatex-chicagodo you have installed? – moewe Sep 23 '13 at 08:27