5

I can use

\usepackage[bibstyle=numeric,url=false,doi=false]{biblatex}

to hide urls and dois from my bibliography, but

\usepackage[bibstyle=numeric,url=false,doi=false,title=false]{biblatex}

will not compile, throwing instead a keyval error.

How can I hide the titles of articles from my bibliography?

lockstep
  • 250,273
Richard
  • 5,723

1 Answers1

7
  1. You can use \DeclareSourceMap:

    \DeclareSourcemap{
      \maps[datatype=bibtex]{
        \map{
          \pertype{article}
           \step[fieldset=title, null]
        }
     }
    }
    
  2. You can change the field format of title:

    \DeclareFieldFormat[article]{title}{}
    

Both solutions can be done at the preamble.

Marco Daniel
  • 95,681
  • 1
    Please note that \DeclareFieldFormat[article]{title}{} can have adverse effects in that it makes biblatex think it printed the title when it didn't, potentially messing up the punctuation. The preferred variant is probably \AtEveryBibitem{\clearfield{title}}/\AtEveryCitekey{\clearfield{title}}. – moewe Mar 17 '15 at 11:54