[Tex/LaTex] Changing the pdf page size for Springer LaTeX Template

paper-sizepdftemplates

I am using the Springer template svmono to write my professor's geometry textbook. After compiling in Texmaker, I received a pdf file with page size 21.587cm x 28cm.
I want to change it into 16cm x 24cm, so what and how can I do?

Best Answer

You set dimensions of your PDF page by \pdfpagewidth and \pdfpageheight. However, with a standard parameters of svmono, text doesn't fit the page. An example of correction by setting \oddsidemargin and \evensidemargin is shown.

\documentclass{svmono}

\usepackage{lipsum} % A text for an illustration

\pdfpagewidth16cm
\pdfpageheight24cm

\oddsidemargin0cm % correction (PS)
\evensidemargin\oddsidemargin % correction (PS)

\begin{document}

\lipsum

\end{document}

enter image description here

Related Question