How do I remove "[Online]. Available:" from References in IEEETran.cls in Overleaf? I am currently using
\def\url#1{} to disable the URL. Thank you for your help.
Asked
Active
Viewed 1,727 times
2
2 Answers
0
Solution here worked:
Disabling URLs in bibliography
The IEEEtran.bst v1.14 introduces a new option to disable URLs. Now you can create a bib file containing the following:
@IEEEtranBSTCTL{MyBSTcontrol,
CTLuse_url = "no",
}
Include this bib file along with other bib files, and invoke it via bstctlcite
\begin{document}
\bstctlcite{MyBSTcontrol}
.
.
All URLs in the references will be gone.
Doctor
- 1
- 1
-2
Found a way around the issue: remove URL in Zotero (one-by-one, tedious) then export the bibLatex file. This may throw a couple of warnings in the overleaf which can be ignored.
Rashed
- 19
-
1With Better BibTeX for Zotero it is (probably, I don't use it myself, so I can't be sure, but I would bet quite a lot on it) possible to remove URLs automatically. – moewe Jul 21 '19 at 15:30
-
This is indeed possible using BBT. You can just add the
urlfield tofields to omitpreference. – retorquere Jul 21 '19 at 23:09

IEEEtran.bst(the bibliography style file) orIEEEtran.cls(the LaTeX document class file)? I would be very surprised if it turns out that the document class governs the insertion of strings such as[Online]. Available:in the formatted bibliographic entries. That's usually the job of the bibliography style file. Please advise. – Mico Jul 15 '19 at 19:25