I can't get paper size working with a custom width and height in cm. DVI and even PDF then when they are generated are US Letter.
\documentclass[10pt]{book}
\usepackage[width=5cm,height=20cm]{geometry}
\usepackage{lipsum}
\begin{document}
\title{Some title}
\author{Some author}
\maketitle
\lipsum[1-10]
\end{document}
I could use but I cant find a way to make it in cm. The result I wanted was x by y in cm PDF or dvi file.
\usepackage[a5paper]{geometry}
Thnx in advance folks :)