BibTeX, biblatex and biber ⇒ Exclude some Fields from appearing in the Bibliography
Exclude some Fields from appearing in the Bibliography
I am using natbib with the plainnat bibliography style. At the moment the bibliography prints out fine but includes a Times Cited entry for each of the items in my bibliography.
I suppose one option would be to go in to the file and manually delete this field from each of the items, but wondered if there was some way to tell BibTex to exclude this field?
Thanks for your help
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Exclude some Fields from appearing in the Bibliography
Exclude some Fields from appearing in the Bibliography
Code: Select all
@article{seidenfeld:85,
author = {Seidenfeld, T.},
title = {CALIBRATION, COHERENCE, AND SCORING RULES},
journal = {Philosophy of Science},
volume = {52},
number = {2},
pages = {274-294},
note = {Times Cited: 10},
year = {1985}
}
Thanks very much
Exclude some Fields from appearing in the Bibliography
Code: Select all
#!/usr/bin/awk -f
!/^[ \t]*note/
Code: Select all
$ cleanbib bib_with_notes_field.bib > bib_without_notes_field.bib
Best regards,
Eric