stripping url output from bibtex
The bibliographical information as supplied by journals usually includes a URL field, and bibtex styles like \bibliographystyle{apsrev} will export the URL field in the resulting .bbl file, very nagging to some of us. One way to get rid of these URL links is to use a customized .bst file, e.g.,
locate apsrevto find where theapsrev.bstfile is.- cd to the directory, and invoke
grep -v 'format.url output' apsrev.bst > your/manuscript/directory/apsrev-no-url.bstto create a no-url version of the bst file in your manuscript directory (or any other directory in the search path of bibtex). - now, in your manuscript, replace
\bibliographystyle{apsrev}with\bibliographystyle{apsrev-no-url}
Advertisement