Latex Reference: Alphabetical Index
Latex Reference: Alphabetical Index
Alphabetical Index
# A B C D E F H I K L M N O P Q R S T U V W
Index by subject
Counters Internal counters used by LaTeX.
\addtocounter
\alph
\arabic
\fnsymbol
\newcounter
\refstepcounter
\roman
\stepcounter
\setcounter
\usecounter
\value
array
center
\centering
description
enumerate
eqnarray
equation
figure
flushleft
\raggedright
flushright
\raggedleft
itemize
letter
list
minipage
picture
\circle
\dashbox
\frame
\framebox
\line
\linethickness
\makebox
\multiput
\oval
\put
\shortstack
\vector
quotation
quote
tabbing
table
tabular
\cline
\hline
\multicolumn
\vline
thebibliography
\bibitem
\cite
\nocite
Using BibTeX
theorem
titlepage
verbatim
\verb
verse
Alphabetical index
# $
\!
\' (tabbing)
\(
\)
\+
\,
\- (hyphenation)
\- (tabbing)
\;
\<
\=
\>
\[
\\
\]
\` (tabbing)
A \a
\addcontentsline
\address
\addtocontents
\addtocounter
\addtolength
\addvspace
\alph
\Alph
\appendix
\arabic
array (environment)
\author
B \backslash
\begin
\bfseries
\bibitem
\bibliography
\bibliographystyle
\bigskip
C \caption
\cc
\cdots
center
\centering
\chapter
\circle
\cite
\cleardoublepage
\clearpage
\cline
\closing
D \dashbox
\date
\ddots
\depth
description
\documentclass
\dotfill
E \emph
\encl
\end
\enlargethispage
enumerate
eqnarray
equation
F \fbox
figure
\flushbottom
flushleft
flushright
\fnsymbol
\fontencoding
\fontfamily
\fontseries
\fontshape
\fontsize
\footnote
\footnotemark
\footnotesize
\footnotetext
\frac
\frame
\framebox
\fussy
H \height
\hfill
\hline
\hrulefill
\hspace
\Huge
\huge
\hyphenation
I \include
\includeonly
\indent
\input
\item
itemize
\itshape
K \kill
L \label
\large
\LARGE
\Large
\ldots
\lefteqn
letter
\line
\linebreak
\linethickness
list
\listoffigures
\listoftables
\location
lrbox
M \makebox
\makebox (picture)
\makelabels
\maketitle
\markboth
\markright
\mathbf
\mathcal
\mathit
\mathnormal
\mathrm
\mathsf
\mathtt
\mathversion
\mbox
\mdseries
\medskip
minipage
\multicolumn
\multiput
N \name
\newcommand
\newcounter
\newenvironment
\newfont
\newlength
\newline
\newpage
\newsavebox
\newtheorem
\nocite
\nofiles
\noindent
\nolinebreak
\nopagebreak
\normalfont
\normalsize
O \onecolumn
\opening
\oval
\overbrace
\overline
P \pagebreak
\pagenumbering
\pageref
\pagestyle
\par
\paragraph
\parbox
picture
\ps
\pushtabs
\put
Q quotation
quote
R \raggedbottom
\raggedleft
\raggedright
\raisebox
\ref
\refstepcounter
\rmfamily
\roman
\Roman
\rule
S \savebox
\sbox
\scriptsize
\scshape
\section
\selectfont
\setcounter
\setlength
\settodepth
\settoheight
\settowidth
\sffamily
\shortstack
\signature
\sloppy
\slshape
\small
\smallskip
\sqrt
\startbreaks
\stepcounter
\stopbreaks
\subparagraph
\subsection
\subsubsection
\symbol
T tabbing
table
\tableofcontents
tabular
\telephone
\textbf
\textit
\textmd
\textnormal
\textrm
\textsc
\textsf
\textsl
\texttt
\textup
\thanks
thebibliography
theorem
\thispagestyle
\tiny
\title
titlepage
\today
\totalheight
\ttfamily
\twocolumn
\typein
\typeout
U \underbrace
\underline
\upshape
\usebox
\usecounter
\usefont
\usepackage
V \value
\vdots
\vector
\verb
verbatim
verse
\vfill
\vline
\vspace
W \width
Counters
Everything LaTeX numbers for you has a counter associated with it. The name
of the counter is the same as the name of the environment or command that
produces the number, except with no \. (enumi - enumiv are used for the
nested enumerate environment.) Below is a list of the counters used in
LaTeX's standard document classes to control numbering.
\addtocounter
\addtocounter{counter}{value}
The \addtocounter command increments the counter by the amount specified by
the value argument. The value argument can be negative.
\alph
\alph{counter}
\arabic
\arabic{counter}
The \arabic command causes the value of the counter to be printed in Arabic
numbers, i.e., 3.
\fnsymbol
\fnsymbol{counter}
The \fnsymbol command causes the value of the counter to be printed in a specific
sequence of nine symbols that can be used for numbering footnotes.
\newcounter
\newcounter{foo}[counter]
The \newcounter command defines a new counter named foo. The counter is
initialized to zero.
The optional argument [counter] causes the counter foo to be reset whenever
the counter named in the optional argument is incremented.
\refstepcounter
\refstepcounter{counter}
\stepcounter
\stepcounter{counter}
The \stepcounter command adds one to the counter and resets all subsidiary
counters.
\setcounter
\setcounter{counter}{value}
\usecounter
\usecounter{counter}
\value
\value{counter}
The \value command produces the value of the counter named in the mandatory
argument. It can be used where LaTeX expects an integer or number, such as
the second argument of a \setcounter or \addtocounter command, or in:
\hspace{\value{foo}\parindent}
Cross References
One reason for numbering things like figures and equations is to refer the
reader to them, as in "See Figure 3 for more details."
\label
\label{key}
A \label command appearing in ordinary text assigns to the key the number of
the current sectional unit; one appearing inside a numbered environment
assigns that number to the key.
To avoid accidentally creating two labels with the same name, it is common to
use labels consisting of a prefix and a suffix separated by a colon. The
prefixes conventionally used are
\pageref
\pageref{key}
The \pageref command produces the page number of the place in the text
where the corresponding \label command appears. ie. where \label{key}
appears.
\ref
\ref{key}
The \ref command produces the number of the sectional unit, equation
number, ... of the corresponding \label command.
Definitions
\newcommand: Define a new command.
\newenvironment: Define a new environment.
\newtheorem: Define a new theorem-like environment.
\newfont: Define a new font name.
\newcommand
\newcommand{cmd}[args]{definition}
\newcommand{cmd}[args][default]{definition}
\renewcommand{cmd}[args]{definition}
\renewcommand{cmd}[args][default]{definition}
cmd
A command name beginning with a \. For \newcommand it must not be already
defined and must not begin with \end; for \renewcommand it must already be
defined.
args
An integer from 1 to 9 denoting the number of arguments of the
command being defined. The default is for the command to have no
arguments.
def
If this optional parameter is present, it means that the command's first
argument is optional. The default value of the optional argument is def.
definition
The text to be substituted for every occurrence of cmd; a parameter of the
form #n in cmd is replaced by the text of the nth argument when this
substitution takes place.
\newenvironment
\newenvironment{nam}[args]{begdef}{enddef}
\newenvironment{nam}[args][default]{begdef}{enddef}
\renewenvironment{nam}[args]{begdef}{enddef}
nam
The name of the environment. For \newenvironment there must be no
currently defined environment by that name, and the command \nam must
be undefined. For \renewenvironment the environment must already be
defined.
args
An integer from 1 to 9 denoting the number of arguments of the newly-
defined environment. The default is no arguments.
default
If this is specified, the first argument is optional, and default gives the
default value for that argument.
begdef
The text substituted for every occurrence of \begin{nam}; a parameter of the
form #n in cmd is replaced by the text of the nth argument when this
substitution takes place.
enddef
The text substituted for every occurrence of \end{nam}. It may not contain
any argument parameters.
\newtheorem
\newtheorem{env_name}{caption}[within]
\newtheorem{env_name}[numbered_like]{caption}
env_name
The name of the environment to be defined. A string of letters. It must
not be the name of an existing environment or counter.
caption
The text printed at the beginning of the environment, right before the
number. This may simply say "Theorem", for example.
within
The name of an already defined counter, usually of a sectional unit.
Provides a means of resetting the new theorem counter within the
sectional unit.
numbered_like
The name of an already defined theorem-like environment.
\newfont
\newfont{cmd}{font_name}
Defines the command name cmd, which must not be currently defined, to be a
declaration that selects the font named font_name to be the current font.
Document Classes
Valid LaTeX document classes include:
article
report
letter
book
slides
Other document classes are often available. They are selected with the
following command:
All the standard classes (except slides) accept the following options for
selecting the typeface size (10 pt is default):
All classes accept these options for selecting the paper size (default is letter):
Miscellaneous options:
The slides class offers the option clock for printing the time at the bottom of
each note.
If you specify more than one option, they must be separated by a comma.
\usepackage[options]{pkg}
command. If you specify more than one package, they must be separated by
a comma.
Any options given in the \documentclass command that are unknown by the
selected document class are passed on to the packages loaded with
\usepackage.
Layout
Miscellaneous commands for controlling the general layout of the page.
\flushbottom
The \flushbottom declaration makes all text pages the same height, adding extra
vertical space when necessary to fill out the page.
\onecolumn
\raggedbottom
The \raggedbottom declaration makes all pages the height of the text on that
page. No extra vertical space is added.
\twocolumn
\twocolumn[text]
The \twocolumn declaration starts a new page and produces two-column output.
If the optional text argument is present, it is typeset in one-column mode.
Environments
LaTeX provides a number of different paragraph-making environments. Each
environment begins and ends in the same manner.
\begin{environment-name}
.
.
.
\end{environment-name}
array
\begin{array}{col1col2...coln}
column 1 entry & column 2 entry ... & column n entry \\
.
.
.
\end{array}
Math arrays are produced with the array environment. It has a single
mandatory argument describing the number of columns and the alignment
within them. Each column, coln, is specified by a single letter that tells how
items in that row should be formatted.
c -- for centred
l -- for flush left
r -- for flush right
Column entries must be separated by an &. Column entries may include other
LaTeX commands. Each row of the array must be terminated with the string \\.
Note that the array environment can only be used in math mode, so normally it
is used inside an equation environment.
center
\begin{center}
Text on line 1 \\
Text on line 2 \\
.
.
.
\end{center}
\centering
Unlike the center environment, the \centering command does not start a new
paragraph; it simply changes how LaTeX formats paragraph units. To affect a
paragraph unit's format, the scope of the declaration must contain the blank
line or \end command (of an environment like quote) that ends the paragraph
unit.
description
\begin{description}
\item [label] First item
\item [label] Second item
.
.
.
\end{description}
The description environment is used to make labelled lists. The label is bold face
and flushed right.
enumerate
\begin{enumerate}
\item First item
\item Second item
.
.
.
\end{enumerate}
Each item of an enumerated list begins with an \item command. There must be
at least one \item command within the environment.
The enumerate environment uses the enumi through enumiv counters (see section
Counters). The type of numbering can be changed by redefining \theenumi etc.
eqnarray
\begin{eqnarray}
math formula 1 \\
math formula 2 \\
.
.
.
\end{eqnarray}
An equation number is placed on every line unless that line has a \nonumber
command.
The command \lefteqn is used for splitting long formulas across lines. It
typesets its argument in display style flush left in a box of zero width.
equation
\begin{equation}
math formula
\end{equation}
The equation environment centres your equation on the page and places the
equation number in the right margin.
figure
\begin{figure}[placement]
\caption{figure title}
\end{figure}
Figures are objects that are not part of the normal text, and are usually
"floated" to a convenient place, like the top of a page. Figures will not be split
between two pages.
The optional argument [placement] determines where LaTeX will try to place your
figure. There are four places where LaTeX can possibly put a float:
The standard report and article classes use the default placement tbp.
The body of the figure is made up of whatever text, LaTeX commands, etc. you
wish. The \caption command allows you to title your figure.
flushleft
\begin{flushleft}
Text on line 1 \\
Text on line 2 \\
.
.
.
\end{flushleft}
Unlike the flushleft environment, the \raggedright command does not start a new
paragraph; it simply changes how LaTeX formats paragraph units. To affect a
paragraph unit's format, the scope of the declaration must contain the blank
line or \end command (of an environment like quote) that ends the paragraph
unit.
flushright
\begin{flushright}
Text on line 1 \\
Text on line 2 \\
.
.
.
\end{flushright}
\raggedleft
Unlike the flushright environment, the \raggedleft command does not start a new
paragraph; it simply changes how LaTeX formats paragraph units. To affect a
paragraph unit's format, the scope of the declaration must contain the blank
line or \end command (of an environment like quote) that ends the paragraph
unit.
itemize
\begin{itemize}
\item First item
\item Second item
.
.
.
\end{itemize}
The itemize environment produces a "bulleted" list. Itemizations can be nested
within one another, up to four levels deep. They can also be nested within
other paragraph-making environments.
Each item of an itemized list begins with an \item command. There must be at
least one \item command within the environment.
The itemize environment uses the itemi through itemiv counters (see section
Counters). The type of numbering can be changed by redefining \theitemi etc.
letter
list
The list environment is a generic environment which is used for defining many
of the more specific environments. It is seldom used in documents, but often
in macros.
\begin{list}{label}{spacing}
\item First item
\item Second item
.
.
.
\end{list}
The {label} argument specifies how items should be labelled. This argument is
a piece of text that is inserted in a box to form the label. This argument can
and usually does contain other LaTeX commands.
minipage
\begin{minipage}[position]{width}
text
\end{minipage}
NOTE: Don't put one minipage inside another if you are using footnotes; they
may wind up at the bottom of the wrong minipage.
picture
\begin{picture}(width,height)(x offset,y offset)
.
.
picture commands
.
.
\end{picture}
The picture environment allows you to create just about any kind of picture you
want containing text, lines, arrows and circles. You tell LaTeX where to put
things in the picture by specifying their coordinates. A coordinate is a number
that may have a decimal point and a minus sign -- a number like 5, 2.3 or
-3.1416. A coordinate specifies a length in multiples of the unit length \unitlength,
so if \unitlength has been set to 1cm, then the coordinate 2.54 specifies a length
of 2.54 centimetres. You can change the value of \unitlength anywhere you
want, using the \setlength command, but strange things will happen if you try
changing it inside the picture environment.
\begin{picture}(100,200)(10,20)
produces a picture of width 100 millimeters and height 200 millimeters, whose
lower-left corner is the point (10,20) and whose upper-right corner is
therefore the point (110,220). When you first draw a picture, you will omit the
optional argument, leaving the origin at the lower-left corner. If you then want
to modify your picture by shifting everything, you just add the appropriate
optional argument.
\put (11.3,-.3){...}
puts the object specified by ... in the picture, with its reference point at
coordinates (11.3,-.3). The reference points for various objects will be
described below.
The \put command creates an LR box. You can put anything in the text
argument of the \put command that you'd put into the argument of an \mbox
and related commands. When you do this, the reference point will be the
lower left corner of the box.
Picture commands:
\circle
\circle[*]{diameter}
The \circle command produces a circle with a diameter as close to the
specified one as possible. If the *-form of the command is used, LaTeX draws a
solid circle.
\dashbox
\dashbox{dash_length}(width,height){...}
The \dashbox has an extra argument which specifies the width of each dash. A
dashed box looks best when the width and height are multiples of the dash_length.
\frame
\frame{...}
The \frame command puts a rectangular frame around the object specified in
the argument. The reference point is the bottom left corner of the frame. No
extra space is put between the frame and the object.
\framebox
\framebox(width,height)[position]{...}
The \framebox command is exactly the same as the \makebox command, except
that it puts a frame around the outside of the box that it creates.
\line
The \line command draws a line of the specified length and slope.
Note that LaTeX can only draw lines with slope = x/y, where x and y have
integer values from -6 through 6.
\linethickness
\linethickness{dimension}
Declares the thickness of horizontal and vertical lines in a picture environment
to be dimension, which must be a positive length. It does not affect the
thickness of slanted lines and circles, or the quarter circles drawn by \oval to
form the corners of an oval.
\makebox
\makebox(width,height)[position]{...}
The optional argument, [position], specifies the quadrant that your text
appears in. You may select up to two of the following:
\multiput
The \multiput command can be used when you are putting the same object in a
regular pattern across a picture.
\oval
\oval(width,height)[portion]
The \oval command produces a rectangle with rounded corners. The optional
argument, [portion], allows you to select part of the oval.
Note that the "corners" of the oval are made with quarter circles with a
maximum radius of 20 pt, so large "ovals" will look more like boxes with
rounded corners.
\put
The \put command places the item specified by the mandatory argument at
the given coordinates.
\shortstack
The \shortstack command produces a stack of objects. The valid positions are:
\vector
The \vector command draws a line with an arrow of the specified length and
slope. The x and y values must lie between -4 and +4, inclusive.
quotation
\begin{quotation}
text
\end{quotation}
The margins of the quotation environment are indented on the left and the
right. The text is justified at both margins and there is paragraph indentation.
Leaving a blank line between text produces a new paragraph.
quote
\begin{quote}
text
\end{quote}
The margins of the quote environment are indented on the left and the right.
The text is justified at both margins. Leaving a blank line between text
produces a new paragraph.
tabbing
\begin{tabbing}
text \= more text \= still more text \= last text \\
second row \> \> more \\
.
.
.
\end{tabbing}
It is best suited for cases where the width of each column is constant and
known in advance.
This environment can be broken across pages, unlike the tabular environment.
\=
Sets a tab stop at the current position.
\>
Advances to the next tab stop.
\<
This command allows you to put something to the left of the local margin
without changing the margin. Can only be used at the start of the line.
\+
Moves the left margin of the next and all the following commands one tab
stop to the right.
\-
Moves the left margin of the next and all the following commands one tab
stop to the left.
\'
Moves everything that you have typed so far in the current column, i.e.
everything from the most recent \>, \<, \', \\, or \kill command, to the
right of the previous column, flush against the current column's tab stop.
\`
Allows you to put text flush right against any tab stop, including tab stop
0. However, it can't move text to the right of the last column because
there's no tab stop there. The \` command moves all the text that follows
it, up to the \\ or \end{tabbing} command that ends the line, to the right
margin of the tabbing environment. There must be no \> or \' command
between the \` and the command that ends the line.
\kill
Sets tab stops without producing text. Works just like \\ except that it
throws away the current line instead of producing output for it. The effect
of any \=, \+ or \- commands in that line remain in effect.
\pushtabs
Saves all current tab stop positions. Useful for temporarily changing tab
stop positions in the middle of a tabbing environment.
\pushtabs
Restores the tab stop positions saved by the last \pushtabs.
\a
In a tabbing environment, the commands \=, \' and \` do not produce
accents as normal. Instead, the commands \a=, \a' and \a` are used.
\begin{tabbing}
function \= fact(n : integer) : integer;\\
\> begin \= \+ \\
\> if \= n $>$ 1 then \+ \\
fact := n * fact(n-1) \- \\
else \+ \\
fact := 1; \-\- \\
end;\\
\end{tabbing}
table
\begin{table}[placement]
\caption{table title}
\end{table}
Tables are objects that are not part of the normal text, and are usually
"floated" to a convenient place, like the top of a page. Tables will not be split
between two pages.
The optional argument [placement] determines where LaTeX will try to place your
table. There are four places where LaTeX can possibly put a float:
The standard report and article classes use the default placement [tbp].
The body of the table is made up of whatever text, LaTeX commands, etc., you
wish. The \caption command allows you to title your table.
tabular
\begin{tabular}[pos]{cols}
column 1 entry & column 2 entry ... & column n entry \\
.
.
.
\end{tabular}
or
\begin{tabular*}{width}[pos]{cols}
column 1 entry & column 2 entry ... & column n entry \\
.
.
.
\end{tabular*}
width
Specifies the width of the tabular* environment. There must be rubber
space between columns that can stretch to fill out the specified width.
pos
Specifies the vertical position; default is alignment on the center of the
environment.
t - align on top row
b - align on bottom row
cols
Specifies the column formatting. It consists of a sequence of the
following specifiers, corresponding to the sequence of columns and
intercolumn material.
l - A column of left-aligned items.
r - A column of right-aligned items.
c - A column of centred items.
| - A vertical line the full height and depth of the environment.
@{text} - This inserts text in every row. An @-expression suppresses
the intercolumn space normally inserted between columns; any
desired space between the inserted text and the adjacent items
must be included in text. An \extracolsep{wd} command in an
@-expression causes an extra space of width wd to appear to the left
of all subsequent columns, until countermanded by another
\extracolsep command. Unlike ordinary intercolumn space, this extra
space is not suppressed by an @-expression. An \extracolsep
command can be used only in an @-expression in the cols argument.
p{wd} - Produces a column with each item typeset in a parbox of width
wd, as if it were the argument of a \parbox[t]{wd} command. However, a
\\ may not appear in the item, except in the following situations:
1. inside an environment like minipage, array, or tabular.
2. inside an explicit \parbox.
3. in the scope of a \centering, \raggedright, or \raggedleft declaration.
The latter declarations must appear inside braces or an
environment when used in a p-column element.
*{num}{cols} - Equivalent to num copies of cols, where num is any positive
integer and cols is any list of column-specifiers, which may contain
another *-expression.
\cline
\cline{i-j}
The \cline command draws horizontal lines across the columns specified,
beginning in column i and ending in column j, which are identified in the
mandatory argument.
\hline
The \hline command will draw a horizontal line the width of the table. It's most
commonly used to draw a line at the top, bottom, and between the rows of
the table.
\multicolumn
\multicolumn{cols}{pos}{text}
The \multicolumn is used to make an entry that spans several columns. The first
mandatory argument, cols, specifies the number of columns to span. The
second mandatory argument, pos, specifies the formatting of the entry; c for
centred, l for flushleft, r for flushright. The third mandatory argument, text,
specifies what text is to make up the entry.
\vline
The \vline command will draw a vertical line extending the full height and depth
of its row. An \hfill command can be used to move the line to the edge of the
column. It can also be used in an @-expression.
thebibliography
\begin{thebibliography}{widest-label}
\bibitem[label]{cite_key}
.
.
.
\end{thebibliography}
widest-label:
Text that, when printed, is approximately as wide as the widest
item label produces by the \bibitem commands.
\bibitem
\bibitem[label]{cite_key}
The \bibitem command generates an entry labelled by label. If the label argument
is missing, a number is generated as the label, using the enumi counter. The
cite_key is any sequence of letters, numbers, and punctuation symbols not
containing a comma. This command writes an entry on the `.aux' file
containing cite_key and the item's label. When this `.aux' file is read by the
\begin{document} command, the item's label is associated with cite_key, causing the
reference to cite_key by a \cite command to produce the associated label.
\cite
\cite[text]{key_list}
\nocite
\nocite{key_list}
The \nocite command produces no text, but writes key_list, which is a list of one
or more citation keys, on the `.aux' file.
Using BibTeX
If you use the BibTeX program by Oren Patashnik (highly recommended if you
need a bibliography of more than a couple of titles) to maintain your
bibliography, you don't use the thebibliography environment. Instead, you include
the lines
\bibliographystyle{style}
\bibliography{bibfile}
where style refers to a file style.bst, which defines how your citations will look.
The standard styles distributed with BibTeX are:
alpha
Sorted alphabetically. Labels are formed from name of author and year of
publication.
plain
Sorted alphabetically. Labels are numeric.
unsrt
Like plain, but entries are in order of citation.
abbrv
Like plain, but more compact labels.
In addition, numerous other BibTeX style files exist tailored to the demands of
various publications.
The argument to \bibliography refers to the file bibfile.bib, which should contain
your database in BibTeX format. Only the entries referred to via \cite and \nocite
will be listed in the bibliography.
theorem
\begin{theorem}
theorem text
\end{theorem}
The theorem environment produces "Theorem x" in boldface followed by your
theorem text.
titlepage
\begin{titlepage}
text
\end{titlepage}
The titlepage environment creates a title page, i.e. a page with no printed page
number or heading. It also causes the following page to be numbered page
one. Formatting the title page is left to you. The \today command comes in
handy for title pages.
Note that you can use the \maketitle (see section \maketitle) command to
produce a standard title page.
verbatim
\begin{verbatim}
text
\end{verbatim}
\verb
verse
\begin{verse}
text
\end{verse}
The verse environment is designed for poetry, though you may find other uses
for it.
The margins are indented on the left and the right. Separate the lines of each
stanza with \\, and use one or more blank lines to separate the stanzas.
Footnotes
Footnotes can be produced in one of two ways. They can be produced with
one command, the \footnote command. They can also be produced with two
commands, the \footnotemark and the \footnotetext commands. See the specific
command for information on why you would use one over the other.
\footnote
\footnote[number]{text}
The \footnote command places the numbered footnote text at the bottom of the
current page. The optional argument, number, is used to change the default
footnote number. This command can only be used in outer paragraph mode;
i.e., you cannot use it in sectioning commands like \chapter, in figures, tables or
in a tabular environment.
\footnotemark
The \footnotemark command puts the footnote number in the text. This command
can be used in inner paragraph mode. The text of the footnote is supplied by
the \footnotetext command.
\footnotemark[\value{footnote}]
\footnotetext
\footnotetext[number]{text}
The \footnotetext command produces the text to be placed at the bottom of the
page. This command can come anywhere after the \footnotemark command. The
\footnotetext command must appear in outer paragraph mode.
The optional argument, number, is used to change the default footnote number.
Lengths
A length is a measure of distance. Many LaTeX commands take a length as an
argument.
\newlength
\newlength{\gnat}
\setlength
\setlength{\gnat}{length}
The \setlength command is used to set the value of a length command. The length
argument can be expressed in any terms of length LaTeX understands, i.e.,
inches ( in), millimeters ( mm), points ( pt), etc.
\addtolength
\addtolength{\gnat}{length}
\settodepth
\settodepth{\gnat}{text}
The \settodepth command sets the value of a length command equal to the depth
of the text argument.
\settoheight
\settoheight{\gnat}{text}
The \settoheight command sets the value of a length command equal to the
height of the text argument.
\settowidth
\settowidth{\gnat}{text}
The \settowidth command sets the value of a length command equal to the width
of the text argument.
Predefined lengths
\width
\height
\depth
\totalheight
\makebox[2\width]{Get a stretcher}
Letters
You can use LaTeX to typeset letters, both personal and business. The letter
document class is designed to make a number of letters at once, although
you can make just one if you so desire.
Your `.tex' source file has the same minimum commands as the other
document classes, i.e., you must have the following commands as a minimum:
\documentclass{letter}
\begin{document}
... letters ...
\end{document}
Each letter is a letter environment, whose argument is the name and address
of the recipient. For example, you might have:
\begin{letter}{Mr. Joe Smith\\ 2345 Princess St.
\\ Edinburgh, EH1 1AA}
...
\end{letter}
The letter itself begins with the \opening command. The text of the letter follows.
It is typed as ordinary LaTeX input. Commands that make no sense in a letter,
like \chapter, do not work. The letter closes with a \closing command.
After the closing, you can have additional material. The \cc command produces
the usual "cc: ...". There's also a similar \encl command for a list of enclosures.
With both these commands, use \\ to separate the items.
\address
\address{Return address}
The return address, as it should appear on the letter and the envelope.
Separate lines of the address should be separated by \\ commands. If you do
not make an \address declaration, then the letter will be formatted for copying
onto your organization's standard letterhead. If you give an \address
declaration, then the letter will be formatted as a personal letter.
\cc
\cc{Kate Schechter\\Rob McKenna}
Generate a list of other persons the letter was sent to. Each name is printed
on a separate line.
\closing
\closing{text}
\closing{Best Regards,}
\encl
\encl{CV\\Certificates}
\location
\location{address}
This modifies your organization's standard address. This only appears if the
firstpage pagestyle is selected.
\makelabels
\makelabels{number}
If you issue this command in the preamble, LaTeX will create a sheet of
address labels. This sheet will be output before the letters.
\name
\name{June Davenport}
Your name, used for printing on the envelope together with the return
address.
\opening
\opening{text}
The letter begins with the \opening command. The mandatory argument, text, is
whatever text you wish to start your letter, i.e.,
\opening{Dear Joe,}
\ps
\ps
\signature
\signature{Harvey Swick}
Your name, as it should appear at the end of the letter underneath the space
for your signature. Items that should go on separate lines should be
separated by \\ commands.
\startbreaks
\startbreaks
\stopbreaks
\stopbreaks
\telephone
\telephone{number}
This is your telephone number. This only appears if the firstpage pagestyle is
selected.
\\
\\[*][extra-space]
The command tells LaTeX to start a new line. It has an optional argument,
\\
extra-space,
that specifies how much extra vertical space is to be inserted
before the next line. This can be a negative amount.
The \\* command is the same as the ordinary \\ command except that it tells
LaTeX not to start a new page after the line.
\-
The \- command tells LaTeX that it may hyphenate the word at that point.
LaTeX is very good at hyphenating, and it will usually find all correct
hyphenation points. The \- command is used for the exceptional cases.
Note that when you insert \- commands in a word, the word will only be
hyphenated at those points and not at any of the hyphenation points that
LaTeX might otherwise have chosen.
\cleardoublepage
The \cleardoublepage command ends the current page and causes all figures and
tables that have so far appeared in the input to be printed. In a two-sided
printing style, it also makes the next page a right-hand (odd-numbered) page,
producing a blank page if necessary.
\clearpage
The \clearpage command ends the current page and causes all figures and
tables that have so far appeared in the input to be printed.
\enlargethispage
\enlargethispage{size}
\enlargethispage*{size}
Enlarge the \textheight for the current page by the specified amount; e.g.
\enlargethispage{\baselineskip} will allow one additional line.
The starred form tries to squeeze the material together on the page as much
as possible. This is normally used together with an explicit \pagebreak.
\fussy
\fussy
This declaration (which is the default) makes TeX more fussy about line
breaking. This can avoids too much space between words, but may produce
overfull boxes.
\hyphenation
\hyphenation{words}
\linebreak
\linebreak[number]
The \linebreak command tells LaTeX to break the current line at the point of the
command. With the optional argument, number, you can convert the \linebreak
command from a demand to a request. The number must be a number from 0
to 4. The higher the number, the more insistent the request is.
The \linebreak command causes LaTeX to stretch the line so it extends to the
right margin.
\newline
The \newline command breaks the line right where it is. It can only be used in
paragraph mode.
\newpage
\nolinebreak
\nolinebreak[number]
The \nolinebreak command prevents LaTeX from breaking the current line at the
point of the command. With the optional argument, number, you can convert the
\nolinebreak command from a demand to a request. The number must be a
number from 0 to 4. The higher the number, the more insistent the request is.
\nopagebreak
\nopagebreak[number]
The \nopagebreak command prevents LaTeX from breaking the current page at
the point of the command. With the optional argument, number, you can convert
the \nopagebreak command from a demand to a request. The number must be a
number from 0 to 4. The higher the number, the more insistent the request is.
\pagebreak
\pagebreak[number]
The \pagebreak command tells LaTeX to break the current page at the point of
the command. With the optional argument, number, you can convert the \pagebreak
command from a demand to a request. The number must be a number from 0
to 4. The higher the number, the more insistent the request is.
\sloppy
\sloppy
This declaration makes TeX less fussy about line breaking. This can prevent
overfull boxes, but may leave too much space between words.
Making Paragraphs
A paragraph is ended by one or more completely blank lines -- lines not
containing even a %. A blank line should not appear where a new paragraph
cannot be started, such as in math mode or in the argument of a sectioning
command.
\indent
\indent
This produces a horizontal space whose width equals the width of the
paragraph indentation. It is used to add paragraph indentation where it would
otherwise be suppressed.
\noindent
\noindent
\par
Margin Notes
The command \marginpar[left]{right} creates a note in the margin. The first line
will be at the same height as the line in the text where the \marginpar occurs.
When you only specify the mandatory argument right, the text will be placed
By issuing the command \reversemarginpar, you can force the marginal notes to
go into the opposite (inside) margin.
When you specify both arguments, left is used for the left margin, and right is
used for the right margin.
The first word will normally not be hyphenated; you can enable hyphenation by
prefixing the first word with a \hspace{0pt} command.
Math Formulae
There are three environments that put LaTeX in math mode:
math
For Formulae that appear right in the text.
displaymath
For Formulae that appear on their own line.
equation
The same as the displaymath environment except that it adds an
equation number in the right margin.
The environment can be used in both paragraph and LR mode, but the
math
and equation environments can be used only in paragraph mode. The
displaymath
math and displaymath environments are used so often that they have the following
short forms:
In fact, the math environment is so common that it has an even shorter form:
Math Symbols
LaTeX provides almost any mathematical symbol you're likely to need. The
commands for generating them can be used only in math mode. For example,
if you include $\pi$ in your source, you will get the symbol in your output.
1. \; - a thick space
2. \: - a medium space
3. \, - a thin space
4. \! - a negative thin space
Math Miscellany
\cdots
Produces a horizontal ellipsis where the dots are raised to the center of
the line. eg.
\ddots
Produces a diagonal ellipsis. eg.
\frac{num}{den}
Produces the fraction num divided by den. eg.
\ldots
Produces an ellipsis. This command works in any mode, not just math
mode. eg.
\overbrace{text}
Generates a brace over text. eg.
\overline{text}
Causes the argument text to be overlined. eg.
\sqrt[root]{arg}
Produces the square root of its argument. The optional argument, root,
determines what root to produce, i.e., the cube root of x+y would be
typed as $\sqrt[3]{x+y}$. eg.
\underbrace{text}
Generates text with a brace underneath. eg.
\underline{text}
Causes the argument text to be underlined. This command can also be
used in paragraph and LR modes. eg.
\vdots
Produces a vertical ellipsis. eg.
Modes
When LaTeX is processing your input text, it is always in one of three modes:
Paragraph mode
Math mode
Left-to-right mode, called LR mode for short
"Paragraph mode" is the most common; it's the one LaTeX is in when
processing ordinary text. In that mode, LaTeX breaks your text into lines and
breaks the lines into pages. LaTeX is in "math mode" when it's generating a
mathematical formula. In "LR mode", as in paragraph mode, LaTeX considers
the output that it produces to be a string of words with spaces between
them. However, unlike paragraph mode, LaTeX keeps going from left to right;
it never starts a new line in LR mode. Even if you put a hundred words into an
\mbox, LaTeX would keep typesetting them from left to right inside a single box,
and then complain because the resulting box was too wide to fit on the line.
LaTeX is in LR mode when it starts making a box with an \mbox command. You
can get it to enter a different mode inside the box - for example, you can
make it enter math mode to put a formula in the box. There are also several
text-producing commands and environments for making a box that put LaTeX
in paragraph mode. The box make by one of these commands or
environments will be called a parbox. When LaTeX is in paragraph mode while
making a box, it is said to be in "inner paragraph mode". Its normal paragraph
mode, which it starts out in, is called "outer paragraph mode".
Page Styles
The \documentclass command determines the size and position of the page's
head and foot. The page style determines what goes in them.
\maketitle
\maketitle
\author
\author{names}
The \author command declares the author(s), where names is a list of authors
separated by \and commands. Use \\ to separate lines within a single author's
entry -- for example, to give the author's institution or address.
\date
\date{text}
The \date command declares text to be the document's date. With no \date
command, the current date is used.
\thanks
\thanks{text}
\title
\title{text}
The \title command declares text to be the title. Use \\ to tell LaTeX where to
start a new line in a long title.
\pagenumbering
\pagenumbering{num_style}
The \pagestyle command changes the style from the current page on
throughout the remainder of your document.
\markboth
\markboth{left head}{right head}
The \markboth command is used in conjunction with the page style myheadings for
setting both the left and the right heading. You should note that a "left-hand
heading" is generated by the last \markboth command before the end of the
page, while a "right-hand heading" is generated by the first \markboth or \markright
that comes on the page if there is one, otherwise by the last one before the
page.
\markright
\markright{right head}
The \markright command is used in conjunction with the page style myheadings for
setting the right heading, leaving the left heading unchanged. You should
note that a "left-hand heading" is generated by the last \markboth command
before the end of the page, while a "right-hand heading" is generated by the
first \markboth or \markright that comes on the page if there is one, otherwise by
the last one before the page.
\thispagestyle
\thispagestyle{option}
The \thispagestyle command works in the same manner as the \pagestyle
command except that it changes the style for the current page only.
Sectioning
Sectioning commands provide the means to structure your text into units.
\part
\chapter (report and book class only)
\section
\subsection
\subsubsection
\paragraph
\subparagraph
\chapter[optional]{title}
You may not want the same thing to appear in these other two places as
appears in the text heading. To handle this situation, the sectioning
commands have an optional argument that provides the text for these other
two purposes.
All sectioning commands have *-forms that print a title, but do not include a
number and do not make an entry in the table of contents.
\appendix
The command changes the way sectional units are numbered. The
\appendix
\appendix command generates no text and does not affect the numbering of
parts. The normal use of this command is something like
Horizontal space
\dotfill: Stretchable horizontal dots.
\hfill: Stretchable horizontal space.
\hrulefill: Stretchable horizontal rule.
\hspace: Fixed horizontal space. Vertical space
\addvspace: Fixed vertical space.
\bigskip: Fixed vertical space.
\medskip: Fixed vertical space.
\smallskip: Fixed vertical space.
\vfill: Stretchable vertical space.
\vspace: Fixed vertical space. Boxes
\fbox: Framebox.
\framebox: Framebox, adjustable position.
lrbox: An environment like \sbox.
\makebox: Box, adjustable position.
\mbox: Box.
\newsavebox: Declare a name for saving a box.
\parbox: Box with text in paragraph mode.
\raisebox: Raise or lower text.
\rule: Lines and squares.
\savebox: Like \makebox, but save the text for later use.
\sbox: Like \mbox, but save the text for later use.
\usebox: Print saved text.
\dotfill
The \dotfill command produces a "rubber length" that produces dots instead
of just spaces.
\hfill
The \hfill fill command produces a "rubber length" which can stretch or shrink
horizontally. It will be filled with spaces.
\hrulefill
The \hrulefill fill command produces a "rubber length" which can stretch or
shrink horizontally. It will be filled with a horizontal rule.
\hspace
\hspace[*]{length}
The \hspace command adds horizontal space. The length of the space can be
expressed in any terms that LaTeX understands, i.e., points, inches, etc. You
can add negative as well as positive space with an \hspace command. Adding
negative space is like backspacing.
LaTeX removes horizontal space that comes at the end of a line. If you don't
want LaTeX to remove this space, include the optional * argument. Then the
space is never removed.
\addvspace
\addvspace{length}
\bigskip
\medskip
\smallskip
\smallskip
\vfill
The \vfill fill command produces a rubber length which can stretch or shrink
vertically.
\vspace
\vspace[*]{length}
The \vspace command adds vertical space. The length of the space can be
expressed in any terms that LaTeX understands, i.e., points, inches, etc. You
can add negative as well as positive space with an \vspace command.
LaTeX removes vertical space that comes at the end of a page. If you don't
want LaTeX to remove this space, include the optional * argument. Then the
space is never removed.
\fbox
\fbox{text}
The \fbox command is exactly the same as the \mbox command, except that it
puts a frame around the outside of the box that it creates.
\framebox
\framebox[width][position]{text}
The \framebox command is exactly the same as the \makebox command, except
that it puts a frame around the outside of the box that it creates.
lrbox
\begin{lrbox}{cmd} text \end{lrbox}
The text inside the environment is saved in the box cmd, which must have been
declared with \newsavebox.
\makebox
\makebox[width][position]{text}
The \makebox command creates a box just wide enough to contain the text
specified. The width of the box is specified by the optional width argument. The
position of the text within the box is determined by the optional position
argument.
c -- centred (default)
l -- flushleft
r -- flushright
s -- stretch from left to right margin. The text must contain stretchable
space for this to work.
\mbox
\mbox{text}
The \mbox command creates a box just wide enough to hold the text created by
its argument.
Use this command to prevent text from being split across lines.
\newsavebox
\newsavebox{cmd}
Declares cmd, which must be a command name that is not already defined, to
be a bin for saving boxes.
\parbox
\parbox[position][height][inner-pos]{width}{text}
A parbox is a box whose contents are created in paragraph mode. The \parbox has
two mandatory arguments:
LaTeX will position a parbox so its center lines up with the center of the text line.
The optional position argument allows you to line up either the top or bottom
line in the parbox (default is top).
If the height argument is not given, the box will have the natural height of the
text.
The inner-pos argument controls the placement of the text inside the box. If it
is not specified, position is used.
A \parbox command is used for a parbox containing a small piece of text, with
nothing fancy inside. In particular, you shouldn't use any of the paragraph-
making environments inside a \parbox argument. For larger pieces of text,
including ones containing a paragraph-making environment, you should use a
minipage environment See section minipage.
\raisebox
\raisebox{distance}[extend-above][extend-below]{text}
The \raisebox command is used to raise or lower text. The first mandatory
argument specifies how high the text is to be raised (or lowered if it is a
negative amount). The text itself is processed in LR mode.
Sometimes it's useful to make LaTeX think something has a different size than
it really does - or a different size than LaTeX would normally think it has. The
\raisebox command lets you tell LaTeX how tall it is.
The first optional argument, extend-above, makes LaTeX think that the text
extends above the line by the amount specified. The second optional
argument, extend-below, makes LaTeX think that the text extends below the line
by the amount specified.
\rule
\rule[raise-height]{width}{thickness}
The \rule command is used to produce horizontal lines. The arguments are
defined as follows:
\savebox
\savebox{cmd}[width][pos]{text}
This command typeset text in a box just as for \makebox. However, instead of
printing the resulting box, it saves it in bin cmd, which must have been declared
with \newsavebox.
\sbox
\sbox{text}
This commands typeset text in a box just as for \mbox. However, instead of
printing the resulting box, it saves it in bin cmd, which must have been declared
with \newsavebox.
\usebox
\usebox{cmd}
Prints the box most recently saved in bin cmd by a \savebox command.
Special Characters
The following characters play a special role in LaTeX and are called "special
printing characters", or simply "special characters".
# $ % & ~ _ ^ \ { }
Whenever you put one of these special characters into your file, you are doing
something special. If you simply want the character to be printed just as any
other letter, include a \ in front of the character. For example, \$ will produce $
in your output.
One exception to this rule is the \ itself because \\ has its own special
meaning. A \ is produced by typing $\backslash$ in your file.
Also, \~ means `place a tilde accent over the following letter', so you will
probably want to use \verb instead.
In addition, you can access any character of a font once you know its number
by using the \symbol command. For example, the character used for displaying
spaces in the \verb* command has the code decimal 32, so it can be typed as
\symbol{32}.
You can also specify octal numbers with ' or hexadecimal numbers with ", so
the previous example could also be written as \symbol{'40} or \symbol{"20}.
\include
\include{file}
The \include command is used in conjunction with the \includeonly command for
selective inclusion of files. The file argument is the first name of a file,
denoting `file.tex'. If file is one the file names in the file list of the \includeonly
command or if there is no \includeonly command, the \include command is
equivalent to
except that if the file `file.tex' does not exist, then a warning message rather
than an error is produced. If the file is not in the file list, the \include command
is equivalent to \clearpage.
The \include command may not appear in the preamble or in a file read by
another \include command.
\includeonly
\includeonly{file_list }
\input
\input{file}
The \input command causes the indicated file to be read and processed,
exactly as if its contents had been inserted in the current file at that point.
The file name may be a complete file name with extension or just a first name,
in which case the file `file.tex' is used.
\documentclass{class}
\begin{document}
... your text goes here ...
\end{document}
where the class selected is one of the valid classes for LaTeX. See section
Document Classes for details of the various document classes available
locally.
You may include other LaTeX commands between the \documentclass and the
\begin{document} commands (i.e., in the `preamble').
Table of Contents
A table of contents is produced with the \tableofcontents command. You put the
command right where you want the table of contents to go; LaTeX does the
rest for you. It produces a heading, but it does not automatically start a new
page. If you want a new page after the table of contents, include a \newpage
command after the \tableofcontents command.
There are similar commands \listoffigures and \listoftables for producing a list of
figures and a list of tables, respectively. Everything works exactly the same as
for the table of contents.
NOTE: If you want any of these items to be generated, you cannot have the
\nofiles command in your document.
\addcontentsline
\addcontentsline{file}{sec_unit}{entry}
The \addcontentsline command adds an entry to the specified list or table where:
The \addtocontents command adds text (or formatting commands) directly to the
file that generates the table of contents or list of figures or tables.
Terminal Input/Output
\typein: Read text from the terminal.
\typeout: Write text to the terminal.
\typein
\typein[cmd]{msg}
Prints msg on the terminal and causes LaTeX to stop and wait for you to type a
line of input, ending with return. If the cmd argument is missing, the typed input
is processed as if it had been included in the input file in place of the \typein
command. If the cmd argument is present, it must be a command name. This
command name is then defined or redefined to be the typed input.
\typeout
\typeout{msg}
Prints msg on the terminal and in the log file. Commands in msg that are defined
with \newcommand or \renewcommand are replaced by their definitions before being
printed.
LaTeX's usual rules for treating multiple spaces as a single space and
ignoring spaces after a command name apply to msg. A \space command in msg
causes a single space to be printed. A ^^J in msg prints a newline.
Typefaces
The typeface is specified by giving the "size" and "style". A typeface is also called
a "font".
\Styles
The declaration forms are cumulative; i.e., you can say \sffamily\bfseries to get
sans serif boldface.
You can also use the environment form of the declaration forms; e.g.
\begin{ttfamily}...\end{ttfamily}.
\textrm (\rmfamily)
Roman.
\textit (\itshape)
\emph
Emphasis (toggles between \textit and \textrm).
\textmd (\mdseries)
Medium weight (default). The opposite of boldface.
\textbf (\bfseries)
Boldface.
\textup (\upshape)
Upright (default). The opposite of slanted.
\textsl (\slshape)
Slanted.
\textsf (\sffamily)
Sans serif.
\textsc (\scshape)
Small caps.
\texttt (\ttfamily)
Typewriter.
\textnormal (\normalfont)
Main document font.
\mathrm
Roman, for use in math mode.
\mathbf
Boldface, for use in math mode.
\mathsf
Sans serif, for use in math mode.
\mathtt
Typewriter, for use in math mode.
\mathit
Italics, for use in math mode, e.g. variable names with several letters.
\mathnormal
For use in math mode, e.g. inside another type style declaration.
\mathcal
`Calligraphic' letters, for use in math mode.
Sizes
The commands as listed here are "declaration forms". The scope of the
declaration form lasts until the next type style command or the end of the
current group.
You can also use the environment form of these commands; e.g. \begin{tiny}...
\end{tiny}.
\tiny
\scriptsize
\footnotesize
\small
\normalsize
(default)
\large
\Large
\LARGE
\huge
\Huge
These commands are primarily intended for writers of macros and packages.
The commands listed here are only a subset of the available ones. For full
details, you should consult Chapter 7 of The LaTeX Companion.
\fontencoding{enc}
Select font encoding. Valid encodings include OT1 and T1.
\fontfamily{family}
Select font family. Valid families include:
cmr for Computer Modern Roman
cmss for Computer Modern Sans Serif
cmtt for Computer Modern Typewriter
and numerous others.
\fontseries{series}
Select font series. Valid series include:
m Medium (normal)
b Bold
c Condensed
bc Bold condensed
bx Bold extended
and various other combinations.
\fontshape{shape}
Select font shape. Valid shapes are:
n Upright (normal)
it Italic
sl Slanted (oblique)
sc Small caps
ui Upright italics
ol Outline
The two last shapes are not available for most font families.
\fontsize{size}{skip}
Set font size. The first parameter is the font size to switch to; the second
is the \baselineskip to use. The unit of both parameters defaults to pt. A
rule of thumb is that the baselineskip should be 1.2 times the font size.
\selectfont
The changes made by calling the four font commands described above
do not come into effect until \selectfont is called.
\usefont{enc}{family}{series}{shape}
Equivalent to calling \fontencoding, \fontfamily, \fontseries and \fontshape with the
given parameters, followed by \selectfont.