[Tex/LaTex] biblatex: Citation not showing correctly (n.d.)

biblatexbiblatex-chicagociting

\documentclass[letterpaper, 12pt]{article}

\usepackage{keyval}
\usepackage{ifthen}
\usepackage[letterpaper, total={6in, 8in}]{geometry}    
\usepackage{framed}                                 
\usepackage{marginnote}                             
\usepackage{graphicx}                               
\usepackage[export]{adjustbox}                       
\usepackage{etoolbox}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[english]{babel}
\usepackage{titlesec}
\usepackage{csquotes}
\usepackage{url}
\urlstyle{same}                                                                     
\usepackage{perpage}                        
\usepackage{ragged2e}
\usepackage{setspace}
\usepackage[linktocpage=true]{hyperref}     
\usepackage{xcolor}             
\usepackage{sectsty}                                                    
\usepackage{imakeidx}                       
\usepackage[nottoc,notlot,notlof]{tocbibind}            
\usepackage[titles]{tocloft}

\makeindex   
\MakePerPage[1]{footnote}           

%*********** Citation Style **************%

\usepackage[notes, authordate, backend=biber, autocite = inline]{biblatex-chicago}


%****************************************************************%
\addbibresource{proposal.bib}                                               

The code above works, but the citation shows up as:

(Mearsheimer, n.d.)

From bib file:

@book{Waltz,
    Author = {Kenneth N. Waltz},
    Date-Added = {2017-07-03 15:08:26 +0000},
    Date-Modified = {2017-07-03 15:09:40 +0000},
    Keywords = {Structural Realism},
    Publisher = {Waveland Press, Inc.},
    Title = {Theory of International Politics},
    Year = {2010}}

With this command, the n.d. is suppressed, but the year does not appear.

\usepackage[notes, authordate, nodates=false, backend=biber, autocite = inline]{biblatex-chicago}

I would expect the year of publication to be shown in place of n.d. In my .bib file it is there and it prints correctly on the References page at the end of the document.

Any advice? Have not found anything online.

Best Answer

Given discussion in the comments, substituting Year = {2010} by date = {2010} should be enough.

Related Question