[Tex/LaTex] Bibliography Total pages

biblatexbibliographies

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.

Best Answer

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.)

Related Question