Hello,
I would like to change the default font size of a latex file to, e.g., 12pt, in the preamable, and not within the class options. Specifically, I am using Ipe to generate drawings to be later included in my LaTeX document. Ipe generates text using a temporary latex file that starts with \documentclass{article}. I have no control over the options, hence cannot state \documentclass[12pt]{article}, which I would normally do. I can add preamable commands, but that's it.
So the question is: what would be an alternative to the [12pt] option of the article class. Maybe a package with a default options to specify the font size? I tried
\fontsize{12}{15}\selectfont
but it doesn't work. It seems like this is working only when used after \begin{document}.
Thanks,
Moshe
General ⇒ Changing default font size
NEW: TikZ book now 40% off at Amazon.com for a short time.

Changing default font size
In the standard document classes, the font size selection works as follows: The last digit of the default font size (0, 1 or 2) is saved in the command \@ptsize, then the file size1\@ptsize.clo is read, which changes some parameters. So you should be able to simulate the behavior by adding the following to the preamble:
Code: Select all
\makeatletter
\renewcommand*\@ptsize{2}
\let\small\relax
\let\footnotesize\relax
\let\scriptsize\relax
\let\tiny\relax
\let\large\relax
\let\Large\relax
\let\LARGE\relax
\let\huge\relax
\input{size1\@ptsize.clo}
\makeatother
Re: Changing default font size
Thanks, phi, this is exactly what I needed.
Cheers!
Cheers!