BibTeX, biblatex and biber ⇒ Clickable URL Fields in References
-
- Posts: 2
- Joined: Thu Oct 20, 2011 2:56 pm
Clickable URL Fields in References
i have no idea if this is a BibTeX specific problem or a LaTeX but since it has to do with references i decided to post it here.
I have a bib file with several references that contain URL fields. The journal that i am planning to send my paper requires clickable links for the URL fields. I can't figure out how to do that.
Is it a package, is it the bibliographic style or is it a certain syntax that i have to use within the bib file?
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
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Clickable URL Fields in References
Code: Select all
\usepackage[colorlinks]{hyperref}
Code: Select all
@misc{Google,
author = "Bad S. Peller",
title = "The Evil Empire",
url = "{\url{http://www.google.com}}",
year = 2011
}
-
- Posts: 2
- Joined: Thu Oct 20, 2011 2:56 pm
Re: Clickable URL Fields in References
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm