I am trying to work with the hyperref package to put HTML
links in my pdf documents. However, whenever I
just try to include the package:
\usepackage{hyperref}
the margins of my resulting PDF (created with pdflatex) are messed
up, as the text is formatted all the way to the end of the page,
ignoring any bottom margin that I set.
Appended is an example of my latex document.
In the interest of space, I left out the actual text, though
you should be able to recreate the problem by putting any text
in this document as long as your text is long enough so that
pdflatex will need to write a minimum of two pages.
Is there something wrong, or perhaps obsolete,
with the way I am setting the margins?
Thank you for your help;
\documentclass[letterpaper]{article}
\usepackage{hyperref} % ADDING THIS PACKAGE MESSES UP MY MARGINS.
\pagenumbering{arabic}
\setlength{\parindent}{0em}{\parskip1.5ex plus0.5ex minus0.5ex}
\setlength{\headheight}{0.25in}
\setlength{\headsep}{0.25in}
\setlength{\topmargin}{0.0in}
\setlength{\textwidth}{6.0in}
\setlength{\textheight}{9.0in}
\setlength{\oddsidemargin}{0.00in}
\setlength{\evensidemargin}{0.00in}
\setlength{\leftmargin}{0.00in}
\pagestyle{myheadings} \markright{Blah Blah, Syllabus}
\begin{document}
% THIS DOCUMENT NEEDS TO BE FILLED WITH TEXT SO THAT pdflatex
% WILL HAVE TO WRITE AT LEAST TWO PAGES. ANY TEXT WILL DO.
\end{document}