Text Formatting ⇒ <a href> equivalent in TeX?
<a href> equivalent in TeX?
Is there any equivalent of <a href="goody">A</a> in LaTeX? I mean, even though I show 'A' in pdf file, the user can click it to visit "goody".
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
<a href> equivalent in TeX?
try the \href command from the hyperref package. A little example:
Code: Select all
\documentclass{article}
\usepackage[breaklinks=true]{hyperref}
\begin{document}
\href{http://www.latex-community.org/}{L-C}
\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
<a href> equivalent in TeX?
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: <a href> equivalent in TeX?
EDIT: Ouch. Double ninja-ed.