I use the same tex file to create several different layouts with basically the same content. I have several switches and \ifthenelse constructs to control the layouts. Normally, I just have to set one or two boolean variables to activate a specific layout.
Some layouts require typeface size 10pt, some 11pt. Is it possible to change the size after \documentclass{article}? E.g., in a constuct such as:
\ifthenelse{\boolean{layoutA}}
{\setlength{\typefacesize}{10pt}}
{\setlength{\typefacesize}{11pt}}
Obviously, there is no \typefacesize. I would like to avoid having to change the typeface size in \documentclass all the time.
