I have a .bib file that includes pagetotal information. How do I surpress that information from being printed when I compile my document.
This is the inverse of the problem here, from which I use the example below
\documentclass{article}
\usepackage{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
pagetotal = {999},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\nocite{*}
\begin{document}
\printbibliography
\end{document}