<div>A bit of conceptual history, before I answer the question.</div><div><br></div>The very first system in LaTeX for typesetting bibliographies was the thebibliography environment. It didn&#39;t do anything special for typesetting -- it was just a glorified list environment. You had to format your bibliography entries and select the ones you wanted yourself. I mention this environment because it underlies the other latex bibliography systems in use today.<div>
<br></div><div>Bibtex was the first system to automatically select which bibliography entries to include and format them from a database. In Bibtex, you store your citations in a .bib file which defines the logical structure of each entry. When you compile a LaTeX file with Bibtex citations, something needs to determine entries from the .bib file are needed and how to format the. This something is the bibtex binary. After the first pass of compiling your .tex tile, the bibtex binary looks at the .aux file to determine which citations are needed, and uses instructions in a .BST bibliography style file to determine what they&#39;re supposed to look like on the page. The result is a .bbl file that contains a thebibliography environment which will be typeset in your final  LaTeX output.</div>
<div><br></div><div>Natbib is a LaTeX package that works with bibtex to give you more options about what the citation keys in your text look like. It requires style files that are compatbile with Natbib (to make a little more information available to the \cite command), but fundementally it&#39;s still the bibtex binary and the BST style file that format the bibliography entries.</div>
<div><br></div><div>BibLaTeX is an almost complete replacement for BibTeX. It still uses the .bib file to store information about bibliography entries, but it eliminates the BST file completely, and moves the work of formatting the .bib entries into a LaTeX .sty package. This allows one to pass options to the biblatex package that affect the way bibliography entries are formatted.</div>
<div><br></div><div>In BibTeX (with or without natbib), one changes the way bibliography entries are formatted by using a different BST file. You can either find an existing one that fits your needs, or you can edit an existing one to meet your needs (this might difficult -- the langauge for programming BST files is a pretty complicated stack-based language -- but I think that this kind of modification is actually pretty easy once you look inside a BST file), or you can use makebst generates a new BST file for you by asking lots of questions about what you want your bibliography to look like.</div>
<div><br></div><div>BibLaTeX is totally different an none of the answers to the tex.stackexchange question will help you with BibTeX (whether you&#39;re using natbib or not).</div><div><br></div><div><div class="gmail_quote">
On Wed, Oct 12, 2011 at 11:44 PM, Alex Mandel <span dir="ltr">&lt;<a href="mailto:tech_dev@wildintellect.com">tech_dev@wildintellect.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im">On 10/12/2011 03:12 PM, Thomas Johnston wrote:<br>
&gt; I am having the same problem as described here (i.e., I get unwanted<br>
&gt; URL&#39;s, DOI&#39;s, etc. in my references):<br>
&gt;<br>
&gt; <a href="http://tex.stackexchange.com/questions/23117/biblatex-get-rid-of-issn-urls-and-dois-in-references" target="_blank">http://tex.stackexchange.com/questions/23117/biblatex-get-rid-of-issn-urls-and-dois-in-references</a><br>

&gt;<br>
&gt; I am fairly new to LaTeX and I don&#39;t understand the proposed solution<br>
&gt; and was wondering if someone could explain it more fully.<br>
&gt; Where should I use the options doi=false,isbn=false,url=false?<br>
&gt; What is &quot;the manual&quot; referred to in the solution?<br>
&gt;<br>
&gt; I don&#39;t know if it matters or not, but I use bibtex (not biblatex<br>
&gt; mentioned in the link).<br>
&gt;<br>
&gt; If it helps, I have a default installation of texlive2011 (obtained<br>
&gt; from the CTAN website). I edit and compile tex documents using vim and<br>
&gt; vim-latexsuite. The bibliography style files I would like to use is<br>
&gt; named &quot;unsrtnat&quot;. The only thing I have in my preamble that I think<br>
&gt; might possibly affect the citations is the line:<br>
&gt; \usepackage[square,comma,numbers,sort&amp;compress]{natbib}<br>
&gt;<br>
&gt; Thomas<br>
<br>
</div>natbib is not bibtex or biblatex<br>
try<br>
\usepackage[square,comma,numbers,sort&amp;compress,doi=false,isbn=false,url=false]{natbib}<br>
<br>
Although check the natbib docs to see if those are valid options for<br>
natbib. I recently switched to natbib and am quite happy with it but I<br>
keep my urls in.<br>
<br>
Thanks,<br>
<font color="#888888">Alex<br>
</font><div><div></div><div class="h5">_______________________________________________<br>
vox-tech mailing list<br>
<a href="mailto:vox-tech@lists.lugod.org">vox-tech@lists.lugod.org</a><br>
<a href="http://lists.lugod.org/mailman/listinfo/vox-tech" target="_blank">http://lists.lugod.org/mailman/listinfo/vox-tech</a><br>
</div></div></blockquote></div><br></div>