The \documentstyle command
The plain command is
\documentstyle{type}
where type is
- article -- what you mostly use
- report or book -- with commands for chapters and and index, etc.
- letter -- for letters (duh...)
- amsart -- lets you use AMSTeX commands; recommended for math
You can also specify document style options:
\documentstyle[11pt]{article}
\documentstyle[11pt,leqno]{article}
\documentstyle[11pt,leqno,twocolumn]{article}
Last modified: Mon Oct 30 20:48:18 1995