Possible Duplicate:
href to an image label - how to jump to the image instead of the caption below the image?
It appears that the links to the figures take the cursor to the figure label, where the label is at the top of the page. This makes the reader have to scroll up to see the figure. Also, the footnotes take me either to the previous page or sometimes it keeps me on the same page but takes the PDF to a full page view of the same page. What am I doing wrong?
MWE code:
\documentclass[12pt]{article}
\usepackage{float}
\usepackage{verbatim}
\usepackage[margin=1in]{geometry}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage{harvard}
\usepackage{setspace}
\usepackage{fullpage}
\usepackage{threeparttable}
\usepackage{amssymb}
\usepackage{booktabs}
\usepackage{longtable}
\usepackage{hyperref}
\usepackage[titletoc,toc,page]{appendix}
\newtheorem{thm}{Theorem}[section]
\newtheorem{lem}[thm]{Lemma}
\newtheorem{prop}[thm]{Proposition}
\newtheorem{cor}[thm]{Corollary}
\newtheorem{conj}[thm]{Conjecture}
\begin{document}
\nocite{*}
\title{Hpperref not working}
\author{N00b}
\maketitle
\newpage
\section{Main}
It appears that the links to the figures, like here for Figure ~\ref{fig:mweref}, take the cursor to the figure label, where the Label is at the top of the page. This makes the reader have to scroll up to see the figure. Also, the footnotes, like this one \footnote{containing really useful stuff}, takes me either to the previous page or when I remove the newpage command after my title, it takes me to the pdf with the full page view of the same page. What am I doing wrong? Thanks.
\begin{figure}[H]
\centering
\includegraphics[scale=0.55]{mweref}
\caption{mweref}\label{fig:mweref}
\end{figure}
\end{document}
This PDF file is output that my TeXnicCenter is producing.
This is my output..at least on my computer has the issue with footnotes. Was the attached pdf working fine on your computer? – Amatya Oct 16 '12 at 04:29