I am having trouble with text running off the bottom of the page in my .tex file. I am trying to include a Java program that I wrote, and when I use pdflatex, the program listing runs off the end of the page. I am using:
Code: Select all
\begin{verbatim}
java program goes here
...
end of java program
\end{verbatim}
here are the settings at the beginning of my document:
Code: Select all
\documentclass[letter]{report}
\usepackage{graphicx}
\usepackage{geometry}
\geometry{letterpaper}
\geometry{height=9in}
\geometry{includefoot}
\graphicspath{{./images/}}
\usepackage[T1]{fontenc}
\usepackage{ae,aecompl}
\raggedbottom
\begin{document}
...