I am using biblatex to print bibliographies. Although, it is handy to have adendum and note fields in bib entries, I wonder if there is a way to remove them from the output. I tried to use adendum=false and note=false, but they don't work.
\RequirePackage{filecontents}
\begin{filecontents*}{mybib.bib}
@Article{bibkey,
Title = {Some title},
Author = {John Joe},
Addendum = {some addendum},
note = {some notes},
Doi = {blah blah},
Month = {Feb},
Number = {2},
Pages = {950-955},
Volume = {62},
Journal = {J. LaTeX},
Keywords = {Some keyword},
}
\end{filecontents*}
\documentclass{article}
% Set the values for the bibliography
\usepackage[%
backend=bibtex8,% or bibtex8
style=numeric,%
sorting=ydnt,% sorted by year, descending
eprint = false,
url=false,
]{biblatex}
% Recommended for biblatex
\usepackage{csquotes}
\usepackage{xpatch}
% Set language
\usepackage[british]{babel}
\DeclareLanguageMapping{british}{british-apa}
\addbibresource{mybib.bib}
\begin{document}
some text \cite{bibkey}
\printbibliography
\end{document}