I'm trying to create a simple document, on letter paper with 1-inch margins all around. Here's the simple document I'm working with:
\documentclass[letterpaper,12pt]{report}
\usepackage[margin=1in]{geometry}
\begin{document}
\the\textwidth
\the\paperwidth
\end{document}
Given that letter paper is 8.5in by 11in (i.e., 612pt by 792pt), and the margins are 1in all around (i.e., 72pt on each side), I would expect the values of \textwidth and \paperwidth to be 612pt and 468pt respectively.
However, the actual result I get when I compile the above document is:
469.75502pt
614.295pt
I'm sure that some assumption I've made is incorrect, but I can't seem to find where I've gone wrong online. Can anyone explain why the actual results differ from my expectations?
1in=72.27ptand614.295pt-469.75502pt=154.5399pt, you have154.5399pt/2=72,2699pt=1in, so1inmargin. – karlkoeller Dec 27 '13 at 20:04texdoc texbytopicif you are using a tex live distribution), where these values are given on p.92 along with a bit of history. – barbara beeton Dec 27 '13 at 20:11