1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
<html>
<head><title>Document Classes</title></head>
<body>
<h1>Document Classes</h1>
<P>
</P>
<P>
Valid LaTeX document classes include:
</P>
<UL>
<LI>
article
<LI>
report
<LI>
letter
<LI>
book
<LI>
slides
</UL>
<P>
Other document classes are often available. See section <A href="sec1.html">Overview of LaTeX and Local Guide</A>, for details.
They are selected with the following command:
</P>
<P>
<CODE>\documentclass [options] {class}</CODE>
</P>
<P>
All the standard classes (except slides) accept the following options
for selecting the typeface size (10 pt is default):
</P>
<P>
10pt, 11pt, 12pt
</P>
<P>
All classes accept these options for selecting the paper size (default
is letter):
</P>
<P>
a4paper, a5paper, b5paper, letterpaper, legalpaper, executivepaper
</P>
<P>
Miscellaneous options:
</P>
<UL>
<LI>
landscape -- selects landscape format. Default is portrait.
<LI>
titlepage, notitlepage -- selects if there should be a separate title
page.
<LI>
leqno -- equation number on left side of equations. Default is right side.
<LI>
fleqn -- displayed formulas flush left. Default is centred.
<LI>
openbib -- use "open" bibliography format.
<LI>
draft, final -- mark/do not mark overfull boxes with a rule.
Default is final.
</UL>
<P>
These options are not available with the slides class:
</P>
<UL>
<LI>
oneside, twoside -- selects one- or twosided layout. Default is
oneside, except for the book class.
<LI>
openright, openany -- determines if a chapter should start on a
right-hand page. Default is openright for book.
<LI>
onecolumn, twocolumn -- one or two columns. Defaults to one column.
</UL>
<P>
The slides class offers the option <CODE>clock</CODE> for printing the time at
the bottom of each note.
</P>
<P>
If you specify more than one option, they must be separated by a comma.
</P>
<P>
Additional packages are loaded by a
</P>
<P>
<CODE>\usepackage[options]{pkg}</CODE>
</P>
<P>
command. If you specify more than one package, they must be separated by
a comma.
</P>
<P>
Any options given in the <CODE>\documentclass</CODE> command that are unknown
by the selected document class are passed on to the packages loaded with
<CODE>\usepackage</CODE>.
</P>
<P>
</P>
<p>--><a href="index.html">LaTeX index</a>
</body>
</html>
|