[Tex/LaTex] Printing full date in bibliography (BibLaTeX)

biblatexdatetime

How can I get biblatex to print the full date in the references? I could have sworn it used to do this all by itself and I've got some old files where I've managed this, but I can't see anything in the .tex file or in the biblatex manual that says how to do it.

\documentclass{article}
\usepackage[style=authoryear-icomp,backend=biber]{biblatex}

\begin{filecontents}{references.bib}
    @article{Article,
  title = {This is a Title},
  author = {Author, Some},
  journal = {Journal},
  location = {The City},
  publisher = {Publisher},
  date = {2014-04-23}
}
\end{filecontents}
\addbibresource{references.bib}


\begin{document}
Citing \cite{Article}.
\printbibliography
\end{document}

Lack of full date in bibliography

Best Answer

The mergedate option is what you are looking for. See The authoryear-icomp style.


You might like mergedate=false.

mergedate=false strictly separates the date specification from the date label. The year will always be printed twice.

enter image description here

All dates are printed twice.


Or mergedate=minimum

mergedate=minimum merges the dates whenever the full date and the date label are exactly the same string. If the date is a bare year number and there is no extrayear field, the date specification will be omitted.

enter image description here

Knuth 1948's date is not printed twice here.


Or mergedate=basic

mergedate=basic [...] will always omit the date specification if the date is a bare year number.

enter image description here

Knuth 1986a and Knuth 1986b's date are not printed twice either.


If you prefer the date to go into the parentheses at the front, you can use the datelabel option. The default value is year, so you only get to see the year. You can choose between year, short, long, terse, comp and iso8601 (see pp. 50-51 of the biblatex documentation). The latter options print the full date.

This option is probably best used with the default mergedate=compact option.

MWE

\documentclass{article}
\usepackage[style=authoryear-icomp,backend=biber,datelabel=comp]{biblatex}
\addbibresource{biblatex-examples.bib}

\begin{document}
  \nocite{baez/online,shore,knuth:ct:a,knuth:ct:b,knuth:ct:c}
  \printbibliography
\end{document}

enter image description here