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?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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