i am trying to use xelatex from the mactex 2012 package to build a paper at DIN A4 paper size. using any of the following commands does not do the trick, it keeps set at 21,59 × 27,94 cm which is us-letter format i guess. those are the commands i found by researching on the internet to change the paper size:
\documentclass[paper=a4]{report}
throws the error LaTeX Warning: Unused global option(s): [paper=a4]. same thing using just [a4]
\documentclass[a4paper]{report}
does not throw the error, but its not changing the paper size either. it simply does nothing. so my question is: how do i set the paper size to A4 = 21 × 29,7 cm correctly?
a4paper; only the KoMa-Script classes (scrartcl,scrrprtandscrbook) acceptpaper=a4. – egreg Jul 28 '12 at 8:28a4paperand the classreport, perhaps you can test with\usepackage[a4paper]{geometry}. – Alain Matthes Jul 28 '12 at 8:43a4paper. this entire latex thing is way too much magic to me... ;) – mcnesium Jul 28 '12 at 11:02