8

I would like to remove the "pages" attribute from .bib files.

biblatex output

I tried to pass \usepackage[usepages=false]{biblatex}, which seemed the logical way to do it, based on the documentation, but it does not work -- is it possible to disable them?

Andrew Swann
  • 95,762
Ricardo Cruz
  • 1,770
  • 1
  • 22
  • 34

1 Answers1

9

You can remove (disable) particular fields, lists or names with

\AtEveryBibitem{\clearfield{pages}} 

Use \clear<type>{<typename>} where <type> stands for list or name and the <typename> is the name of the bibtex field you want to disable.

Guido
  • 30,740