Page Layout ⇒ Negating Footnote Links
-
- Posts: 4
- Joined: Sun Mar 01, 2009 6:53 am
Negating Footnote Links
When I produce a PDF of the TeX document, there is a red box around every footnote number in the text of that PDF. When you click on this red box, it immediately jumps you down to the footnote itself at the bottom of the page.
The guidelines for dissertations at my University tell me to get rid of these boxes (essentially to negate the ability within the PDF to use the footnote numbers within text as links to the footnote at the bottom of the page). Is there a way to do this within the TeX document?
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
Negating Footnote Links
assuming that you are using the hyperref package, then you can add the hyperfootnotes=false package option; i.e., you can load it in the following way:
Code: Select all
\usepackage[hyperfootnotes=false]{hyperref}
-
- Posts: 4
- Joined: Sun Mar 01, 2009 6:53 am