Text Formatting ⇒ How to link to specified page of an outer pdf document!
-
- Posts: 2
- Joined: Sat Dec 19, 2009 5:29 pm
How to link to specified page of an outer pdf document!
Who knows?
Many thanks!
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
How to link to specified page of an outer pdf document!
-
- Posts: 2
- Joined: Sat Dec 19, 2009 5:29 pm
How to link to specified page of an outer pdf document!
Thank you
If I do not have the pdf's source file, it also doesn't work!
How to link to specified page of an outer pdf document!
My suggestion would be to actually include the linked-to PDF in the PDF you’re creating, and then you can use features of the pdfpages package to insert hyperlink targets for the included pages, and then you can use internal links. A quick example:
Code: Select all
\documentclass{article}
\usepackage{pdfpages}
\usepackage{hyperref}
\begin{document}
Here's a \hyperlink{included.pdf.2}{link to to page 2 of the included pdf}.
\includepdf[pages=1-5,link=true]{included.pdf}
\end{document}