How can I indicate in my bibliography that the reference has 500 pages in total, for example.
As I understand, the keyword "pages" in Bibtex refers to the specific page or page ranges.
How can I indicate in my bibliography that the reference has 500 pages in total, for example.
As I understand, the keyword "pages" in Bibtex refers to the specific page or page ranges.
With biblatex, you may add a pagetotal field to your .bib file.
\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}
(The filecontents environment is only used to include some external files directly into the example, so that it compiles. It is not necessary for the solution.)
pagetotaldidn't worked for me. I'm using ugost2008 bibliography style andnumpagesfield worked like a charm in my case. – Gregory Kalabin May 14 '13 at 16:24ugost2008is a bibtex style bundle, not biblatex (which provides apagetotalfield with which its default styles deal). – henrique May 14 '13 at 16:33