I'm a total beginner to LaTeX trying to write my thesis using it.
Currently for bibliographical citations I'm using \usepackage[backend=bibtex,style=ieee,natbib=true]{biblatex}. style=ieee ensures that the citations appear inline as [3], [4], etc and in the order I introduce them (and Reference section is reordered accordingly). I don't want that to change!
Now, here's what my references section looks like
whereas, I want to
- get rid of the
[Online] Available:and the URL; - instead, hyperlink the title to the URL
Kinda like this:
except that I'd like to keep the IEEE style for the rest of the reference if possible. How can I do that?


biblatexit is usually enough to throw together a small document loadingbiblatexwith your options and a few example.bibentries. – moewe Aug 15 '20 at 09:27\usepackage[doi=false,url=false,isbn=false]{biblatex}and change it to\usepackage[style=ieee, doi=false,url=false,isbn=false]{biblatex}for IEEE style I get something with linked titles that looks like it would be what you are looking for. If you have specific questions about the code I suggest you edit your question, if not I'd say it's a duplicate. – moewe Aug 20 '20 at 17:08