I want to create a TeX document for which the first (summary) page is \documentclass[10pt]{article}, but for which the rest of the document is \documentclass[12pt]{article}. Is there an easy way to do this?
|
|
||||
|
The following will locally reconfigure everything as if a different size agrument had been given to the document class. I assume not every setting will be effective though. But at least all the sizing macros will be appropriately redefined.
Note: This is based on loading the original size definitions of the For using with another class (for instance
needs to be replaced by the one used by the respective class (for instance |
|||||||||||||
|
|
You can change font size using And if the summary page is done using a special environment, like |
|||
|
|
|
A ConTeXt solution:
\setupbodyfont[10pt] \starttext Abstract \page \setupbodyfont[12pt] .... \stoptext
\setupbodyfont[12pt] \starttext \start \switchtobodyfont[10pt] Abstract: ... \stop \page Rest of the document \stoptext |
|||
|
|
|
An easy way would be to create a 10pt document for the summary and include its pdf output within the 12pt document. You could use the If you really wish to use just one document, you could redefine But I would choose the easier way, splitting the document code. |
|||
|
|

\newcommandon commands already defined). My thanks to Thorsten Donig, who apparently bothered to test it. – Harald Hanche-Olsen Oct 14 '10 at 20:33\documentclassand the appropriate packages that illustrates how the linked question did not provide a solution. Basically show what you tried to do that failed. – Peter Grill Dec 21 '12 at 22:02