General ⇒ customizing what fields are shown in the bibliography
customizing what fields are shown in the bibliography
Would I have to edit the vancouver.bst file? (and if yes, how would I do that?? I'm not very familiar with this stuff so the code in that file all looks very foreign to me and I don't want to mess around with core files!)
I actually was using the unsrt bibliography style initially and was not having problems with the URL, but I now need to use this other style.
Thanks for any 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
customizing what fields are shown in the bibliography
Each entry type in a .bib file has three classes of flields: requiered, optional and ignored (as described in the Using BiBTeX document (pages 7ff.)). Thus you can use one ignored field to put (in the .bib file) relevant information that will not appear in the actual bibliography. As an example, consider
Code: Select all
@article{mifflin,
author = "R. Mifflin",
title = "Semismooth and semiconvex functions in constrained
optimization",
journal = "Siam Journal on Control",
year = "1977",
volume = "15",
pages = "957--972",
info = "www.xxx.org"
}
Re: customizing what fields are shown in the bibliography
Your file did help me think of a solution, although it does require editing the vancouver.bst (or whichever style you may have) file. Just delete the line "output.web.refs % urlbst" from any of the reference types (i.e. article, book, etc) where you don't want the URL to ever appear.