There is a bug in biblatex-chicago package.
Biblatex-chicago prints the urldate information ("accessed September 27,
2017.") even if "url=false" is specified
(\usepackage[url=false]{biblatex-chicago}).
This is not the behavior of biblatex.
I informed the author who will fix it. In the meantime, I need a way to clear the urldate field which touching my .bib database.
I tried without success:
\AtEveryBibitem{\clearfield{urldate}}
MWE:
\documentclass{article}
\usepackage[authordate,url=false]{biblatex-chicago}
%\usepackage[style=authoryear,url=false]{biblatex}
\addbibresource{test_biblio.bib}
\begin{document}
text
\autocite{test42}
\printbibliography
\end{document}
test_biblio.bib
@book{test42,
author = {Author},
title = {title},
year = 2001,
title = {Title},
url = {tex.stackexchange.com},
urldate = {2017-09-27}
}
\clearfield{urlyear}– moewe Sep 29 '17 at 09:57urldateis split up into its components and as such forbiblatexinternally onlyurlyear,urlmonth,urlmonthexist, even though the input only usesurldate. – moewe Sep 29 '17 at 09:58\AtEveryBibitem{\clearfield{urlyear}\clearfield{urlmonth}\clearfield{urlday}}works. It was "year" and not "date", stupid me... Turn this into an answer and I will accept it. – ppr Sep 29 '17 at 15:11