Link a PDF File in a Website
Aug. 28, 2024
The way to link a PDF file in a website is the same as that to link an HTML file, for example:
[doc.pdf](/webpages/2024-08-28/doc.pdf)
: doc.pdf
where the PDF file is generated by LaTeX blindtext
package1:
1
2
3
4
5
6
7
\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage[toc]{blindtext}
\begin{document}
\Blinddocument
\end{document}
References