I'm using biblatex. Is there any way to suppress the month in the bibliography without deleting months from the bib file? For example it prints:
Instead I want it to print:Dretske, Fred I. (Dec. 24, 1970). “Epistemic Operators”. In: The Journal of Philosophy 67.24, pp. 1007–1023. issn: 0022362X. JSTOR: 2024710.
Using the mergedate option is not what I mean.Dretske, Fred I. (1970). “Epistemic Operators”. In: The Journal of Philosophy 67.24, pp. 1007–1023. issn: 0022362X. JSTOR: 2024710.
Here's an example document:
Code: Select all
\documentclass{article}
\usepackage[english]{babel}
\usepackage[style=authoryear-comp]{biblatex}
\bibliography{testbib}
\begin{document}
\autocite[1011]{dretepop}
\printbibliography
\end{document}
Code: Select all
@Article{dretepop,
title = {Epistemic Operators},
author = {Fred I. Dretske},
journaltitle = {The Journal of Philosophy},
volume = {67},
number = {24},
hyphenation = {english},
pages = {1007--1023},
pagination = {page},
eprint = {2024710},
eprinttype = {jstor},
issn = {0022362X},
date = {1970-12-24}
}