General ⇒ Footnote links in PDFLatex
-
- Posts: 105
- Joined: Fri Nov 30, 2007 11:32 pm
Re: Footnote links in PDFLatex
The problems is occurring because of package setspace. If I take out setspace then the footnote links work fine. This, however, creates a new (bigger) problem; the footnotes are not single spaced when the rest of the document is double spaced. Does anyone know how to make footnotes single spaced when rest of the document is double spaced without using packages setspace or doublespace.
Thanks for your help.
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
Footnote links in PDFLatex
That is weird. Try the following example. It works OK for me. If you experience some problems with this example, then add \listfiles before \documentclass[12pt]{article} process the document and post the section *File List* of the .log generated file.
Code: Select all
\documentclass[12pt]{article}%
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{harvard}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{blindtext}
\usepackage{setspace}%
\doublespacing
\usepackage{hyperref}
\hypersetup{colorlinks=true,linkcolor=black}
\begin{document}
\blindtext
\begin{spacing}{1}
\begin{align}
a &= b\\
c &= d
\end{align}
\end{spacing}
\blindtext\footnote{This is the first footnote}
\blindtext\footnote{This is second footnote}
\blindtext\footnote{This is the third footnote}
\end{document}
-
- Posts: 105
- Joined: Fri Nov 30, 2007 11:32 pm
Re: Footnote links in PDFLatex
I tried the solution you suggested. However, it did not work. I asked another friend of mine whether he was aware of a way out. He suggested the following command which works pretty well and does not require use of setspace package.
{\setlength{\baselineskip}{2\baselineskip} Text of the para including foonotes ...basically whatever you type in the paper \par}
Whatever is in the curly braces is double spaced (except the footnotes). The footnote links work well with this solution.
The funny thing though is that you do not have the problem I and my friend had with setspace. Maybe it has to something to do with the operating sys. Mine is Win XP.
Thanks again for the suggestions.