BibTeX, biblatex and biberHyperlink for Titles in Bibliography Entries

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
pallav
Posts: 170
Joined: Wed Nov 12, 2008 5:53 pm

Hyperlink for Titles in Bibliography Entries

Post by pallav »

How to hyperlink the references such that on clicking on the title of the articles/books in the references automatically opens the website containing the articles/books? Note that I do not want to see the URL in the output PDF file.

Code: Select all

\begin{filecontents*}{test1.bib}
@book{kuznetsov1998elements,
  title={Elements of applied bifurcation theory},
  author={Kuznetsov, Y.A.},
  volume={112},
  year={1998},
  publisher={Springer Verlag}
}
\end{filecontents*}

\documentclass{article}
\usepackage{natbib,hyperref}
\begin{document}
test \cite{kuznetsov1998elements}
\bibliographystyle{plainnat}
\bibliography{test1}
\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Hyperlink for Titles in Bibliography Entries

Post by localghost »

You can use LaTeX markup in your bibliography database file (*.bib). So you can use \href from hyperref to get the title linked.

Code: Select all

\begin{filecontents*}{\jobname.bib}
@book{kuznetsov1998elements,
  title={\href{http://latex-community.org/forum/viewtopic.php?f=50&t=22551}{Elements of applied bifurcation theory}},
  author={Kuznetsov, Y.A.},
  volume={112},
  year={1998},
  publisher={Springer Verlag}
}
\end{filecontents*}

\documentclass{article}
\usepackage{natbib}
\usepackage{hyperref}

\begin{document}
  \nocite{*}

  \bibliographystyle{plainnat}
  \bibliography{\jobname}
\end{document}
For details please refer to the relevant sections of the package manual.


Thorsten
shilpapandey
Posts: 2
Joined: Wed May 28, 2014 6:02 am

Re: Hyperlink for Titles in Bibliography Entries

Post by shilpapandey »

Thanks ! it worked.
Post Reply