Text FormattingURL Links in LoF

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
xetam
Posts: 4
Joined: Wed May 02, 2012 7:22 pm

URL Links in LoF

Post by xetam »

Hi, my question is basically if is possible add clickable URLs in the list of figures, I am trying with hyperref package but it doesn't work, the links goes to the image into the document and I need to externalize the internet source.

sorry for my bad English

Code: Select all

\documentclass[12pt,letterpaper]{report}
\usepackage[utf8x]{inputenc}
\usepackage[spanish]{babel} 
\usepackage[bookmarks=false]{hyperref}

\begin{document}
  \includegraphics[width=.5\textwidth-10pt]{organ-a-4.eps}
  \caption[\href{http://tinyurl.com/Bach-Musical-Phrase-jpg}{cello image}]{cello image}
  \label{8}
\end{document}
TexLive 2011
Texmaker
windows 7 64

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

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

URL Links in LoF

Post by cgnieder »

Hi,

This works for me:

Code: Select all

\documentclass[12pt,letterpaper]{report}
\usepackage[utf8x]{inputenc}
\usepackage[spanish]{babel}
\usepackage[bookmarks=false]{hyperref}

\begin{document}
\listoffigures

\begin{figure}[htp]
  \centering
  \rule{5em}{3em}
  \caption[\href{http://tinyurl.com/Bach-Musical-Phrase-jpg}{cello image}]{\label{8}cello image}
\end{figure}

\end{document}
link_in_lof.png
link_in_lof.png (10.39 KiB) Viewed 1695 times
Regards
site moderator & package author
Post Reply