[Tex/LaTex] Number of pages decreases when font size increases

class-optionsfontsize

Number of pages in my pdf-document [article] decreases when font size increases – and v.v.!

It kind of resembles an optimum of maximum page numbers as function of font size (which I don't want). When increasing the font size:

\documentclass[pdftex,18pt,a4paper,twoside,openright]{report}

to, e.g. 16pt or 18pt, the resulting font size as appears in the pdf-file, decreases as compared to 12pt! Any thoughts on that? The resulting font size as appears in the pdf-file also decreases for decreasing font size given in \documentclass[...].

Best Answer

The standard classes (article, report, book) only support font size options 10pt, 11pt, and 12pt. The default is 10pt.

If a different size is specified, e.g.:

\documentclass[18pt]{report}
\begin{document}
\end{document}

and no package can handle that option, then LaTeX complains with a warning:

LaTeX Warning: Unused global option(s):
    [18pt].

Then the default 10pt is used instead of the specified 18pt.

There are other classes that can handle more font size options, examples:

  • Class extreport: 8pt, 9pt, 10pt, 11pt, 12pt, 14pt 17pt, 20pt
  • Class memoir: 9pt, 10pt, 11pt, 12pt, 14pt, 17pt, 20pt, 25pt, 30pt

See also How to specify font size less than 10pt (or more than 12pt)?.

Related Question