\input texinfo latex2e.info May 2013 &latex;2e reference manual (May 2013) This document is an unofficial reference manual for &latex;, a document preparation system, version of May 2013. This manual was originally translated from LATEX.HLP v1.0a in the VMS Help Library. The pre-translation version was written by George D. Greenwade of Sam Houston State University. The &latex; 2.09 version was written by Stephen Gilmore. The &latex;2e version was adapted from this by Torsten Martinsen. Karl Berry made further updates and additions, and gratefully acknowledges using Hypertext Help with &latex;, by Sheldon Green, and the &latex; Command Summary (for &latex; 2.09) by L. Botway and C. Biemesderfer (published by the &tex; Users Group as &tex;niques number 10), as reference material (no text was directly copied). Copyright ©right; 2007, 2008, 2009, 2010, 2011, 2012, 2013 Karl Berry.&linebreak; Copyright ©right; 1988, 1994, 2007 Stephen Gilmore.&linebreak; Copyright ©right; 1994, 1995, 1996 Torsten Martinsen. Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to process this file through TeX and print the results, provided the printed document carries copying permission notice identical to this one except for the removal of this paragraph (this paragraph not being relevant to the printed manual). Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions. TeX LaTeX2e(latex2e)
Unofficial LaTeX reference manual.
\global\hbadness=4444 % don&textrsquo;t complain much &latex;: Structured documents for &tex; unofficial &latex; reference manual May 2013 http://home.gna.org/latexrefman 0pt plus 1filll TopAbout this document(dir) &latex;2e This document is an unofficial reference manual for &latex;, a document preparation system, version as of May 2013. It is intended to cover &latex;2e, which has been the standard version of &latex; for many years. About this document
Bug reporting, etc.
Overview
What is &latex;?
Starting & ending
The standard beginning and end of a document.
Document classes
Some of the various classes available.
Typefaces
And fonts, such as bold, italics etc.
Layout
Controlling the page layout.
Sectioning
How to section properly.
Cross references
Automatic referencing.
Environments
Such as enumerate & itemize.
Line breaking
Influencing line breaks.
Page breaking
Influencing page breaks.
Footnotes
How to produce footnotes.
Definitions
Define your own commands etc.
Counters
Internal counters used by &latex;.
Lengths
The length commands.
Making paragraphs
Paragraph commands.
Math formulas
How to create mathematical formulas.
Modes
Paragraph, Math or LR modes.
Page styles
Various styles of page layout.
Spaces
Horizontal and vertical space.
Boxes
Making boxes.
Special insertions
Inserting reserved and special characters.
Splitting the input
Dealing with big files by splitting.
Front/back matter
Tables of contents, glossaries, indexes.
Letters
The letter class.
Terminal input/output
User interaction.
Command line
System-independent command-line behavior.
Document templates
Starter templates for various document classes.
Concept Index
General index.
Command Index
Alphabetical list of &latex; commands.
About this documentOverviewTopTop About this document Knuth, Donald E. Lamport, Leslie &latex; Project team The &latex; document preparation system is implemented as a macro package for Donald E. Knuth&textrsquo;s &tex; typesetting program. &latex; was originally created by Leslie Lamport; it is now maintained by a group of volunteers (http://latex-project.org). The official documentation written by the &latex; project is available from their web site. bug reporting reporting bugs latexrefman-discuss&arobase;gna.org email address The present document is completely unofficial and has not been reviewed by the &latex; maintainers. Do not send bug reports or anything else about this document to them. Instead, please send all comments to latexrefman-discuss&arobase;gna.org. The home page for this document is http://home.gna.org/latexrefman. That page has links to the current output in various formats, sources, mailing lists, and other infrastructure. Of course, there are many, many other sources of information about &latex;. Here are a few: http://www.ctan.org/pkg/latex-doc-ptr Two pages of recommended references to &latex; documentation. http://www.ctan.org/pkg/first-latex-doc Writing your first document, with a bit of both text and math. http://www.ctan.org/pkg/usrguide The guide for document authors maintained as part of &latex;; there are several others. http://tug.org/begin.html Introduction to the &tex; system, including &latex;.
OverviewStarting & endingAbout this documentTop Overview of &latex; What is &latex;? overview of &latex; basics of &latex; &latex; overview &latex; typesets a file of text using the &tex; program and the &latex; &textldquo;macro package&textrdquo; for &tex;. That is, it processes an input file containing the text of a document with interspersed commands that describe how the text should be formatted. &latex; files are plain text that can be written in any reasonable editor. It produces at least three files as output: The main output file, which is one of: .dvi .dvi file latex command If invoked as latex, a &textldquo;Device Independent&textrdquo; (.dvi) file is produced. This contains commands that can be translated into commands for virtually any output device. You can view such .dvi output of &latex; by using a program such as xdvi (display directly), dvips (convert to PostScript), or dvipdfmx (convert to PDF). .pdf .pdf file pdf&tex; pdflatex command If invoked as pdflatex, a &textldquo;Portable Document Format&textrdquo; (.pdf) file. Typically, this is a self-contained file, with all fonts and images embedded. This can be very useful, but it does make the output much larger than the .dvi produced from the same document. lualatex command Lua&tex; If invoked as lualatex, a .pdf file is created using the Lua&tex; engine (http://luatex.org). xelatex command Xe&tex; If invoked as xelatex, a .pdf file is created using the Xe&tex; engine (http://tug.org/xetex).
Many other less-common variants of &latex; (and &tex;) exist, which can produce HTML, XML, and other things.
transcript file log file .log file The &textldquo;transcript&textrdquo; or .log file that contains summary information and diagnostic messages for any errors discovered in the input file. auxiliary file .aux file An &textldquo;auxiliary&textrdquo; or .aux file. This is used by &latex; itself, for things such as cross-references.
An open-ended list of other files might be created. We won&textrsquo;t try to list them all. Xxx components? \ character starting commands [...] for optional arguments {...} for required arguments In the &latex; input file, a command name starts with a \, followed by either (a) a string of letters or (b) a single non-letter. Arguments contained in square brackets, [], are optional while arguments contained in braces, {}, are required. case sensitivity of &latex; &latex; is case sensitive. Enter all commands in lower case unless explicitly directed to do otherwise.
Starting & endingDocument classesOverviewTop Starting & ending starting & ending ending & starting A minimal input file looks like the following:
\documentclass{class}
\begin{document}
your text
\end{document}
where the class is a valid document class for &latex;. Document classes, for details of the various document classes available locally. preamble, defined You may include other &latex; commands between the \documentclass and the \begin{document} commands (this area is called the preamble).
Document classesTypefacesStarting & endingTop Document classes document classes classes of documents \documentclass The class of a given document is defined with the command:
\documentclass[options]{class}
The \documentclass command must be the first command in a &latex; source file. article class report class book class letter class slides class Built-in &latex; document class names are (many other document classes are available as add-ons; Overview):
article  report  book  letter  slides
Standard options are described below. Document class options
Global options.
Document class optionsDocument classes
Document class options document class options options, document class class options global options You can specify so-called global options or class options to the \documentclass command by enclosing them in square brackets as usual. To specify more than one option, separate them with a comma:
\documentclass[option1,option2,...]{class}
Here is the list of the standard class options. 10pt option 11pt option 12pt option All of the standard classes except slides accept the following options for selecting the typeface size (default is 10pt):
10pt  11pt  12pt
a4paper option a5paper option b5paper option executivepaper option legalpaper option letterpaper option All of the standard classes accept these options for selecting the paper size (default is letterpaper):
a4paper a5paper b5paper executivepaper legalpaper letterpaper
draft option final option fleqn option landscape option leqno option openbib option titlepage option notitlepage option Miscellaneous other options: draft, final black boxes, omitting mark/do not mark overfull boxes with a big black box; default is final. fleqn Put displayed formulas flush left; default is centered. landscape Selects landscape format; default is portrait. leqno Put equation numbers on the left side of equations; default is the right side. openbib Use &textldquo;open&textrdquo; bibliography format. titlepage, notitlepage Specifies whether the title page is separate; default depends on the class.
These options are not available with the slides class: onecolumn option twocolumn option oneside option twoside option openright option openany option onecolumn twocolumn Typeset in one or two columns; default is onecolumn. oneside twoside \evensidemargin \oddsidemargin Selects one- or two-sided layout; default is oneside, except for the book class. The \evensidemargin (\oddsidemargin parameter determines the distance on even (odd) numbered pages between the left side of the page and the text&textrsquo;s left margin. The defaults vary with the paper size and whether one- or two-side layout is selected. For one-sided printing the text is centered, for two-sided, \oddsidemargin is 40% of the difference between \paperwidth and \textwidth, with \evensidemargin the remainder. openright openany Determines if a chapter should start on a right-hand page; default is openright for book.
The slides class offers the option clock for printing the time at the bottom of each note. packages, loading loading additional packages \usepackage Additional packages are loaded like this:
\usepackage[options]{pkg}
To specify more than one pkg, you can separate them with a comma, or use multiple \usepackage commands. global options options, global Any options given in the \documentclass command that are unknown by the selected document class are passed on to the packages loaded with \usepackage.
TypefacesLayoutDocument classesTop Typefaces typefaces fonts Two important aspects of selecting a font are specifying a size and a style. The &latex; commands for doing this are described here. Font styles
Select roman, italics etc.
Font sizes
Select point size.
Low-level font commands
Select encoding, family, series, shape.
Font stylesFont sizesTypefaces
Font styles font styles typeface styles styles of text The following type style commands are supported by &latex;. This first group of commands is typically used like \textit{italic text}. The corresponding command in parenthesis is the &textldquo;declaration form&textrdquo;, which takes no arguments. The scope of the declaration form lasts until the next type style command or the end of the current group. The declaration forms are cumulative; i.e., you can say either \sffamily\bfseries or \bfseries\sffamily to get bold sans serif. You can alternatively use an environment form of the declarations; for instance, \begin{ttfamily}...\end{ttfamily}. These commands automatically supply an italic correction if the \textrm (\rmfamily) \textrm \rmfamily Roman. \textit (\itshape) \textit \itshape Italics. \emph \emph emphasis Emphasis (switches between \textit and \textrm). \textmd (\mdseries) \textmd \mdseries Medium weight (default). \textbf (\bfseries) \textbf \bfseries Boldface. \textup (\upshape) \textup \upshape Upright (default). The opposite of slanted. \textsl (\slshape) \textsl \slshape Slanted. \textsf (\sffamily) \textsf \sffamily Sans serif. \textsc (\scshape) \textsc \scshape Small caps. \texttt (\ttfamily) \texttt \ttfamily Typewriter. \textnormal (\normalfont) \textnormal \normalfont Main document font. \mathrm \mathrm Roman, for use in math mode. \mathbf \mathbf Boldface, for use in math mode. \mathsf \mathsf Sans serif, for use in math mode. \mathtt \mathtt Typewriter, for use in math mode. \mathit (\mit) Italics, for use in math mode. \mathnormal \mathnormal For use in math mode, e.g. inside another type style declaration. \mathcal \mathcal &textlsquo;Calligraphic&textrsquo; letters, for use in math mode.
\mathversion In addition, the command \mathversion{bold} can be used for switching to bold letters and symbols in formulas. \mathversion{normal} restores the default. \oldstylenums numerals, old-style old-style numerals lining numerals textcomp package Finally, the command \oldstylenums{numerals} will typeset so-called &textldquo;old-style&textrdquo; numerals, which have differing heights and depths (and sometimes widths) from the standard &textldquo;lining&textrdquo; numerals. &latex;&textrsquo;s default fonts support this, and will respect \textbf (but not other styles; there are no italic old-style numerals in Computer Modern). Many other fonts have old-style numerals also; sometimes the textcomp package must be loaded, and sometimes package options are provided to make them the default. FAQ entry: http://www.tex.ac.uk/cgi-bin/texfaq2html?label=osf. &latex; also provides these commands, which unconditionally switch to the given style, that is, are not cumulative. They are used differently than the above commands, too: {\cmd ...} instead of \cmd{...}. These are two very different things. \bf\bf bold font Switch to bold face. \cal\cal script letters for math calligraphic letters for math Switch to calligraphic letters for math. \em\em emphasis Emphasis (italics within roman, roman within italics). \it\it italic font Italics. \rm\rm roman font Roman. \sc\sc small caps font Small caps. \sf\sf sans serif font Sans serif. \sl\sl slanted font oblique font Slanted (oblique). \tt\tt typewriter font monospace font fixed-width font Typewriter (monospace, fixed-width).
Font sizesLow-level font commandsFont stylesTypefaces
Font sizes font sizes typeface sizes sizes of text The following standard type size commands are supported by &latex;. The table shows the command name and the corresponding actual font size used (in points) with the 10pt, 11pt, and 12pt document size options, respectively (Document class options). \tiny \scriptsize \footnotesize \small \normalsize \large \Large \LARGE \huge \Huge \normalsize (default) 24.88 24.88 24.88 Command 10pt 11pt 12pt \tiny 5 6 6 \scriptsize 7 8 8 \footnotesize 8 9 10 \small 9 10 10.95 \normalsize (default) 10 10.95 12 \large 12 12 14.4 \Large 14.4 14.4 17.28 \LARGE 17.28 17.28 20.74 \huge 20.74 20.74 24.88 \Huge 24.88 24.88 24.88 The commands as listed here are &textldquo;declaration forms&textrdquo;. 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; for instance, \begin{tiny}...\end{tiny}.
Low-level font commandsFont sizesTypefaces
Low-level font commands low-level font commands font commands, low-level These commands are primarily intended for writers of macros and packages. The commands listed here are only a subset of the available ones. \fontencoding{enc} \fontencoding Select font encoding. Valid encodings include OT1 and T1. \fontfamily{family} \fontfamily 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} \fontseries 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} \fontshape 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} \fontsize \baselineskip Set font size. The first parameter is the font size to switch to and the second is the line spacing to use; this is stored in a parameter named \baselineskip. The unit of both parameters defaults to pt. The default \baselineskip for the Computer Modern typeface is 1.2 times the \fontsize. \baselinestretch setspace package double spacing The line spacing is also multiplied by the value of the \baselinestretch parameter when the type size changes; the default is 1. However, the best way to &textldquo;double space&textrdquo; a document, if you should be unlucky enough to have to produce such, is to use the setspace package; see http://www.tex.ac.uk/cgi-bin/texfaq2html?label=linespace. \linespread \linespread{factor} Equivalent to \renewcommand{\baselinestretch}{factor}, and therefore must be followed by \selectfont to have any effect. Best specified in the preamble, or use the setspace package, as described just above. \selectfont The changes made by calling the font commands described above do not come into effect until \selectfont is called. \usefont{enc}{family}{series}{shape} \usefont The same as invoking \fontencoding, \fontfamily, \fontseries and \fontshape with the given parameters, followed by \selectfont.
LayoutSectioningTypefacesTop Layout layout commands Miscellaneous commands for controlling the general layout of the page. \onecolumn
Use one-column layout.
\twocolumn
Use two-column layout.
\flushbottom
Make all text pages the same height.
\raggedbottom
Allow text pages of differing height.
Page layout parameters
\headheight \footskip.
\onecolumn\twocolumnLayout
\onecolumn \onecolumn one-column output The \onecolumn declaration starts a new page and produces single-column output. This is the default.
\twocolumn\flushbottom\onecolumnLayout
\twocolumn \twocolumn multicolumn text two-column output Synopsis:
\twocolumn[text1col]
The \twocolumn declaration starts a new page and produces two-column output. If the optional text1col argument is present, it is typeset in one-column mode before the two-column typesetting starts. These parameters control typesetting in two-column output: \columnsep\columnsep The distance between columns (35pt by default). \columnseprule\columnseprule The width of the rule between columns; the default is 0pt, so there is no rule. \columnwidth\columnwidth The width of the current column; this is equal to \textwidth in single-column text. These parameters control float behavior in two-column output: \dbltopfraction\dbltopfraction Maximum fraction at the top of a two-column page that may be occupied by floats. Default .7, can be usefully redefined to (say) .9 to avoid going to float pages so soon. \dblfloatpagefraction\dblfloatpagefraction The minimum fraction of a float page that must be occupied by floats, for a two-column float page. Default .5. \dblfloatsep\dblfloatsep Distance between floats at the top or bottom of a two-column float page. Default 12pt plus2pt minus2pt for 10pt and 11pt documents, 14pt plus2pt minus4pt for 12pt. \dbltextfloatsep\dbltextfloatsep Distance between a multi-column float at the top or bottom of a page and the main text. Default 20pt plus2pt minus4pt.
\flushbottom\raggedbottom\twocolumnLayout
\flushbottom \flushbottom The \flushbottom declaration makes all text pages the same height, adding extra vertical space where necessary to fill out the page. This is the default if twocolumn mode is selected (Document class options).
\raggedbottomPage layout parameters\flushbottomLayout
\raggedbottom \raggedbottom stretch, omitting vertical The \raggedbottom declaration makes all pages the natural height of the material on that page. No rubber lengths will be stretched.
Page layout parameters\raggedbottomLayout
Page layout parameters page layout parameters parameters, page layout layout, page parameters for header, parameters for footer, parameters for running header and footer \headheight\headheight Height of the box that contains the running head. Default is 30pt, except in the book class, where it varies with the type size. \headsep\headsep Vertical distance between the bottom of the header line and the top of the main text. Default is 25pt, except in the book class, where it varies with the type size. \footskip\footskip Distance from the baseline of the last line of text to the baseline of the page footer. Default is 30pt, except in the book class, where it varies with the type size. \linewidth\linewidth Width of the current line, decreased for each nested list (list). Specifically, it is smaller than \textwidth by the sum of \leftmargin and \rightmargin (itemize). The default varies with the font size, paper width, two-column mode, etc. For an article document in 10pt, it&textrsquo;s set to 345pt; in two-column mode, that becomes 229.5pt. \textheight\textheight The normal vertical height of the page body; the default varies with the font size, document class, etc. For an article or report document in 10pt, it&textrsquo;s set to 43\baselineskip; for book, it&textrsquo;s 41\baselineskip. For 11pt, it&textrsquo;s 38\baselineskip and for 12pt, 36\baselineskip. \textwidth\textwidth The full horizontal width of the entire page body; the default varies as usual. For an article or report document, it&textrsquo;s 345pt at 10pt, 360pt at 11pt, and 390pt at 12pt. For a book document, it&textrsquo;s 4.5in at 10pt, and 5in at 11pt or 12pt. In multi-column output, \textwidth remains the width of the entire page body, while \columnwidth is the width of one column (\twocolumn). In lists (list), \textwidth remains the width of the entire page body (and \columnwidth the width of the entire column), while \linewidth may decrease for nested lists. Inside a minipage (minipage) or \parbox (\parbox), all the width-related parameters are set to the specified width, and revert to their normal values at the end of the minipage or \parbox. \hsize For completeness: \hsize is the &tex; primitive parameter used when text is broken into lines. It should not be used in normal &latex; documents. \topmargin\topmargin Space between the top of the &tex; page (one inch from the top of the paper, by default) and the top of the header. The default is computed based on many other parameters: \paperheight − 2in − \headheight − \headsep − \textheight − \footskip, and then divided by two. \topskip\topskip Minimum distance between the top of the page body and the baseline of the first line of text. For the standard clases, the default is the same as the font size, e.g., 10pt at 10pt.
SectioningCross referencesLayoutTop Sectioning sectioning Sectioning commands provide the means to structure your text into units: \part\part \chapter\chapter (report and book class only) \section\section \subsection\subsection \subsubsection\subsubsection \paragraph\paragraph \subparagraph\subparagraph All sectioning commands take the same general form, e.g.,
\chapter[toctitle]{title}
In addition to providing the heading title in the main text, the section title can appear in two other places: The table of contents. The running head at the top of the page. You may not want the same text in these places as in the main text. To handle this, the sectioning commands have an optional argument toctitle that, when given, specifies the text for these other places. *-form of sectioning commands Also, all sectioning commands have *-forms that print title as usual, but do not include a number and do not make an entry in the table of contents. For instance:
\section*{Preamble}
\appendix appendix, creating The \appendix command changes the way following sectional units are numbered. The \appendix command itself generates no text and does not affect the numbering of parts. The normal use of this command is something like
\chapter{A Chapter}
&dots;
\appendix
\chapter{The First Appendix}
secnumdepth counter section numbers, printing The secnumdepth counter controls printing of section numbers. The setting
\setcounter{secnumdepth}{level}
suppresses heading numbers at any depth > level, where chapter is level zero. (\setcounter.)
Cross referencesEnvironmentsSectioningTop Cross references cross references One reason for numbering things like figures and equations is to refer the reader to them, as in &textldquo;See Figure 3 for more details.&textrdquo; \label
Assign a symbolic name to a piece of text.
\pageref
Refer to a page number.
\ref
Refer to a section, figure or similar.
\label\pagerefCross references
\label \label Synopsis:
\label{key}
A \label command appearing in ordinary text assigns to key the number of the current sectional unit; one appearing inside a numbered environment assigns that number to key. A key name can consist of any sequence of letters, digits, or punctuation characters. Upper and lowercase letters are distinguished. 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 or period. Some conventionally-used prefixes: ch for chapters sec for lower-level sectioning commands fig for figures tab for tables eq for equations
Thus, a label for a figure would look like fig:snark or fig.snark.
\pageref\ref\labelCross references
\pageref{key} \pageref cross referencing with page number page number, cross referencing Synopsis:
\pageref{key}
The \pageref{key} command produces the page number of the place in the text where the corresponding \label{key} command appears.
\ref\pagerefCross references
\ref{key} \ref cross referencing, symbolic section number, cross referencing equation number, cross referencing figure number, cross referencing footnote number, cross referencing Synopsis:
\ref{key}
The \ref command produces the number of the sectional unit, equation, footnote, figure, &dots;, of the corresponding \label command (\label). It does not produce any text, such as the word &textlsquo;Section&textrsquo; or &textlsquo;Figure&textrsquo;, just the bare number itself.
EnvironmentsLine breakingCross referencesTop Environments environments \begin \end &latex; provides many environments for marking off certain text. Each environment begins and ends in the same manner:
\begin{envname}
...
\end{envname}
abstract
Produce an abstract.
array
Math arrays.
center
Centered lines.
description
Labelled lists.
displaymath
Formulas that appear on their own line.
document
Enclose the whole document.
enumerate
Numbered lists.
eqnarray
Sequences of aligned equations.
equation
Displayed equation.
figure
Floating figures.
flushleft
Flushed left lines.
flushright
Flushed right lines.
itemize
Bulleted lists.
letter
Letters.
list
Generic list environment.
math
In-line math.
minipage
Miniature page.
picture
Picture with text, arrows, lines and circles.
quotation
Indented environment with paragraph indentation.
quote
Indented environment with no paragraph indentation.
tabbing
Align text arbitrarily.
table
Floating tables.
tabular
Align text in columns.
thebibliography
Bibliography or reference list.
theorem
Theorems, lemmas, etc.
titlepage
For hand crafted title pages.
verbatim
Simulating typed input.
verse
For poetry and other things.
abstractarrayEnvironments
abstract abstract environment abstracts Synopsis:
\begin{abstract}
...
\end{abstract}
Environment for producing an abstract, possibly of multiple paragraphs.
arraycenterabstractEnvironments
array array environment arrays, math Synopsis:
\begin{array}{template}
col1 text&col1 text&coln}\\
...
\end{array}
Math arrays are produced with the array environment, normally within an equation environment (equation). It has a single mandatory template argument describing the number of columns and the alignment within them. Each column col is specified by a single letter that tells how items in that row should be formatted, as follows: c centered l flush left r flush right
\\ (for array) Column entries are separated by &. Column entries may include other &latex; commands. Each row of the array is terminated with \\. &arobase;{...} In the template, the construct &arobase;{text} puts text between columns in each row. Here&textrsquo;s an example:
\begin{equation}
  \begin{array}{lrc}
  left1 & right1 & centered1 \\
  left2 & right2 & centered2 \\
  \end{array}
\end{equation}
\arraycolsep The \arraycolsep parameter defines half the width of the space separating columns; the default is 5pt. tabular, for other parameters which affect formatting in array environments, namely \arrayrulewidth and \arraystretch. The array environment can only be used in math mode.
centerdescriptionarrayEnvironments
center center environment centering text, environment for Synopsis:
\begin{center}
line1 \\
line2 \\
\end{center}
\\ (for center) The center environment allows you to create a paragraph consisting of lines that are centered within the left and right margins on the current page. Each line is terminated with the string \\. \centering
Declaration form of the center environment.
\centeringcenter \centering \centering centering text, declaration for The \centering declaration corresponds to the center environment. This declaration can be used inside an environment such as quote or in a parbox. Thus, the text of a figure or table can be centered on the page by putting a \centering command at the beginning of the figure or table environment. 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&textrsquo;s format, the scope of the declaration must contain the blank line or \end command (of an environment such as quote) that ends the paragraph unit. Here&textrsquo;s an example:
\begin{quote}
\centering
first line \\
second line \\
\end{quote}
descriptiondisplaymathcenterEnvironments
description description environment labelled lists, creating description lists, creating Synopsis:
\begin{description}
\item [label1] item1
\item [label2] item2
...
\end{description}
\item The description environment is used to make labelled lists. Each label is typeset in bold, flush right. The item text may contain multiple paragraphs. bold typewriter, avoiding typewriter labels in lists Another variation: since the bold style is applied to the labels, if you typeset a label in typewriter using \texttt, you&textrsquo;ll get bold typewriter: \item[\texttt{bold and typewriter}]. This may be too bold, among other issues. To get just typewriter, use \tt, which resets all other style variations: \item[{\tt plain typewriter}]. For details about list spacing, see itemize.
displaymathdocumentdescriptionEnvironments
displaymath displaymath environment Synopsis:
\begin{displaymath}
math
\end{displaymath}
or
\[math\]
The displaymath environment (\[...\] is a synonym) typesets the math text on its own line, centered by default. The global fleqn option makes equations flush left; see Document class options. No equation number is added to displaymath text; to get an equation number, use the equation environment (equation).
documentenumeratedisplaymathEnvironments
document document environment The document environment encloses the body of a document. It is required in every &latex; document. Starting & ending.
enumerateeqnarraydocumentEnvironments
enumerate enumerate environment lists of items, numbered Synopsis:
\begin{enumerate}
\item item1
\item item2
...
\end{enumerate}
The enumerate environment produces a numbered list. Enumerations can be nested within one another, up to four levels deep. They can also be nested within other paragraph-making environments, such as itemize (itemize) and description (description). \item Each item of an enumerated list begins with an \item command. There must be at least one \item command within the environment. By default, the numbering at each level is done like this: 1., 2., &dots; (a), (b), &dots; i., ii., &dots; A., B., &dots; \enumi \enumii \enumiii \enumiv The enumerate environment uses the counters \enumi through \enumiv counters (Counters). If the optional argument to \item is given, the counter is not incremented for that item. \labelenumi \labelenumii \labelenumiii \labelenumiv The enumerate environment uses the commands \labelenumi through \labelenumiv to produce the default label. So, you can use \renewcommand to change the labels (\newcommand & \renewcommand). For instance, to have the first level use uppercase letters: \Alph example
\renewcommand{\labelenumi}{\Alph{enumi}}
eqnarrayequationenumerateEnvironments
eqnarray eqnarray environment equations, aligning aligning equations align environment, from amsmath amsmath package, replacing eqnarray Madsen, Lars First, a caveat: the eqnarray environment has some infelicities which cannot be overcome; the article &textldquo;Avoid eqnarray!&textrdquo;&noeos; by Lars Madsen describes them in detail (http://tug.org/TUGboat/tb33-1/tb103madsen.pdf). The bottom line is that it is better to use the align environment (and others) from the amsmath package. Nevertheless, here is a description of eqnarray:
\begin{eqnarray}  (or eqnarray*)
formula1 \\
formula2 \\
...
\end{eqnarray}
\\ (for eqnarray) The eqnarray environment is used to display a sequence of equations or inequalities. It is very much like a three-column array environment, with consecutive rows separated by \\ and consecutive items within a row separated by an &. \\* (for eqnarray) \\* can also be used to separate equations, with its normal meaning of not allowing a page break at that line. \nonumber equation numbers, omitting An equation number is placed on every line unless that line has a \nonumber command. Alternatively, The *-form of the environment (\begin{eqnarray*} ... \end{eqnarray*}) will omit equation numbering entirely, while otherwise being the same as eqnarray. \lefteqn 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.
equationfigureeqnarrayEnvironments
equation equation environment equations, environment for formulas, environment for Synopsis:
\begin{equation}
math
\end{equation}
The equation environment starts a displaymath environment (displaymath), e.g., centering the math text on the page, and also places an equation number in the right margin.
figureflushleftequationEnvironments
figure figure inserting figures figures, inserting
\begin{figure[*]}[placement]
figbody
\label{label}
\caption[loftitle]{text}
\end{figure}
Figures are objects that are not part of the normal text, and are instead &textldquo;floated&textrdquo; to a convenient place, such as the top of a page. Figures will not be split between two pages. When typesetting in double-columns, the starred form produces a full-width figure (across both columns). placement of floats specifier, float placement The optional argument [placement] determines where &latex; will try to place your figure. There are four places where &latex; can possibly put a float: t (Top)&textmdash;at the top of a text page. b (Bottom)&textmdash;at the bottom of a text page. However, b is not allowed for full-width floats (figure*) with double-column output. To ameliorate this, use the stfloats or dblfloatfix package, but see the discussion at caveats in the FAQ: http://www.tex.ac.uk/cgi-bin/texfaq2html?label=2colfloat. h float package (Here)&textmdash;at the position in the text where the figure environment appears. However, this is not allowed by itself; t is automatically added. here, putting floats float package To absolutely force a figure to appear &textldquo;here&textrdquo;, you can \usepackage{float} and use the H specifier which it defines. For further discussion, see the FAQ entry at http://www.tex.ac.uk/cgi-bin/texfaq2html?label=figurehere. p (Page of floats)&textmdash;on a separate float page, which is a page containing no text, only floats. ! Used in addition to one of the above; for this float only, &latex; ignores the restrictions on both the number of floats that can appear and the relative amounts of float and non-float text on the page. The ! specifier does not mean &textldquo;put the float here&textrdquo;; see above.
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.&noeos; you wish. \caption The \caption command specifies caption text for the figure. The caption is numbered by default. If loftitle is present, it is used in the list of figures instead of text (Tables of contents). Parameters relating to fractions of pages occupied by float and non-float text: \bottomfraction The maximum fraction of the page allowed to be occuped by floats at the bottom; default .3. \floatpagefraction\floatpagefraction The minimum fraction of a float page that must be occupied by floats; default .5. \textfraction\textfraction Minimum fraction of a page that must be text; if floats take up too much space to preserve this much text, floats will be moved to a different page. The default is .2. \topfraction\topfraction Maximum fraction at the top of a page that may be occupied before floats; default .7. Parameters relating to vertical space around floats: \floatsep\floatsep Space between floats at the top or bottom of a page; default 12pt plus2pt minus2pt. \intextsep\intextsep Space above and below a float in the middle of the main text; default 12pt plus2pt minus2pt for 10pt and 11pt styles, 14pt plus4pt minus4pt for 12pt. \textfloatsep\textfloatsep Space between the last (first) float at the top (bottom) of a page; default 20pt plus2pt minus4pt. Parameters relating to the number of floats on a page: \bottomnumber\bottomnumber Maximum number of floats that can appear at the bottom of a text page; default 1. \topnumber\topnumber Maximum number of floats that can appear at the top of a text page; default 2. \totalnumber\totalnumber Maximum number of floats that can appear on a text page; default 3. The principal &tex; FAQ entry relating to floats: http://www.tex.ac.uk/cgi-bin/texfaq2html?label=floats.
flushleftflushrightfigureEnvironments
flushleft flushleft environment left-justifying text, environment for ragged right text, environment for
\begin{flushleft}
line1 \\
line2 \\
...
\end{flushleft}
\\ for flushleft The flushleft environment allows you to create a paragraph consisting of lines that are flush to the left-hand margin and ragged right Each line must be terminated with the string \\. \raggedright
Declaration form of the flushleft environment.
\raggedrightflushleft \raggedright \raggedright ragged right text left-justifying text justification, ragged right The \raggedright declaration corresponds to the flushleft environment. This declaration can be used inside an environment such as quote or in a parbox. Unlike the flushleft environment, the \raggedright command does not start a new paragraph; it only changes how &latex; formats paragraph units. To affect a paragraph unit&textrsquo;s format, the scope of the declaration must contain the blank line or \end command that ends the paragraph unit.
flushrightitemizeflushleftEnvironments
flushright flushright environment ragged left text, environment for right-justifying text, environment for
\begin{flushright}
line1 \\
line2 \\
...
\end{flushright}
\\ (for flushright) The flushright environment allows you to create a paragraph consisting of lines that are flush to the right-hand margin and ragged left. Each line must be terminated with the string \\. \raggedleft
Declaration form of the flushright environment.
\raggedleftflushright \raggedleft \raggedleft ragged left text justification, ragged left right-justifying text The \raggedleft declaration corresponds to the flushright environment. This declaration can be used inside an environment such as quote or in a parbox. Unlike the flushright environment, the \raggedleft command does not start a new paragraph; it only changes how &latex; formats paragraph units. To affect a paragraph unit&textrsquo;s format, the scope of the declaration must contain the blank line or \end command that ends the paragraph unit.
itemizeletterflushrightEnvironments
itemize itemize environment \item lists of items unordered lists bulleted lists Synopsis:
\begin{itemize}
\item item1
\item item2
...
\end{itemize}
The itemize environment produces an &textldquo;unordered&textrdquo;, &textldquo;bulleted&textrdquo; list. Itemizations can be nested within one another, up to four levels deep. They can also be nested within other paragraph-making environments, such as enumerate (enumerate). Each item of an itemize list begins with an \item command. There must be at least one \item command within the environment. By default, the marks at each level look like this: • (bullet) -- (bold en-dash) * (asterisk) . (centered dot, rendered here as a period) \labelitemi \labelitemii \labelitemiii \labelitemiv The itemize environment uses the commands \labelitemi through \labelitemiv to produce the default label. So, you can use \renewcommand to change the labels. For instance, to have the first level use diamonds:
\renewcommand{\labelitemi}{$\diamond$}
\leftmargin \leftmargini \leftmarginii \leftmarginiii \leftmarginiv \leftmarginv \leftmarginvi The \leftmargini through \leftmarginvi parameters define the distance between the left margin of the enclosing environment and the left margin of the list. By convention, \leftmargin is set to the appropriate \leftmarginN when a new level of nesting is entered. The defaults vary from .5em (highest levels of nesting) to 2.5em (first level), and are a bit reduced in two-column mode. This example greatly reduces the margin space for outermost lists:
\setlength{\leftmargini}{1.25em} % default 2.5em
Some parameters that affect list formatting: \itemindent\itemindent Extra indentation before each item in a list; default zero. \labelsep\labelsep Space between the label and text of an item; default .5em. \labelwidth\labelwidth Width of the label; default 2em, or 1.5em in two-column mode. \listparindent\listparindent Extra indentation added to second and subsequent paragraphs within a list item; default 0pt. \rightmargin\rightmargin Horizontal distance between the right margin of the list and the enclosing environment; default 0pt, except in the quote, quotation, and verse environments, where it is set equal to \leftmargin. Parameters affecting vertical spacing between list items (rather loose, by default). \itemsep\itemsep Vertical space between items. The default is 2pt plus1pt minus1pt for 10pt documents, 3pt plus2pt minus1pt for 11pt, and 4.5pt plus2pt minus1pt for 12pt. \parsep\parsep Extra vertical space between paragraphs within a list item. Defaults are the same as \itemsep. \topsep\topsep Vertical space between the first item and the preceding paragraph. For top-level lists, the default is 8pt plus2pt minus4pt for 10pt documents, 9pt plus3pt minus5pt for 11pt, and 10pt plus4pt minus6pt for 12pt. These are reduced for nested lists. \partopsep\partopsep Extra space added to \topsep when the list environment starts a paragraph. The default is 2pt plus1pt minus1pt for 10pt documents, 3pt plus1pt minus1pt for 11pt, and 3pt plus2pt minus2pt for 12pt. \parskip example Especially for lists with short items, it may be desirable to elide space between items. Here is an example defining an itemize* environment with no extra spacing between items, or between paragraphs within a single item (\parskip is not list-specific, \parskip):
\newenvironment{itemize*}%
  {\begin{itemize}%
    \setlength{\itemsep}{0pt}%
    \setlength{\parsep}{0pt}}%
    \setlength{\parskip}{0pt}}%
  {\end{itemize}}
letterlistitemizeEnvironments
letter environment: writing letters letter This environment is used for creating letters. Letters.
listmathletterEnvironments
list list lists of items, generic 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}{labeling}{spacing}
\item item1
\item item2
...
\end{list}
The mandatory labeling argument specifies how items should be labelled (unless the optional argument is supplied to \item). This argument is a piece of text that is inserted in a box to form the label. It can and usually does contain other &latex; commands. The mandatory spacing argument contains commands to change the spacing parameters for the list. This argument will most often be empty, i.e., {}, which leaves the default spacing. The width used for typesetting the list items is specified by \linewidth (Page layout parameters).
mathminipagelistEnvironments
math math environment in-line formulas Synopsis:
\begin{math}
math
\end{math}
The math environment inserts the given math within the running text. \(...\)) and $...$ are synonyms. Math formulas.
minipagepicturemathEnvironments
minipage minipage environment minipage, creating a
\begin{minipage}[position][height][inner-pos]{width}
text
\end{minipage}
The minipage environment typesets its body text in a block that will not be broken across pages. This is similar to the \parbox command (\parbox), but unlike \parbox, other paragraph-making environments can be used inside a minipage. The arguments are the same as for \parbox (\parbox). indentation of paragraphs, in minipage paragraph indentation, in minipage \parindent By default, paragraphs are not indented in the minipage environment. You can restore indentation with a command such as \setlength{\parindent}{1pc} command. footnotes in figures figures, footnotes in Footnotes in a minipage environment are handled in a way that is particularly useful for putting footnotes in figures or tables. A \footnote or \footnotetext command puts the footnote at the bottom of the minipage instead of at the bottom of the page, and it uses the \mpfootnote counter instead of the ordinary footnote counter (Counters). However, don&textrsquo;t put one minipage inside another if you are using footnotes; they may wind up at the bottom of the wrong minipage.
picturequotationminipageEnvironments
picture picture creating pictures pictures, creating
\begin{picture}(width,height)(x offset,y offset)
&dots; picture commands &dots;
\end{picture}
\unitlength 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&textmdash;a number like 5, 0.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 centimeters. You should only change the value of \unitlength, using the \setlength command, outside of a picture environment. The default value is 1pt. A position is a pair of coordinates, such as (2.4,-5), specifying the point with x-coordinate 2.4 and y-coordinate -5. Coordinates are specified in the usual way with respect to an origin, which is normally at the lower-left corner of the picture. Note that when a position appears as an argument, it is not enclosed in braces; the parentheses serve to delimit the argument. The picture environment has one mandatory argument, which is a position. It specifies the size of the picture. The environment produces a rectangular box with width and height determined by this argument&textrsquo;s x- and y-coordinates. The picture environment also has an optional position argument, following the size argument, that can change the origin. (Unlike ordinary optional arguments, this argument is not contained in square brackets.) The optional argument gives the coordinates of the point at the lower-left corner of the picture (thereby determining the origin). For example, if \unitlength has been set to 1mm, the command
\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 typically omit the optional argument, leaving the origin at the lower-left corner. If you then want to modify your picture by shifting everything, you can just add the appropriate optional argument. The environment&textrsquo;s mandatory argument determines the nominal size of the picture. This need bear no relation to how large the picture really is; &latex; will happily allow you to put things outside the picture, or even off the page. The picture&textrsquo;s nominal size is used by &latex; in determining how much room to leave for it. Everything that appears in a picture is drawn by the \put command. The command
\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. lR box The \put command creates an LR box. You can put anything that can go in an \mbox (\mbox) in the text argument of the \put command. When you do this, the reference point will be the lower left corner of the box. The picture commands are described in the following sections. \circle
Draw a circle.
\makebox (picture)
Draw a box of the specified size.
\framebox (picture)
Draw a box with a frame around it.
\dashbox
Draw a dashed box.
\frame
Draw a frame around an object.
\line
Draw a straight line.
\linethickness
Set the line thickness.
\thicklines
A heavier line thickness.
\thinlines
The default line thickness.
\multiput
Draw multiple instances of an object.
\oval
Draw an ellipse.
\put
Place an object at a specified place.
\shortstack
Make a pile of objects.
\vector
Draw a line with an arrow.
\circle\makebox (picture)picture \circle \circle
\circle[*]{diameter}
The \circle command produces a circle with a diameter as close to the specified one as possible. The *-form of the command draws a solid circle. Circles up to 40 pt can be drawn.
\makebox (picture)\framebox (picture)\circlepicture \makebox \makebox (picture) \makebox(width,height)[position]{...} The \makebox command for the picture environment is similar to the normal \makebox command except that you must specify a width and height in multiples of \unitlength. The optional argument, [position], specifies the quadrant that your text appears in. You may select up to two of the following: t Moves the item to the top of the rectangle. b Moves the item to the bottom. l Moves the item to the left. r Moves the item to the right.
\makebox.
\framebox (picture)\dashbox\makebox (picture)picture \framebox \framebox Synopsis:
\framebox(width,height)[pos]{...}
The \framebox command is like \makebox (see previous section), except that it puts a frame around the outside of the box that it creates. \fboxrule \fboxsep The \framebox command produces a rule of thickness \fboxrule, and leaves a space \fboxsep between the rule and the contents of the box.
\dashbox\frame\framebox (picture)picture \dashbox \dashbox Draws a box with a dashed line. Synopsis:
\dashbox{dlen}(rwidth,rheight)[pos]{text}
\dashbox creates a dashed rectangle around text in a picture environment. Dashes are dlen units long, and the rectangle has overall width rwidth and height rheight. The text is positioned at optional pos. A dashed box looks best when the rwidth and rheight are multiples of the dlen.
\frame\line\dashboxpicture \frame \frame Synopsis:
\frame{text}
The \frame command puts a rectangular frame around text. The reference point is the bottom left corner of the frame. No extra space is put between the frame and the object.
\line\linethickness\framepicture \line \line Synopsis:
\line(xslope,yslope){length}
The \line command draws a line with the given length and slope xslope/yslope. Standard &latex; can only draw lines with slope = x/y, where x and y have integer values from −6 through 6. For lines of any slope, not to mention other shapes, see the curve2e and many many other packages on CTAN.
\linethickness\thicklines\linepicture \linethickness \linethickness The \linethickness{dim} command declares the thickness of horizontal and vertical lines in a picture environment to be dim, which must be a positive length. \linethickness does not affect the thickness of slanted lines, circles, or the quarter circles drawn by \oval. \thicklines\thinlines\linethicknesspicture \thicklines \thicklines The \thicklines command is an alternate line thickness for horizontal and vertical lines in a picture environment; cf. \linethickness and \thinlines. \thinlines\multiput\thicklinespicture \thinlines \thinlines The \thinlines command is the default line thickness for horizontal and vertical lines in a picture environment; cf. \linethickness and \thicklines. \multiput\oval\thinlinespicture \multiput \multiput Synopsis:
\multiput(x,y)(delta_x,delta_y){n}{obj}
The \multiput command copies the object obj in a regular pattern across a picture. obj is first placed at position (x,y), then at (x+\delta x,y+\delta y), and so on, n times.
\oval\put\multiputpicture \oval \oval Synopsis:
\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 via the following: t selects the top portion; b selects the bottom portion; r selects the right portion; l selects the left portion.
The &textldquo;corners&textrdquo; of the oval are made with quarter circles with a maximum radius of 20pt, so large &textldquo;ovals&textrdquo; will look more like boxes with rounded corners.
\put\shortstack\ovalpicture \put \put \put(x coord,y coord){ ... } The \put command places the item specified by the mandatory argument at the given coordinates. \shortstack\vector\putpicture \shortstack \shortstack Synopsis:
\shortstack[position]{...\\...\\...}
The \shortstack command produces a stack of objects. The valid positions are: r Move the objects to the right of the stack. l Move the objects to the left of the stack c Move the objects to the centre of the stack (default)
\\ (for \shortstack objects) Objects are separated with \\.
\vector\shortstackpicture \vector \vector Synopsis:
\vector(x-slope,y-slope){length}
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.
quotationquotepictureEnvironments
quotation quotation quoted text with paragraph indentation, displaying displaying quoted text with paragraph indentation paragraph indentations in quoted text Synopsis:
\begin{quotation}
text
\end{quotation}
The margins of the quotation environment are indented on both the left and the right. The text is justified at both margins. Leaving a blank line between text produces a new paragraph. Unlike the quote environment, each paragraph is indented normally.
quotetabbingquotationEnvironments
quote quote quoted text without paragraph indentation, displaying displaying quoted text without paragraph indentation paragraph indentations in quoted text, omitting Snyopsis:
\begin{quote}
text
\end{quote}
The margins of the quote environment are indented on both the left and the right. The text is justified at both margins. Leaving a blank line between text produces a new paragraph. Unlike the quotation environment, paragraphs are not indented.
tabbingtablequoteEnvironments
tabbing tabbing environment tab stops, using lining text up using tab stops alignment via tabbing Synopsis:
\begin{tabbing}
row1col1 \= row1col2 \= row1col3 \= row1col4 \\
row2col1 \>                \> row2col3 \\
...
\end{tabbing}
The tabbing environment provides a way to align text in columns. It works by setting tab stops and tabbing to them much as was done on an ordinary typewriter. 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. The following commands can be used inside a tabbing enviroment: \\ (tabbing)\\ (tabbing) End a line. \= (tabbing)\= (tabbing) Sets a tab stop at the current position. \> (tabbing)\> (tabbing) \> Advances to the next tab stop. \<\< Put following text 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, beginning tabbed line if necessary. \-\- Moves the left margin of the next and all the following commands one tab stop to the left, beginning tabbed line if necessary. \&textrsquo; (tabbing)\' (tabbing) 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&textrsquo;s tab stop. \&textlsquo; (tabbing)\` (tabbing) Allows you to put text flush right against any tab stop, including tab stop 0. However, it can&textrsquo;t move text to the right of the last column because there&textrsquo;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. \a (tabbing)\a (tabbing) \a&textrsquo; (acute accent in tabbing) \a&textlsquo; (grave accent in tabbing) \a= (macron accent in tabbing) In a tabbing environment, the commands \=, \' and \` do not produce accents as usual (Accents). Instead, the commands \a=, \a' and \a` are used. \kill\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. \poptabs\poptabs \poptabs Restores the tab stop positions saved by the last \pushtabs. \pushtabs\pushtabs Saves all current tab stop positions. Useful for temporarily changing tab stop positions in the middle of a tabbing environment. \tabbingsep\tabbingsep Distance to left of tab stop moved by \'. This example typesets a Pascal function in a traditional format:
\begin{tabbing}
function \= fact(n : integer) : integer;\\
         \> begin \= \+ \\
               \> if \= n $>$ 1 then \+ \\
                        fact := n * fact(n-1) \- \\
                  else \+ \\
                        fact := 1; \-\- \\
            end;\\
\end{tabbing}
tabletabulartabbingEnvironments
table table tables, creating creating tables Synopsis:
 \begin{table}[placement]

  body of the table

 \caption{table title}
 \end{table}
Tables are objects that are not part of the normal text, and are usually &textldquo;floated&textrdquo; 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; these are the same as that used with the figure environment, and described there (figure). 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.
tabularthebibliographytableEnvironments
tabular tabular environment lines in tables lining text up in tables Synopsis:
\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*}
These environments produce a box consisting of a sequence of rows of items, aligned vertically in columns. \\ for tabular \\ must be used to specify the end of each row of the table, except for the last, where it is optional&textmdash;unless an \hline command (to put a rule below the table) follows. The mandatory and optional arguments consist of: 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 centre 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 centered items. | A vertical line the full height and depth of the environment. &arobase;{text} This inserts text in every row. An &arobase;-expression suppresses the intercolumn space normally inserted between columns; any desired space before the adjacent item must be included in text. To insert commands that are automatically executed before a given column, you have to load the array package and use the >{...} specifier. \extracolsep An \extracolsep{wd} command in an &arobase;-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 &arobase;-expression. An \extracolsep command can be used only in an &arobase;-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: inside an environment like minipage, array, or tabular. inside an explicit \parbox. 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 a positive integer and cols is any list of column-specifiers, which may contain another *-expression.
Parameters that control formatting: \arrayrulewidth\arrayrulewidth Thickness of the rule created by |, \hline, and \vline in the tabular and array environments; the default is .4pt. \arraystretch\arraystretch Scaling of spacing between rows in the tabular and array environments; default is 1, for no scaling. \doublerulesep\doublerulesep Horizontal distance between the vertical rules produced by || in the tabular and array environments; default is 2pt. \tabcolsep\tabcolsep Half the width of the space between columns; default is 6pt. The following commands can be used inside a tabular environment: \multicolumn
Make an item spanning several columns.
\cline
Draw a horizontal line spanning some columns.
\hline
Draw a horizontal line spanning all columns.
\vline
Draw a vertical line.
\multicolumn\clinetabular \multicolumn \multicolumn Synopsis:
\multicolumn{cols}{pos}{text}
The \multicolumn command makes 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 centered, l for flushleft, r for flushright. The third mandatory argument, text, specifies what text to put in the entry. Here&textrsquo;s an example showing two columns separated by an en-dash; \multicolumn is used for the heading:
\begin{tabular}{r&arobase;{--}l}
\multicolumn{2}{c}{\bf Unicode}\cr
   0x80&0x7FF   \cr
  0x800&0xFFFF  \cr
0x10000&0x1FFFF \cr
\end{tabular}
\cline\hline\multicolumntabular \cline \cline Synopsis:
\cline{i-j}
The \cline command draws horizontal lines across the columns specified, beginning in column i and ending in column j, which are specified in the mandatory argument.
\hline\vline\clinetabular \hline \hline The \hline command draws a horizontal line the width of the enclosing tabular or array environment. It&textrsquo;s most commonly used to draw a line at the top, bottom, and between the rows of a table. \vline\hlinetabular \vline \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 &arobase;-expression.
thebibliographytheoremtabularEnvironments
thebibliography thebibliography bibliography, creating (manually) Synopsis:
\begin{thebibliography}{widest-label}
\bibitem[label]{cite_key}
...
\end{thebibliography}
The thebibliography environment produces a bibliography or reference list. In the article class, this reference list is labelled &textldquo;References&textrdquo;; in the report class, it is labelled &textldquo;Bibliography&textrdquo;. You can change the label (in the standard classes) by redefining the command \refname. For instance, this eliminates it entirely:
\renewcommand{\refname}{}
The mandatory widest-label argument is text that, when typeset, is as wide as the widest item label produced by the \bibitem commands. It is typically given as 9 for bibliographies with less than 10 references, 99 for ones with less than 100, etc. \bibitem
Specify a bibliography item.
\cite
Refer to a bibliography item.
\nocite
Include an item in the bibliography.
Using BibTeX
Automatic generation of bibliographies.
\bibitem\citethebibliography \bibitem \bibitem Synopsis:
\bibitem[label]{cite_key}
The \bibitem command generates an entry labelled by label. If the label argument is missing, a number is automatically generated 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 to the .aux file containing the item&textrsquo;s cite_key and label. When the .aux file is read by the \begin{document} command, the item&textrsquo;s label is associated with cite_key, causing references to cite_key with a \cite command (see next section) to produce the associated label.
\cite\nocite\bibitemthebibliography \cite \cite Synopsis:
\cite[subcite]{keys
The keys argument is a list of one or more citation keys, separated by commas. This command generates an in-text citation to the references associated with keys by entries in the .aux file. The text of the optional subcite argument appears after the citation. For example, \cite[p.~314]{knuth} might produce &textlsquo;[Knuth, p. 314]&textrsquo;.
\nociteUsing BibTeX\citethebibliography \nocite \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\nocitethebibliography Using Bib&tex; using Bib&tex; bib&tex;, using bibliography, creating (automatically) \bibliographystyle \bibliography If you use the Bib&tex; program by Oren Patashnik (highly recommended if you need a bibliography of more than a couple of titles) to maintain your bibliography, you don&textrsquo;t use the thebibliography environment (thebibliography). Instead, you include the lines
\bibliographystyle{bibstyle}
\bibliography{bibfile1,bibfile2}
The \bibliographystyle command does not produce any output of its own. Rather, it defines the style in which the bibliography will be produced: bibstyle refers to a file bibstyle.bst, which defines how your citations will look. The standard style names distributed with Bib&tex; 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 Bib&tex; style files exist tailored to the demands of various publications. See http://www.ctan.org/tex-archive/biblio/bibtex/contrib. The \bibliography command is what actually produces the bibliography. The argument to \bibliography refers to files named bibfile.bib, which should contain your database in Bib&tex; format. Only the entries referred to via \cite and \nocite will be listed in the bibliography.
theoremtitlepagethebibliographyEnvironments
theorem theorem environment theorems, typesetting Synopsis:
\begin{theorem}
theorem-text
\end{theorem}
The theorem environment produces &textldquo;Theorem n&textrdquo; in boldface followed by theorem-text, where the numbering possibilities for n are described under \newtheorem (\newtheorem).
titlepageverbatimtheoremEnvironments
titlepage titlepage environment making a title page title pages, creating Synopsis:
\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 may be useful on title pages (\today). You can use the \maketitle command (\maketitle) to produce a standard title page without a titlepage environment.
verbatimversetitlepageEnvironments
verbatim verbatim environment verbatim text simulating typed text typed text, simulating code, typesetting computer programs, typesetting Synopsis:
\begin{verbatim}
literal-text
\end{verbatim}
The verbatim environment is a paragraph-making environment in which &latex; produces exactly what you type in; for instance the \ character produces a printed \. It turns &latex; into a typewriter with carriage returns and blanks having the same effect that they would on a typewriter. The verbatim uses a monospaced typewriter-like font (\tt). \verb
The macro form of the verbatim environment.
\verbverbatim \verb \verb verbatim text, inline Synopsis:
\verbcharliteral-textchar
\verb*charliteral-textchar
The \verb command typesets literal-text as it is input, including special characters and spaces, using the typewriter (\tt) font. No spaces are allowed between \verb or \verb* and the delimiter char, which begins and ends the verbatim text. The delimiter must not appear in literal-text. visible space The *-form differs only in that spaces are printed with a &textldquo;visible space&textrdquo; character. (Namely, {\tt\char&textlsquo;\ }.)
verseverbatimEnvironments
verse verse environment poetry, an environment for Synopsis:
\begin{verse}
line1 \\
line2 \\
...
\end{verse}
The verse environment is designed for poetry, though you may find other uses for it. \\ for verse The margins are indented on the left and the right, paragraphs are not indented, and the text is not justified. Separate the lines of each stanza with \\, and use one or more blank lines to separate the stanzas.
Line breakingPage breakingEnvironmentsTop Line breaking line breaking breaking lines The first thing &latex; does when processing ordinary text is to translate your input file into a sequence of glyphs and spaces. To produce a printed document, this sequence must be broken into lines (and these lines must be broken into pages). &latex; usually does the line (and page) breaking for you, but in some environments, you do the line breaking yourself with the \\ command, and you can always manually force breaks. \\
Start a new line.
\obeycr & \restorecr
Make each input line start a new output line.
\newline
Break the line
\- (hyphenation)
Insert explicit hyphenation.
\fussy
Be fussy about line breaking.
\sloppy
Be sloppy about line breaking.
\hyphenation
Tell &latex; how to hyphenate a word.
\linebreak & \nolinebreak
Forcing & avoiding line breaks.
\\\obeycr & \restorecrLine breaking
\\[*][morespace] \\ force line break new line, starting line break, forcing The \\ command tells &latex; to start a new line. It has an optional argument, morespace, 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.
\obeycr & \restorecr\newline\\Line breaking
\obeycr & \restorecr \obeycr \restorecr new line, output as input The \obeycr command makes a return in the input file (^^M, internally) the same as \\ (followed by \relax). So each new line in the input will also be a new line in the output. \restorecr restores normal line-breaking behavior.
\newline\- (hyphenation)\obeycr & \restorecrLine breaking
\newline \newline new line, starting (paragraph mode) The \newline command breaks the line at the present point, with no stretching of the text before it. It can only be used in paragraph mode.
\- (hyphenation)\fussy\newlineLine breaking
\- (discretionary hyphen) \- (hyphenation) hyphenation, forcing The \- command tells &latex; that it may hyphenate the word at that point. &latex; is very good at hyphenating, and it will usually find most of the correct hyphenation points, and almost never use an incorrect one. The \- command is used for the exceptional cases. 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.
\fussy\sloppy\- (hyphenation)Line breaking
\fussy \fussy The declaration \fussy (which is the default) makes &tex; picky about line breaking. This usually avoids too much space between words, at the cost of an occasional overfull box. This command cancels the effect of a previous \sloppy command (\sloppy.
\sloppy\hyphenation\fussyLine breaking
\sloppy The declaration \sloppy makes &tex; less fussy about line breaking. This will avoid overfull boxes, at the cost of loose interword spacing. Lasts until a \fussy command is issued (\fussy).
\hyphenation\linebreak & \nolinebreak\sloppyLine breaking
\hyphenation \hyphenation hyphenation, defining Synopsis:
\hyphenation{word-one word-two}
The \hyphenation command declares allowed hyphenation points with a - character in the given words. The words are separated by spaces. &tex; will only hyphenate if the word matches exactly, no inflections are tried. Multiple \hyphenation commands accumulate. Some examples (the default &tex; hyphenation patterns misses the hyphenations in these words):
\hyphenation{ap-pen-dix col-umns data-base data-bases}
\linebreak & \nolinebreak\hyphenationLine breaking
\linebreak & \nolinebreak \linebreak \nolinebreak line breaks, forcing line breaks, preventing Synopses:
\linebreak[priority]
\nolinebreak[priority]
By default, the \linebreak (\nolinebreak) command forces (prevents) a line break at the current position. For \linebreak, the spaces in the line are stretched out so that it extends to the right margin as usual. With the optional argument priority, you can convert the command from a demand to a request. The priority must be a number from 0 to 4. The higher the number, the more insistent the request.
Page breakingFootnotesLine breakingTop Page breaking page breaking breaking pages &latex; starts new pages asynchronously, when enough material has accumulated to fill up a page. Usually this happens automatically, but sometimes you may want to influence the breaks. \cleardoublepage
Start a new right-hand page.
\clearpage
Start a new page.
\newpage
Start a new page.
\enlargethispage
Enlarge the current page a bit.
\pagebreak & \nopagebreak
Forcing & avoiding page breaks.
\cleardoublepage\clearpagePage breaking
\cleardoublepage \cleardoublepage starting on a right-hand page 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\newpage\cleardoublepagePage breaking
\clearpage \clearpage flushing floats and starting a page starting a new page and clearing floats The \clearpage command ends the current page and causes all figures and tables that have so far appeared in the input to be printed.
\newpage\enlargethispage\clearpagePage breaking
\newpage \newpage new page, starting starting a new page The \newpage command ends the current page, but does not clear floats (see \clearpage above).
\enlargethispage\pagebreak & \nopagebreak\newpagePage breaking
\enlargethispage \enlargethispage enlarge current page \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.
\pagebreak & \nopagebreak\enlargethispagePage breaking
\pagebreak & \nopagebreak \pagebreak \nopagebreak page break, forcing page break, preventing Synopses:
\pagebreak[priority]
\nopagebreak[priority]
By default, the \pagebreak (\nopagebreak) command forces (prevents) a page break at the current position. With \pagebreak, the vertical space on the page is stretched out where possible so that it extends to the normal bottom margin. With the optional argument priority, 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.
FootnotesDefinitionsPage breakingTop Footnotes footnotes, creating 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. \footnote
Insert a footnote.
\footnotemark
Insert footnote mark only.
\footnotetext
Insert footnote text only.
Symbolic footnotes
Using symbols instead of numbers for footnotes.
Footnote parameters
Parameters for footnote formatting.
\footnote\footnotemarkFootnotes
\footnote \footnote Synopsis:
\footnote[number]{text}
The \footnote command places the numbered footnote text at the bottom of the current page. The optional argument number changes 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. (See following sections.)
\footnotemark\footnotetext\footnoteFootnotes
\footnotemark \footnotemark With no optional argument, the \footnotemark command puts the current footnote number in the text. This command can be used in inner paragraph mode. You give the text of the footnote separately, with the \footnotetext command. This command can be used to produce several consecutive footnote markers referring to the same footnote with
\footnotemark[\value{footnote}]
after the first \footnote command.
\footnotetextSymbolic footnotes\footnotemarkFootnotes
\footnotetext \footnotetext Synopsis:
\footnotetext[number]{text}
The \footnotetext command places text at the bottom of the page as a footnote. This command can come anywhere after the \footnotemark command. The \footnotetext command must appear in outer paragraph mode. The optional argument number changes the default footnote number.
Symbolic footnotesFootnote parameters\footnotetextFootnotes
Symbolic footnotes footnotes, symbolic instead of numbered If you want to use symbols for footnotes, rather than increasing numbers, redefine \thefootnote like this:
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\fnsymbol, and footnotes \&arobase;fnsymbol The \fnsymbol command produces a predefined series of symbols (\alph \Alph \arabic \roman \Roman \fnsymbol). If you want to use a different symbol as your footnote mark, you&textrsquo;ll need to also redefine \&arobase;fnsymbol.
Footnote parametersSymbolic footnotesFootnotes
Footnote parameters footnote parameters parameters, for footnotes \footnoterule\footnoterule Produces the rule separating the main text on a page from the page&textrsquo;s footnotes. Default dimensions: 0.4pt thick (or wide), and 0.4\columnwidth long in the standard document classes (except slides, where it does not appear). \footnotesep\footnotesep The height of the strut placed at the beginning of the footnote. By default, this is set to the normal strut for \footnotesize fonts (Font sizes), therefore there is no extra space between footnotes. This is 6.65pt for 10pt, 7.7pt for 11pt, and 8.4pt for 12pt.
DefinitionsCountersFootnotesTop Definitions definitions &latex; has support for making new commands of many different kinds. \newcommand & \renewcommand
(Re)define a new command.
\newcounter
Define a new counter.
\newlength
Define a new length.
\newsavebox
Define a new box.
\newenvironment & \renewenvironment
Define a new environment.
\newtheorem
Define a new theorem-like environment.
\newfont
Define a new font name.
\protect
Using tricky commands.
\newcommand & \renewcommand\newcounterDefinitions
\newcommand & \renewcommand \newcommand commands, defining new ones defining a new command new commands, defining \newcommand and \renewcommand define and redefine a command, respectively. Synopses:
  \newcommand[*]{cmd}[nargs][optarg]{defn}
\renewcommand[*]{cmd}[nargs][optarg]{defn}
* *-form of defining new commands The *-form of these commands requires that the arguments not contain multiple paragraphs of text (not \long, in plain &tex; terms). cmd The command name beginning with \. For \newcommand, it must not be already defined and must not begin with \end; for \renewcommand, it must already be defined. nargs An optional integer from 1 to 9 specifying the number of arguments that the command will take. The default is for the command to have no arguments. optarg If this optional parameter is present, it means that the command&textrsquo;s first argument is optional. The default value of the optional argument (i.e., if it is not specified in the call) is optarg, or, if that argument is present in the \newcommand but has an empty value, the string def. defn The text to be substituted for every occurrence of cmd; a construct of the form #n in defn is replaced by the text of the nth argument.
\newcounter\newlength\newcommand & \renewcommandDefinitions
\newcounter \newcounter counters, defining new Synopsis:
\newcounter{cnt}[countername]
The \newcounter command defines a new counter named cnt. The new counter is initialized to zero. Given the optional argument [countername], cnt will be reset whenever countername is incremented. Counters, for more information about counters.
\newlength\newsavebox\newcounterDefinitions
\newlength \newlength lengths, defining new Synopsis:
\newlength{\arg}
The \newlength command defines the mandatory argument as a length command with a value of 0in. The argument must be a control sequence, as in \newlength{\foo}. An error occurs if \foo is already defined. Lengths, for how to set the new length to a nonzero value, and for more information about lengths in general.
\newsavebox\newenvironment & \renewenvironment\newlengthDefinitions
\newsavebox \newsavebox Synopsis:
\newsavebox{cmd}
Defines \cmd, which must be a command name not already defined, to refer to a new bin for storing boxes.
\newenvironment & \renewenvironment\newtheorem\newsaveboxDefinitions
\newenvironment & \renewenvironment \newenvironment \renewenvironment environments, defining defining new environments redefining environments Synopses:
  \newenvironment[*]{env}[nargs][default]{begdef}{enddef}
\renewenvironment[*]{env}[nargs]{begdef}{enddef}
These commands define or redefine an environment env, that is, \begin{env} &dots; \end{env}. * *-form of environment commands The *-form of these commands requires that the arguments (not the contents of the environment) not contain multiple paragraphs of text. env The name of the environment. For \newenvironment, env must not be an existing environment, and the command \env must be undefined. For \renewenvironment, env must be the name of an existing environment. nargs 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 expanded at every occurrence of \begin{env}; a construct of the form #n in begdef is replaced by the text of the nth argument. enddef The text expanded at every occurrence of \end{env}. It may not contain any argument parameters.
\newtheorem\newfont\newenvironment & \renewenvironmentDefinitions
\newtheorem \newtheorem theorems, defining defining new theorems
\newtheorem{newenv}{label}[within]
\newtheorem{newenv}[numbered_like]{label}
This command defines a theorem-like environment. Arguments: newenv The name of the environment to be defined; must not be the name of an existing environment or otherwise defined. label The text printed at the beginning of the environment, before the number. For example, Theorem. numbered_like (Optional.) The name of an already defined theorem-like environment; the new environment will be numbered just like numbered_like. within (Optional.) The name of an already defined counter, a sectional unit. The new theorem counter will be reset at the same time as the within counter.
At most one of numbered_like and within can be specified, not both.
\newfont\protect\newtheoremDefinitions
\newfont \newfont fonts, new commands for defining new fonts Synopsis:
\newfont{cmd}{fontname}
Defines a control sequence \cmd, which must not already be defined, to make fontname be the current font. The file looked for on the system is named fontname.tfm. This is a low-level command for setting up to use an individual font. More commonly, fonts are defined in families through .fd files.
\protect\newfontDefinitions
\protect \protect fragile commands moving arguments Footnotes, line breaks, any command that has an optional argument, and many more are so-called fragile commands. When a fragile command is used in certain contexts, called moving arguments, it must be preceded by \protect. In addition, any fragile commands within the arguments must have their own \protect. Some examples of moving arguments are \caption (figure), \thanks (\maketitle), and &hyphenbreak;expressions in tabular and array environments (tabular). robust commands Commands which are not fragile are called robust. They must not be preceded by \protect. See also: http://www-h.eng.cam.ac.uk/help/tpl/textprocessing/teTeX/latex/latex2e-html/fragile.html http://www.tex.ac.uk/cgi-bin/texfaq2html?label=protect
CountersLengthsDefinitionsTop Counters counters, a list of variables, a list of 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&textndash;enumiv are used for the nested enumerate environment.) Below is a list of the counters used in &latex;&textrsquo;s standard document classes to control numbering.
part            paragraph       figure          enumi
chapter         subparagraph    table           enumii
section         page            footnote        enumiii
subsection      equation        mpfootnote      enumiv
subsubsection
\alph \Alph \arabic \roman \Roman \fnsymbol
Print value of a counter.
\usecounter
Use a specified counter in a list environment.
\value
Use the value of a counter in an expression.
\setcounter
Set the value of a counter.
\addtocounter
Add a quantity to a counter.
\refstepcounter
Add to counter, resetting subsidiary counters.
\stepcounter
Add to counter, resetting subsidiary counters.
\day \month \year
Numeric date values.
\alph \Alph \arabic \roman \Roman \fnsymbol\usecounterCounters
\alph \Alph \arabic \roman \Roman \fnsymbol: Printing counters All of these commands take a single counter as an argument, for instance, \alph{enumi}. \alph\alph prints counter using lowercase letters: &textlsquo;a&textrsquo;, &textlsquo;b&textrsquo;, &enddots; \Alph\Alph uses uppercase letters: &textlsquo;A&textrsquo;, &textlsquo;B&textrsquo;, &enddots; \arabic\arabic uses Arabic numbers: &textlsquo;1&textrsquo;, &textlsquo;2&textrsquo;, &enddots; \roman\roman uses lowercase roman numerals: &textlsquo;i&textrsquo;, &textlsquo;ii&textrsquo;, &enddots; \roman\roman uses uppercase roman numerals: &textlsquo;I&textrsquo;, &textlsquo;II&textrsquo;, &enddots; \fnsymbol\fnsymbol prints the value of counter in a specific sequence of nine symbols (conventionally used for labeling footnotes). The value of counter must be between 1 and 9, inclusive. Here are the symbols: $\ast$ $\dagger$ $\ddagger$ $\S$ $\P$ $\parallel$ $\ast\ast$ $\dagger\dagger$ $\ddagger\ddagger$ The symbols mostly aren&textrsquo;t supported in Info, but here are the names:
asterix(*) dagger ddagger section-sign paragraph-sign parallel
double-asterix(**) double-dagger double-ddagger
\usecounter\value\alph \Alph \arabic \roman \Roman \fnsymbolCounters
\usecounter{counter} \usecounter list items, specifying counter numbered items, specifying counter Synopsis:
\usecounter{counter}
The \usecounter command is used in the second argument of the list environment to specify counter to be used to number the list items.
\value\setcounter\usecounterCounters
\value{counter} \value counters, getting value of Synopsis:
\value{counter}
The \value command produces the value of counter. It can be used anywhere &latex; expects a number, for example:
\setcounter{myctr}{3}
\addtocounter{myctr}{1}
\hspace{\value{myctr}\parindent}
\setcounter\addtocounter\valueCounters
\setcounter{counter}{value} \setcounter counters, setting setting counters Synopsis:
\setcounter{\counter}{value}
The \setcounter command sets the value of \counter to the value argument.
\addtocounter\refstepcounter\setcounterCounters
\addtocounter{counter}{value} \addtocounter The \addtocounter command increments counter by the amount specified by the value argument, which may be negative.
\refstepcounter\stepcounter\addtocounterCounters
\refstepcounter{counter} \refstepcounter The \refstepcounter command works in the same way as \stepcounter \stepcounter, except it also defines the current \ref value to be the result of \thecounter.
\stepcounter\day \month \year\refstepcounterCounters
\stepcounter{counter} \stepcounter The \stepcounter command adds one to counter and resets all subsidiary counters.
\day \month \year\stepcounterCounters
\day \month \year: Predefined counters \day \month \year &latex; defines counters for the day of the month (\day, 1&textndash;31), month of the year (\month, 1&textndash;12), and year (\year, Common Era). When &tex; starts up, they are set to the current values on the system where &tex; is running. They are not updated as the job progresses. The related command \today produces a string representing the current day (\today).
LengthsMaking paragraphsCountersTop Lengths lengths, defining and using A length is a measure of distance. Many &latex; commands take a length as an argument. \setlength
Set the value of a length.
\addtolength
Add a quantity to a length.
\settodepth
Set a length to the depth of something.
\settoheight
Set a length to the height of something.
\settowidth
Set a length to the width of something.
Predefined lengths
Lengths that are, like, predefined.
\setlength\addtolengthLengths
\setlength{\len}{value} \setlength lengths, setting The \setlength sets the value of \len to the value argument, which can be expressed in any units that &latex; understands, i.e., inches (in), millimeters (mm), points (pt), big points (bp, etc.
\addtolength\settodepth\setlengthLengths
\addtolength{\len}{amount} \addtolength lengths, adding to The \addtolength command increments a &textldquo;length command&textrdquo; \len by the amount specified in the amount argument, which may be negative.
\settodepth\settoheight\addtolengthLengths
\settodepth \settodepth \settodepth{\gnat}{text} The \settodepth command sets the value of a length command equal to the depth of the text argument.
\settoheight\settowidth\settodepthLengths
\settoheight \settoheight \settoheight{\gnat}{text} The \settoheight command sets the value of a length command equal to the height of the text argument.
\settowidthPredefined lengths\settoheightLengths
\settowidth{\len}{text} \settowidth The \settowidth command sets the value of the command \len to the width of the text argument.
Predefined lengths\settowidthLengths
Predefined lengths lengths, predefined predefined lengths \width \width \height \height \depth \depth \totalheight \totalheight These length parameters can be used in the arguments of the box-making commands (Boxes). They specify the natural width, etc., of the text in the box. \totalheight equals \height + \depth. To make a box with the text stretched to double the natural size, e.g., say \makebox[2\width]{Get a stretcher}
Making paragraphsMath formulasLengthsTop Making paragraphs making paragraphs paragraphs A paragraph is ended by one or more completely blank lines&textmdash;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 paragraph.
\noindent
Do not indent this paragraph.
\parskip
Space added before paragraphs.
Marginal notes
Putting remarks in the margin.
\indent\noindentMaking paragraphs
\indent \indent \parindent indent, forcing \indent produces a horizontal space whose width equals the width of the \parindent length, the normal paragraph indentation. It is used to add paragraph indentation where it would otherwise be suppressed. The default value for \parindent is 1em in two-column mode, otherwise 15pt for 10pt documents, 17pt for 11pt, and 1.5em for 12pt.
\noindent\parskip\indentMaking paragraphs
\noindent \noindent indent, suppressing When used at the beginning of the paragraph, \noindent suppresses any paragraph indentation. It has no effect when used in the middle of a paragraph.
\parskipMarginal notes\noindentMaking paragraphs
\parskip \parskip vertical space before paragraphs \parskip is a rubber length defining extra vertical space added before each paragraph. The default is 0pt plus1pt.
Marginal notes\parskipMaking paragraphs
Marginal notes marginal notes notes in the margin remarks in the margin \marginpar Synopsis:
\marginpar[left]{right}
The \marginpar command creates a note in the margin. The first line of the note will have the same baseline as the line in the text where the \marginpar occurs. When you only specify the mandatory argument right, the text will be placed in the right margin for one-sided layout; in the outside margin for two-sided layout; in the nearest margin for two-column layout. \reversemarginpar \normalmarginpar The command \reversemarginpar places subsequent marginal notes in the opposite (inside) margin. \normalmarginpar places them in the default position. 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 there by beginning the node with \hspace{0pt}. These parameters affect the formatting of the note: \marginparpush\marginparpush Minimum vertical space between notes; default 7pt for 12pt documents, 5pt else. \marginparsep\marginparsep Horizontal space between the main text and the note; default 11pt for 10pt documents, 10pt else. \marginparwidth\marginparwidth Width of the note itself; default for a one-sided 10pt document is 90pt, 83pt for 11pt, and 68pt for 12pt; 17pt more in each case for a two-sided document. In two column mode, the default is 48pt. The standard &latex; routine for marginal notes does not prevent notes from falling off the bottom of the page.
Math formulasModesMaking paragraphsTop Math formulas math formulas formulas, math math mode, entering math environment displaymath environment equation environment There are three environments that put &latex; in math mode: math For formulas that appear right in the text. displaymath For formulas 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 math environment can be used in both paragraph and LR mode, but the displaymath and equation environments can be used only in paragraph mode. The math and displaymath environments are used so often that they have the following short forms:
\(...\)   instead of   \begin{math}...\end{math}
\[...\]   instead of   \begin{displaymath}...\end{displaymath}
$ In fact, the math environment is so common that it has an even shorter form:
$ ... $   instead of   \(...\)
\boldmath \unboldmath The \boldmath command changes math letters and symbols to be in a bold font. It is used outside of math mode. Conversely, the \unboldmath command changes math glyphs to be in a normal font; it too is used outside of math mode. \displaystyle The \displaystyle declaration forces the size and style of the formula to be that of displaymath, e.g., with limits above and below summations. For example
$\displaystyle \sum_{n=0}^\infty x_n $
Subscripts & superscripts
Also known as exponent or index.
Math symbols
Various mathematical squiggles.
Math functions
Math function names like sin and exp.
Math accents
Accents in math.
Spacing in math mode
Thick, medium, thin and negative spaces.
Math miscellany
Stuff that doesn&textrsquo;t fit anywhere else.
Subscripts & superscriptsMath symbolsMath formulas
Subscripts & superscripts superscript subscript exponent _ ^ To get an expression exp to appear as a subscript, you just type _{exp}. To get exp to appear as a superscript, you type ^{exp}. &latex; handles superscripted superscripts and all of that stuff in the natural way. It even does the right thing when something has both a subscript and a superscript.
Math symbolsMath functionsSubscripts & superscriptsMath formulas
Math symbols math symbols symbols, math greek letters &latex; provides almost any mathematical symbol you&textrsquo;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 pi symbol (\pi) in your output. \|\| \| \aleph\aleph \aleph \alpha\alpha \alpha \amalg\amalg \amalg (binary operation) \angle\angle \angle \approx\approx \approx (relation) \ast\ast \ast (binary operation) \asymp\asymp \asymp (relation) \backslash\backslash \ (delimiter) \beta\beta \beta \bigcap\bigcap \bigcap \bigcirc\bigcirc \bigcirc (binary operation) \bigcup\bigcup \bigcup \bigodot\bigodot \bigodot \bigoplus\bigoplus \bigoplus \bigotimes\bigotimes \bigotimes \bigtriangledown\bigtriangledown \bigtriangledown (binary operation) \bigtriangleup\bigtriangleup \bigtriangleup (binary operation) \bigsqcup\bigsqcup \bigsqcup \biguplus\biguplus \biguplus \bigcap\bigcap \bigvee \bigwedge\bigwedge \bigwedge \bot\bot \bot \bowtie\bowtie \bowtie (relation) \Box\Box (square open box symbol) \bullet\bullet bullet symbol \bullet (binary operation) \cap\cap \cap (binary operation) \cdot\cdot \cdot (binary operation) \chi\chi \chi \circ\circ \circ (binary operation) \clubsuit\clubsuit \clubsuit \cong\cong \cong (relation) \coprod\coprod \coprod \cup\cup \cup (binary operation) \dagger\dagger \dagger (binary operation) \dashv\dashv \dashv (relation) \ddagger\ddagger \dagger (binary operation) \Delta\Delta \Delta \delta\delta \delta \Diamond\Diamond bigger \diamond \diamond\diamond \diamond (binary operation) \diamondsuit\diamondsuit \diamondsuit \div\div \div (binary operation) \doteq\doteq \doteq (relation) \downarrow\downarrow \downarrow (delimiter) \Downarrow\Downarrow \Downarrow (delimiter) \ell\ell \ell \emptyset\emptyset \emptyset \epsilon\epsilon \epsilon \equiv\equiv \equiv (relation) \eta\eta \eta \exists\exists \exists \flat\flat \flat \forall\forall \forall \frown\frown \frown (relation) \Gamma\Gamma \Gamma \gamma\gamma \gamma \ge\ge \ge \geq\geq \geq (relation) \gets\gets \gets \gg\gg \gg (relation) \hbar\hbar \hbar \heartsuit\heartsuit \heartsuit \hookleftarrow\hookleftarrow \hookleftarrow \hookrightarrow\hookrightarrow \hookrightarrow \iff\iff \iff \Im\Im \Im \in\in \in (relation) \infty\infty \infty \int\int \int \iota\iota \iota \Join\Join condensed bowtie symbol (relation) \kappa\kappa \kappa \Lambda\Lambda \Lambda \lambda\lambda \lambda \land\land \land \langle\langle \langle (delimiter) \lbrace\lbrace \lbrace (delimiter) \lbrack\lbrack \lbrack (delimiter) \lceil\lceil \lceil (delimiter) \le\le \le \leadsto\leadsto \Leftarrow\Leftarrow \Leftarrow \leftarrow\leftarrow \leftarrow \leftharpoondown\leftharpoondown \leftharpoondown \leftharpoonup\leftharpoonup \leftharpoonup \Leftrightarrow\Leftrightarrow \Leftrightarrow \leftrightarrow\leftrightarrow \leftrightarrow \leq\leq \leq (relation) \lfloor\lfloor \lfloor (delimiter) \lhd\lhd (left-pointing arrow head) \ll\ll \ll (relation) \lnot\lnot \lnot \longleftarrow\longleftarrow \longleftarrow \longleftrightarrow\longleftrightarrow \longleftrightarrow \longmapsto\longmapsto \longmapsto \longrightarrow\longrightarrow \longrightarrow \lor\lor \lor \mapsto\mapsto \mapsto \mho\mho \mid\mid \mid (relation) \models\models \models (relation) \mp\mp \mp (binary operation) \mu\mu \mu \nabla\nabla \nabla \natural\natural \natural \ne\ne \ne \nearrow\nearrow \nearrow \neg\neg \neg \neq\neq \neq (relation) \ni\ni \ni (relation) \not\not Overstrike a following operator with a /, as in \not=. \notin\notin \ni \nu\nu \nu \nwarrow\nwarrow \nwarrow \odot\odot \odot (binary operation) \oint\oint \oint \Omega\Omega \Omega \omega\omega \omega \ominus\ominus \ominus (binary operation) \oplus\oplus \oplus (binary operation) \oslash\oslash \oslash (binary operation) \otimes\otimes \otimes (binary operation) \owns\owns \owns \parallel\parallel \parallel (relation) \partial\partial \partial \perp\perp \perp (relation) \phi\phi \phi \Pi\Pi \Pi \pi\pi \pi \pm\pm \pm (binary operation) \prec\prec \prec (relation) \preceq\preceq \preceq (relation) \prime\prime \prime \prod\prod \prod \propto\propto \propto (relation) \Psi\Psi \Psi \psi\psi \psi \rangle\rangle \rangle (delimiter) \rbrace\rbrace \rbrace (delimiter) \rbrack\rbrack \rbrack (delimiter) \rceil\rceil \rceil (delimiter) \Re\Re \Re \rfloor\rfloor \rfloor \rhd\rhd (binary operation) \rho\rho \rho \Rightarrow\Rightarrow \Rightarrow \rightarrow\rightarrow \rightarrow \rightharpoondown\rightharpoondown \rightharpoondown \rightharpoonup\rightharpoonup \rightharpoonup \rightleftharpoons\rightleftharpoons \rightleftharpoons \searrow\searrow \searrow \setminus\setminus \setminus (binary operation) \sharp\sharp \sharp \Sigma\Sigma \Sigma \sigma\sigma \sigma \sim\sim \sim (relation) \simeq\simeq \simeq (relation) \smallint\smallint \smallint \smile\smile \smile (relation) \spadesuit\spadesuit \spadesuit \sqcap\sqcap \sqcap (binary operation) \sqcup\sqcup \sqcup (binary operation) \sqsubset\sqsubset (relation) \sqsubseteq\sqsubseteq \sqsubseteq (relation) \sqsupset\sqsupset (relation) \sqsupseteq\sqsupseteq \sqsupseteq (relation) \star\star \star (binary operation) \subset\subset \subset (relation) \subseteq\subseteq \subseteq (relation) \succ\succ \succ (relation) \succeq\succeq \succeq (relation) \sum\sum \sum \supset\supset \supset (relation) \supseteq\supseteq \supseteq (relation) \surd\surd \surd \swarrow\swarrow \swarrow \tau\tau \tau \theta\theta \theta \times\times \times (binary operation) \to\to \to \top\top \top \triangle\triangle \triangle \triangleleft\triangleleft \triangleleft (binary operation) \triangleright\triangleright \triangleright (binary operation) \unlhd\unlhd left-pointing arrowhead with line under (binary operation) \unrhd\unrhd right-pointing arrowhead with line under (binary operation) \Uparrow\Uparrow \Uparrow (delimiter) \uparrow\uparrow \uparrow (delimiter) \Updownarrow\Updownarrow \Updownarrow (delimiter) \updownarrow\updownarrow \updownarrow (delimiter) \uplus\uplus \uplus (binary operation) \Upsilon\Upsilon \Upsilon \upsilon\upsilon \upsilon \varepsilon\varepsilon \varepsilon \varphi\varphi \varphi \varpi\varpi \varpi \varrho\varrho \varrho \varsigma\varsigma \varsigma \vartheta\vartheta \vartheta \vdash\vdash \vdash (relation) \vee\vee \vee (binary operation) \Vert\Vert \Vert (delimiter) \vert\vert \vert (delimiter) \wedge\wedge \wedge (binary operation) \wp\wp \wp \wr\wr \wr (binary operation) \Xi\Xi \Xi \xi\xi \xi \zeta\zeta \zeta
Math functionsMath accentsMath symbolsMath formulas
Math functions math functions functions, math These commands produce roman function names in math mode with proper spacing. \arccos\arccos \arccos \arcsin\arcsin \arcsin \arctan\arctan \arctan \arg\arg \arg \bmod\bmod Binary modulo operator (x \bmod y) \cos\cos \cos \cosh\cosh \cosh \cot\cot \cos \coth\coth \cosh \csc\csc \csc \deg\deg \deg \det\det \deg \dim\dim \dim \exp\exp \exp \gcd\gcd \gcd \hom\hom \hom \inf\inf \inf \ker\ker \ker \lg\lg \lg \lim\lim \lim \liminf\liminf \liminf \limsup\limsup \limsup \ln\ln \ln \log\log \log \max\max \max \min\min \min \pmod\pmod parenthesized modulus, as in (\pmod 2^n - 1) \Pr\Pr \Pr \sec\sec \sec \sin\sin \sin \sinh\sinh \sinh \sup\sup \sup \tan\tan \tan \tanh\tanh \tanh
Math accentsSpacing in math modeMath functionsMath formulas
Math accents math accents accents, mathematical &latex; provides a variety of commands for producing accented letters in math. These are different from accents in normal text (Accents). \acute\acute acute accent, math Math acute accent: \acute{x}. \bar\bar bar-over accent, math macron accent, math Math bar-over accent: \bar{x}. \breve\breve breve accent, math Math breve accent: \breve{x}. \check\check check accent, math hacek accent, math Math hacek (check) accent: \check{x}. \ddot\ddot double dot accent, math Math dieresis accent: \ddot{x}. \dot\dot overdot accent, math dot over accent, math Math dot accent: \dot{x}. \grave\grave grave accent, math Math grave accent: \grave{x}. \hat\hat hat accent, math circumflex accent, math Math hat (circumflex) accent: \hat{x}. \imath\imath dotless i, math Math dotless i. \jmath\jmath dotless j, math Math dotless j. \mathring\mathring ring accent, math Math ring accent: x. \tilde\tilde tilde accent, math Math tilde accent: \tilde{x}. \vec\vec vector symbol, math Math vector symbol: \vec{x}. \widehat\widehat wide hat accent, math Math wide hat accent: \widehat{x+y}. \widehat\widehat wide tile accent, math Math wide tilde accent: \widetilde{x+y}.
Spacing in math modeMath miscellanyMath accentsMath formulas
Spacing in math mode spacing within math mode math mode, spacing In a math environment, &latex; ignores the spaces you type and puts in the spacing according to the normal rules for mathematics texts. If you want different spacing, &latex; provides the following commands for use in math mode: \; \; A thick space (5\over18\,quad). \: \> \: \> Both of these produce a medium space (2\over9\,quad). \, \, A thin space (1\over6\,quad); not restricted to math mode. \! A negative thin space (-{1\over6}\,quad).
Math miscellanySpacing in math modeMath formulas
Math miscellany math miscellany \*\* discretionary multiplication multiplication symbol, discretionary line break A &textldquo;discretionary&textrdquo; multiplication symbol, at which a line break is allowed. \cdots\cdots A horizontal ellipsis with the dots raised to the center of the line. As in: &textlsquo;$\cdots$&textrsquo;. \ddots\ddots A diagonal ellipsis: \ddots. \frac{num}{den}\frac{num}{den} \frac Produces the fraction num divided by den. \left delim1 ... \right delim2\left delim1 ... \right delim2 \right null delimiter The two delimiters need not match; . acts as a null delimiter, producing no output. The delimiters are sized according to the math in between. Example: \left( \sum_i=1^10 a_i \right]. \overbrace{text}\overbrace{text} Generates a brace over text. For example, \overbrace{x+\cdots+x}^{k \rm\;times}. \overline{text}\overline{text} Generates a horizontal line over tex. For exampe, \overline{x+y}. \sqrt[root]{arg}\sqrt[root]{arg} Produces the representation of the square root of arg. The optional argument root determines what root to produce. For example, the cube root of x+y would be typed as $\sqrt[3]{x+y}$. In &tex;, the result looks like this: $\root 3 \of x+y$. \stackrel{text}{relation}\stackrel{text}{relation} Puts text above relation. For example, \stackrel{f}{\longrightarrow}. In &tex;, the result looks like this: $\buildrel f \over \longrightarrow$. \underbrace{math}\underbrace{math} Generates math with a brace underneath. In &tex;, the result looks like this: $\underbrace{x+y+z}_{>\,0}$. \underline{text}\underline{text} Causes text, which may be either math mode or not, to be underlined. The line is always below the text, taking account of descenders. In &tex;, the result looks like this: $\underline{xyz}$ \vdots\vdots \vdots Produces a vertical ellipsis. In &tex;, the result looks like this: $\vdots$.
ModesPage stylesMath formulasTop Modes modes paragraph mode math mode left-to-right mode lR mode 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 &latex; changes mode only when it goes up or down a staircase to a different level, though not all level changes produce mode changes. Mode changes occur only when entering or leaving an environment, or when &latex; is processing the argument of certain text-producing commands. &textldquo;Paragraph mode&textrdquo; is the most common; it&textrsquo;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 &textldquo;math mode&textrdquo; when it&textrsquo;s generating a mathematical formula. In &textldquo;LR mode&textrdquo;, 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 &textldquo;inner paragraph mode&textrdquo;. Its normal paragraph mode, which it starts out in, is called &textldquo;outer paragraph mode&textrdquo;. Page stylesSpacesModesTop Page styles styles, page page styles The \documentclass command determines the size and position of the page&textrsquo;s head and foot. The page style determines what goes in them. \maketitle
Generate a title page.
\pagenumbering
Set the style used for page numbers.
\pagestyle
Change the headings/footings style.
\thispagestyle
Change the headings/footings style for this page.
\maketitle\pagenumberingPage styles
\maketitle titles, making \maketitle The \maketitle command generates a title on a separate title page&textmdash;except in the article class, where the title is placed at the top of the first page. Information used to produce the title is obtained from the following declarations: \author{name \and name2}\author{name \and name2} author, for titlepage \\ for \author \and for \author The \author command declares the document author(s), where the argument is a list of authors separated by \and commands. Use \\ to separate lines within a single author&textrsquo;s entry&textmdash;for example, to give the author&textrsquo;s institution or address. \date{text}\date{text} date, for titlepage The \date command declares text to be the document&textrsquo;s date. With no \date command, the current date (\today) is used. \thanks{text}\thanks{text} thanks, for titlepage credit footnote The \thanks command produces a \footnote to the title, usually used for credit acknowledgements. \title{text}\title{text} title, for titlepage \\ for \title The \title command declares text to be the title of the document. Use \\ to force a line break, as usual.
\pagenumbering\pagestyle\maketitlePage styles
\pagenumbering \pagenumbering page numbering style Synopsis:
\pagenumbering{style}
Specifies the style of page numbers, according to style: arabic arabic numerals roman lowercase Roman numerals Roman uppercase Roman numerals alph lowercase letters Alph uppercase letters
\pagestyle\thispagestyle\pagenumberingPage styles
\pagestyle \pagestyle header style footer style running header and footer style Synopsis:
\pagestyle{style}
The \pagestyle command specifies how the headers and footers are typeset from the current page onwards. Values for style: plain Just a plain page number. empty Empty headers and footers, e.g., no page numbers. headings Put running headers on each page. The document style specifies what goes in the headers. myheadings Custom headers, specified via the \markboth or the \markright commands.
Here are the descriptions of \markboth and \markright: \markboth{left}{right}\markboth{left}{right} Sets both the left and the right heading. A &textldquo;left-hand heading&textrdquo; (left) is generated by the last \markboth command before the end of the page, while a &textldquo;right-hand heading&textrdquo; (right 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{right}\markright{right} Sets the right heading, leaving the left heading unchanged.
\thispagestyle\pagestylePage styles
\thispagestyle{style} \thispagestyle The \thispagestyle command works in the same manner as the \pagestyle command (see previous section) except that it changes to style for the current page only.
SpacesBoxesPage stylesTop Spaces spaces &latex; has many ways to produce white (or filled) space. Another space-producing command is \, to produce a &textldquo;thin&textrdquo; space (usually 1/6quad). It can be used in text mode, but is more often useful in math mode (Spacing in math mode).
Horizontal space
\hspace
Fixed horizontal space.
\hfill
Stretchable horizontal space.
\SPACE
Normal interword space.
\AT
Ending a sentence.
\thinspace
One-sixth of an em.
\/
Per-character italic correction.
\hrulefill
Stretchable horizontal rule.
\dotfill
Stretchable horizontal dots.
Vertical space
\addvspace
Add arbitrary vertical space if needed.
\bigskip \medskip \smallskip
Fixed vertical spaces.
\vfill
Infinitely stretchable vertical space.
\vspace
Add arbitrary vertical space.
\hspace\hfillSpaces
\hspace \hspace Synopsis:
\hspace[*]{length}
The \hspace command adds horizontal space. The length argument can be expressed in any terms that &latex; understands: points, inches, etc. It is a rubber length. You can add both negative and positive space with an \hspace command; adding negative space is like backspacing. &latex; normally removes horizontal space that comes at the beginning or end of a line. To preserve this space, use the optional * form.
\hfill\SPACE\hspaceSpaces
\hfill \hfill The \hfill fill command produces a &textldquo;rubber length&textrdquo; which has no natural space but can stretch or shrink horizontally as far as needed. \fill The \fill parameter is the rubber length itself (technically, the glue value 0pt plus1fill); thus, \hspace\fill is equivalent to \hfill.
\SPACE\AT\hfillSpaces
\SPACE \SPACE \TAB \NEWLINE The \ (space) command produces a normal interword space. It&textrsquo;s useful after punctuation which shouldn&textrsquo;t end a sentence. For example Knuth's article in Proc.\ Amer.\ Math\. Soc.\ is fundamental. It is also often used after control sequences, as in \TeX\ is a nice system. In normal circumstances, \tab and \newline are equivalent to \ .
\AT\thinspace\SPACESpaces
\&arobase; \&arobase; The \&arobase; command makes the following punctuation character end a sentence even if it normally would not. This is typically used after a capital letter. Here are side-by-side examples with and without \&arobase;:
&dots; in C\&arobase;. Pascal, though &dots;
&dots; in C. Pascal, though &dots;
produces &dots; in C&eosperiod; Pascal, though &dots;&linebreak; &dots; in C. Pascal, though &dots;
\thinspace\/\ATSpaces
\thinspace \thinspace \thinspace produces an unbreakable and unstretchable space that is 1/6 of an em. This is the proper space to use in nested quotes, as in &textrsquo;&textrdquo;.
\/\hrulefill\thinspaceSpaces
\/ \/ The \/ command produces an italic correction. This is a small space defined by the font designer for a given character, to avoid the character colliding with whatever follows. The italic f character typically has a large italic correction value. If the following character is a period or comma, it&textrsquo;s not necessary to insert an italic correction, since those punctuation symbols have a very small height. However, with semicolons or colons, as well as normal letters, it can help. Compare {\it f\/: f\/;} f: f; (in the &tex; output, the &textlsquo;f&textrsquo;s are nicely separated) with f: f;. Despite the name, roman characters can also have an italic correction. Compare pdf\/\TeX{} pdf&tex; (in the &tex; output, there is a small space after the &textlsquo;f&textrsquo;) with pdf&tex;.
\hrulefill\dotfill\/Spaces
\hrulefill \hrulefill The \hrulefill fill command produces a &textldquo;rubber length&textrdquo; which can stretch or shrink horizontally. It will be filled with a horizontal rule.
\dotfill\addvspace\hrulefillSpaces
\dotfill \dotfill The \dotfill command produces a &textldquo;rubber length&textrdquo; that fills with dots instead of just white space.
\addvspace\bigskip \medskip \smallskip\dotfillSpaces
\addvspace \addvspace vertical space space, inserting vertical \addvspace{length} The \addvspace command normally adds a vertical space of height length. However, if vertical space has already been added to the same point in the output by a previous \addvspace command, then this command will not add more space than needed to make the natural length of the total vertical space equal to length.
\bigskip \medskip \smallskip\vfill\addvspaceSpaces
\bigskip \medskip \smallskip These commands produce a given amount of space. \bigskip \bigskip \bigskipamount The same as \vspace{bigskipamount}, ordinarily about one line space (with stretch and shrink). \medskip \medskip \medskipamount The same as \vspace{medskipamount}, ordinarily about half of a line space (with stretch and shrink). \smallskip \smallskip \smallskipamount The same as \vspace{smallskipamount}, ordinarily about a quarter of a line space (with stretch and shrink).
The \...amount parameters are determined by the document class.
\vfill\vspace\bigskip \medskip \smallskipSpaces
\vfill \vfill The \vfill fill command produces a rubber length (glue) which can stretch or shrink vertically as far as needed. It&textrsquo;s equivalent to \vspace{\fill} (\hfill).
\vspace\vfillSpaces
\vspace[*]{length} \vspace Synopsis:
\vspace[*]{length}
The \vspace command adds the vertical space length, i.e., a rubber length. length can be negative or positive. Ordinarily, &latex; removes vertical space added by \vspace at the top or bottom of a page. With the optional * argument, the space is not removed.
BoxesSpecial insertionsSpacesTop Boxes boxes All the predefined length parameters (Predefined lengths) can be used in the arguments of the box-making commands. \mbox
Horizontal boxes.
\fbox and \framebox
Put a frame around a box.
lrbox
An environment like \sbox.
\makebox
Box, adjustable position.
\parbox
Box with text in paragraph mode.
\raisebox
Raise or lower text.
\savebox
Like \makebox, but save the text for later use.
\sbox
Like \mbox, but save the text for later use.
\usebox
Print saved text.
\mbox\fbox and \frameboxBoxes
\mbox{text} \mbox hyphenation, preventing The \mbox command creates a box just wide enough to hold the text created by its argument. The text is not broken into lines, so it can be used to prevent hyphenation.
\fbox and \frameboxlrbox\mboxBoxes
\fbox and \framebox \fbox \framebox Synopses:
\fbox{text}
\framebox[width][position]{text}
The \fbox and \framebox commands are like \mbox, except that they put a frame around the outside of the box being created. In addition, the \framebox command allows for explicit specification of the box width with the optional width argument (a dimension), and positioning with the optional position argument. \fboxrule \fboxsep Both commands produce a rule of thickness \fboxrule (default .4pt), and leave a space of \fboxsep (default 3pt) between the rule and the contents of the box. \framebox (picture), for the \framebox command in the picture environment.
lrbox\makebox\fbox and \frameboxBoxes
lrbox lrbox \begin{lrbox}{cmd} text \end{lrbox} This is the environment form of \sbox. The text inside the environment is saved in the box cmd, which must have been declared with \newsavebox.
\makebox\parboxlrboxBoxes
\makebox \makebox Synopsis:
\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, which may take the following values: c Centered (default). l Flush left. r Flush right. s Stretch (justify) across entire width; text must contain stretchable space for this to work.
\makebox is also used within the picture environment \makebox (picture).
\parbox\raisebox\makeboxBoxes
\parbox \parbox Synopsis:
\parbox[position][height][inner-pos]{width}{text}
The \parbox command produces a box whose contents are created in paragraph mode. It should be used to make a box small pieces of text, with nothing fancy inside. In particular, you shouldn&textrsquo;t use any 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 (minipage). \parbox has two mandatory arguments: width the width of the parbox; text the text that goes inside the parbox.
The optional position argument allows you to align either the top or bottom line in the parbox with the baseline of the surrounding text (default is top). The optional height argument overrides the natural height of the box. The inner-pos argument controls the placement of the text inside the box, as follows; if it is not specified, position is used. t text is placed at the top of the box. c text is centered in the box. b text is placed at the bottom of the box. s stretch vertically; the text must contain vertically stretchable space for this to work.
\raisebox\savebox\parboxBoxes
\raisebox \raisebox Synopsis:
\raisebox{distance}[height][depth]{text}
The \raisebox command raises or lowers text. The first mandatory argument specifies how high text is to be raised (or lowered if it is a negative amount). text itself is processed in LR mode. The optional arguments height and depth are dimensions. If they are specified, &latex; treats text as extending a certain distance above the baseline (height) or below (depth), ignoring its natural height and depth.
\savebox\sbox\raiseboxBoxes
\savebox \savebox Synopsis:
\savebox{\boxcmd}[width][pos]{text}
This command typeset text in a box just as with \makebox (\makebox), except that instead of printing the resulting box, it saves it in the box labeled \boxcmd, which must have been declared with \newsavebox (\newsavebox).
\sbox\usebox\saveboxBoxes
\sbox{\boxcmd}{text} \sbox Synopsis:
\sbox{\boxcmd}{text}
\sbox types text in a box just as with \mbox (\mbox) except that instead of the resulting box being included in the normal output, it is saved in the box labeled \boxcmd. \boxcmd must have been previously declared with \newsavebox (\newsavebox).
\usebox\sboxBoxes
\usebox{\boxcmd \usebox Synopsis:
\usebox{\boxcmd}
\usebox producesthe box most recently saved in the bin \boxcmd by a \savebox command (\savebox).
Special insertionsSplitting the inputBoxesTop Special insertions &latex; provides commands for inserting characters that have a special meaning do not correspond to simple characters you can type. Reserved characters
Inserting # $ % & ~ _ ^ \ { }
Text symbols
Inserting other non-letter symbols in text.
Accents
Inserting accents.
Non-English characters
Inserting other non-English characters.
\rule
Inserting lines and rectangles.
\today
Inserting today&textrsquo;s date.
Reserved charactersText symbolsSpecial insertions
Reserved characters reserved characters characters, reserved The following characters play a special role in &latex; and are called &textldquo;reserved characters&textrdquo; or &textldquo;special characters&textrdquo;.
# $ % & ~ _ ^ \ { }
\# \$ \% \& \_ \{ \} Whenever you write one of these characters into your file, &latex; will do something special. If you simply want the character to be printed as itself, include a \ in front of the character. For example, \$ will produce $ in your output. \backslash One exception to this rule is \ itself, because \\ has its own special (context-dependent) meaning. A roman \ is produced by typing $\backslash$ in your file, and a typewriter \ is produced by using \ in a verbatim command (verbatim). \~ \^ Also, \~ and \^ place tilde and circumflex accents over the following letter, as in o and o (Accents); to get a standalone ~ or ^, you can again use a verbatim command. \symbol accessing any character of a font Finally, you can access any character of the current font once you know its number by using the \symbol command. For example, the visible space character used 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}.
Text symbolsAccentsReserved charactersSpecial insertions
Text symbols text symbols textcomp package &latex; provides commands to generate a number of non-letter symbols in running text. Some of these, especially the more obscure ones, are not available in OT1; you may need to load the textcomp package. \copyright\copyright \textcopyright\textcopyright copyright symbol The copyright symbol, ©right;. \dag\dag dagger, in text The dagger symbol (in text). \ddag\ddag double dagger, in text The double dagger symbol (in text). \LaTeX\LaTeX &latex; logo logo, &latex; The &latex; logo. \guillemotleft («)\guillemotleft («) \guillemotright (»)\guillemotright (») \guilsinglleft (‹)\guilsinglleft (‹) \guilsinglright (›)\guilsinglright (›) double guillemets single guillemets left angle quotation marks right angle quotation marks double angle quotation marks single angle quotation marks French quotation marks quotation marks, French Double and single angle quotation marks, commonly used in French: «, », ‹, ›. \ldots\ldots \dots\dots \textellipsis\textellipsis ellipsis An ellipsis (three dots at the baseline): &textlsquo;&dots;&textrsquo;. \ldots and \dots also work in math mode. \lq\lq left quote opening quote Left (opening) quote: &textlsquo;. \P\P \textparagraph\textparagraph paragraph symbol pilcrow Paragraph sign (pilcrow). \pounds\pounds \textsterling\textsterling pounds symbol sterling symbol English pounds sterling: £. \quotedblbase („)\quotedblbase („) \quotesinglbase (‚)\quotesinglbase (‚) double low-9 quotation mark single low-9 quotation mark low-9 quotation marks, single and double Double and single quotation marks on the baseline: „ and ‚. \rq\rq right quote closing quote Right (closing) quote: &textrsquo;. \S\S section symbol Section symbol. \TeX\TeX &tex; logo logo, &tex; The &tex; logo. \textasciicircum\textasciicircum circumflex, ASCII, in text ASCII circumflex, in text ASCII circumflex: ^. \textasciitilde\textasciitilde tilde, ASCII, in text ASCII tilde, in text ASCII tilde: ~. \textasteriskcentered\textasteriskcentered asterisk, centered, in text centered asterisk, in text Centered asterisk: *. \textbackslash\textbackslash backslash, in text Backslash: \. \textbar\textbar vertical bar, in text bar, vertical, in text Vertical bar: |. \textbardbl\textbardbl vertical bar, double, in text bar, double vertical, in text double vertical bar, in text Double vertical bar. \textbigcircle\textbigcircle big circle symbols, in text circle symbol, big, in text Big circle symbol. \textbraceleft\textbraceleft left brace, in text brace, left, in text Left brace: {. \textbraceright\textbraceright right brace, in text brace, right, in text Right brace: }. \textbullet\textbullet bullet, in text Bullet: •. \textcircled{letter}\textcircled{letter} circled letter, in text letter in a circle, as in ®istered;. \textcompwordmark\textcompwordmark \textcapitalwordmark\textcapitalwordmark \textascenderwordmark\textascenderwordmark composite word mark, in text cap height ascender height Composite word mark (invisible). The \textcapital... form has the cap height of the font, while the \textascender... form has the ascender height. \textdagger\textdagger dagger, in text Dagger: \dag. \textdaggerdbl\textdaggerdbl dagger, double, in text double dagger, in text Double dagger: \ddag. \textdollar (or $)\textdollar (or $) dollar sign currency, dollar Dollar sign: $. \textemdash (or ---)\textemdash (or ---) em-dash Em-dash: &textmdash; (for punctuation). \textendash (or --)\textendash (or --) e-dash En-dash: &textmdash; (for ranges). \texteuro\texteuro euro symbol currency, euro The Euro symbol: €. \textexclamdown (or !`)\textexclamdown (or !`) exclamation point, upside-down Upside down exclamation point: ¡. \textgreater\textgreater greater than symbol, in text Greater than: >. \textless\textless less than symbol, in text Less than: <. \textleftarrow\textleftarrow arrow, left, in text left arrow, in text Left arrow. \textordfeminine\textordfeminine \textordmasculine\textordmasculine feminine ordinal symbol masculine ordinal symbol ordinals, feminine and masculine Spanish ordinals, feminine and masculine Feminine and masculine ordinal symbols: ª, º. \textperiodcentered\textperiodcentered period, centered, in text centered period, in text Centered period: \cdot. \textquestiondown (or ?`)\textquestiondown (or ?`) questionation point, upside-down Upside down questionation point: ¿. \textquotedblleft (or ``)\textquotedblleft (or ``) left quote, double double left quote Double left quote: &textldquo;. \textquotedblright (or ')\textquotedblright (or ') right quote, double double right quote Double right quote: &textrdquo;. \textquoteleft (or `)\textquoteleft (or `) left quote, single single left quote Single left quote: &textlsquo;. \textquoteright (or ')\textquoteright (or ') right quote, single single right quote Single right quote: &textrsquo;. \textquotestraightbase\textquotestraightbase \textquotestraightdblbase\textquotestraightdblbase quote, straight base straight quote, base double quote, straight base straight double quote, base Single and double straight quotes on the baseline. \textregistered\textregistered registered symbol Registered symbol: ®istered;. \textrightarrow\textrightarrow arrow, right, in text right arrow, in text Right arrow. \textthreequartersemdash\textthreequartersemdash three-quarters em-dash em-dash, three-quarters &textldquo;Three-quarters&textrdquo; em-dash, between en-dash and em-dash. \texttrademark\texttrademark trademark symbol Trademark symbol: ^{\hbox{TM}}. \texttwelveudash\texttwelveudash two-thirds em-dash em-dash, two-thirds &textldquo;Two-thirds&textrdquo; em-dash, between en-dash and em-dash. \textunderscore\textunderscore underscore, in text Underscore: _. \textvisiblespace\textvisiblespace visible space symbol, in text Visible space symbol.
AccentsNon-English charactersText symbolsSpecial insertions
Accents accents characters, accented letters, accented &latex; has wide support for many of the world&textrsquo;s scripts and languages, through the babel package and related support. This section does not attempt to cover all that support. It merely lists the core &latex; commands for creating accented characters. The \capital... commands produce alternative forms for use with capital letters. These are not available with OT1. \" \capitaldieresis \" (umlaut accent) \capitaldieresis umlaut accent dieresis accent Produces an umlaut (dieresis), as in o. \' \capitalacute \&textrsquo; (acute accent) \capitalacute acute accent Produces an acute accent, as in o. In the tabbing environment, pushes current column to the right of the previous column (tabbing). \. \. (dot-over accent) dot accent dot-over accent Produces a dot accent over the following, as in o. \= \capitalmacron \= (macron accent) \capitalmacron macron accent overbar accent bar-over accent Produces a macron (overbar) accent over the following, as in o. \^ \capitalcircumflex \^ (circumflex accent) \capitalcircumflex circumflex accent hat accent Produces a circumflex (hat) accent over the following, as in o. \` \capitalgrave \&textlsquo; (grave accent) \capitalgrave grave accent Produces a grave accent over the following, as in o. In the tabbing environment, move following text to the right margin (tabbing). \~ \capitaltilde \~ (tilde accent) \capitaltilde tilde accent Produces a tilde accent over the following, as in n. \b \b (bar-under accent) bar-under accent Produces a bar accent under the following, as in o. \c \capitalcedilla \c (cedilla accent) \capitalcedilla cedilla accent Produces a cedilla accent under the following, as in c. \d \capitaldotaccent \d (dot-under accent) \capitaldotaccent dot-under accent Produces a dot accent under the following, as in o. \H \capitalhungarumlaut \H (Hungarian umlaut accent) \capitalhungarumlaut hungarian umlaut accent Produces a long Hungarian umlaut accent over the following, as in o. \i \i (dotless i) dotless i Produces a dotless i, as in &textlsquo;i&textrsquo;. \j \j (dotless j) dotless j Produces a dotless j, as in &textlsquo;j&textrsquo;. \k \capitalogonek \k (ogonek) \capitalogonek ogonek Produces a letter with ogonek, as in &textlsquo;o&textrsquo;. Not available in the OT1 encoding. \r \capitalring \r (ring accent) \capitalring ring accent Produces a ring accent, as in &textlsquo;o&textrsquo;. \t \capitaltie \newtie \capitalnewtie \t (tie-after accent) \capitaltie \newtie \capitalnewtie tie-after accent Produces a tie-after accent, as in &textlsquo;oo&textrsquo;. The \newtie form is centered in its box. \u \capitalbreve \u (breve accent) \capitalbreve breve accent Produces a breve accent, as in &textlsquo;o&textrsquo;. \underbar \underbar underbar Not exactly an accent, this produces a bar under the argument text. The argument is always processed in horizontal mode. The bar is always a fixed position under the baseline, thus crossing through descenders. See also \underline in Math miscellany. \v \capitalcaron \v (breve accent) \capitalcaron hacek accent check accent caron accent Produces a hacek (check, caron) accent, as in &textlsquo;o&textrsquo;.
Non-English characters\ruleAccentsSpecial insertions
Non-English characters special characters non-English characters characters, non-English letters, non-English Here are the basic &latex; commands for inserting characters commonly used in languages other than English. \aa \AA \aa (å) \AA (Å) aring å and Å. \ae \AE \ae (æ) \AE (Æ) ae ligature æ and Æ. \dh \DH \dh (æ) \DH (Æ) Icelandic eth eth, Icelandic letter Icelandic letter eth: ð and Ð. \dj \DJ \dj \DJ xxxx \ij \IJ \ij (ij) \IJ (IJ) ij letter, Dutch ij and IJ (except somewhat closer together than appears here). \l \L \l (&lslash;) \L (&Lslash;) polish l &lslash; and &Lslash;. \ng \NG \ng \NG xxxx \o \O \o (ø) \O (Ø) oslash ø and Ø. \oe \OE \oe (œ) \OE (Œ) oe ligature œ and Œ. \ss \SS \ss (ß) \SS (SS) es-zet German letter sharp S letters ß and SS. \th \TH \th (þ) \TH (Þ) Icelandic thorn thorn, Icelandic letter Icelandic letter thorn: þ and Þ.
\rule\todayNon-English charactersSpecial insertions
\rule \rule Synopsis:
\rule[raise]{width}{thickness}
The \rule command produces rules, that is, lines or rectangles. The arguments are: raise How high to raise the rule (optional). width The length of the rule (mandatory). thickness The thickness of the rule (mandatory).
\today\ruleSpecial insertions
\today \today The \today command produces today&textrsquo;s date, in the format month dd, yyyy; for example, &textlsquo;July 4, 1976&textrsquo;. It uses the predefined counters \day, \month, and \year (\day \month \year) to do this. It is not updated as the program runs. datetime package The datetime package, among others, can produce a wide variety of other date formats.
Splitting the inputFront/back matterSpecial insertionsTop Splitting the input splitting the input file input file A large document requires a lot of input. Rather than putting the whole input in a single large file, it&textrsquo;s more efficient to split it into several smaller ones. Regardless of how many separate files you use, there is one that is the root file; it is the one whose name you type when you run &latex;. \include
Conditionally include a file.
\includeonly
Determine which files are included.
\input
Unconditionally include a file.
\include\includeonlySplitting the input
\include \include Synopsis:
\include{file}
If no \includeonly command is present, the \include command executes \clearpage to start a new page (\clearpage), then reads file, then does another \clearpage. Given an \includeonly command, the \include actions are only run if file is listed as an argument to \includeonly. See the next section. nested \include, not allowed The \include command may not appear in the preamble or in a file read by another \include command.
\includeonly\input\includeSplitting the input
\includeonly \includeonly Synopsis:
\includeonly{file1,file2,...}
The \includeonly command controls which files will be read by subsequent \include commands. The list of filenames is comma-separated. Each file must exactly match a filename specified in a \include command for the selection to be effective. This command can only appear in the preamble.
\input\includeonlySplitting the input
\input \input Synopsis:
\input{file}
The \input command causes the specified file to be read and processed, as if its contents had been inserted in the current file at that point. If file does not end in .tex (e.g., foo or foo.bar), it is first tried with that extension (foo.tex or foo.bar.tex). If that is not found, the original file is tried (foo or foo.bar).
Front/back matterLettersSplitting the inputTop Front/back matter Tables of contents
Glossaries
Indexes
Tables of contentsGlossariesFront/back matter
Tables of contents table of contents, creating \tableofcontents .toc file 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. A previous run must have generated a .toc file. The \tableofcontents command produces a heading, but it does not automatically start a new page. If you want a new page after the table of contents, write a \newpage command after the \tableofcontents command. \listoffigures \listoftables The analogous commands \listoffigures and \listoftables produce a list of figures and a list of tables, respectively. Everything works exactly the same as for the table of contents. \nofiles The command \nofiles overrides these commands, and prevents any of these lists from being generated. \addcontentsline
Add an entry to table of contents etc.
\addtocontents
Add text directly to table of contents file etc.
\addcontentsline\addtocontentsTables of contents \addcontentsline \addcontentsline{ext}{unit}{text} table of contents entry, manually adding The \addcontentsline{ext}{unit}{text} command adds an entry to the specified list or table where: ext The extension of the file on which information is to be written, typically one of: toc (table of contents), lof (list of figures), or lot (list of tables). unit The name of the sectional unit being added, typically one of the following, matching the value of the ext argument:
toc The name of the sectional unit: part, chapter, section, subsection, subsubsection. lof For the list of figures. lot For the list of tables.
entry The actual text of the entry. \contentsline What is written to the .ext file is the command \contentsline{unit}{name}.
\addtocontents\addcontentslineTables of contents \addtocontents \addtocontents{ext}{text} The \addtocontents{ext}{text} command adds text (or formatting commands) directly to the .ext file that generates the table of contents or lists of figures or tables. ext The extension of the file on which information is to be written: toc (table of contents), lof (list of figures), or lot (list of tables). text The text to be written.
GlossariesIndexesTables of contentsFront/back matter
Glossaries glossaries \makeglossary The command \makeglossary enables creating glossaries. \glossary .glo file The command \glossary{text} writes a glossary entry for text to an auxiliary file with the .glo extension. \glossaryentry Specifically, what gets written is the command \glossaryentry{text}{pageno}, where pageno is the current \thepage value. The glossary package on CTAN provides support for fancier glossaries.
IndexesGlossariesFront/back matter
Indexes indexes \makeindex The command \makeindex enables creating indexes. Put this in the preamble. \index .idx file The command \index{text} writes an index entry for text to an auxiliary file with the .idx extension. \indexentry Specifically, what gets written is the command \indexentry{text}{pageno}, where pageno is the current \thepage value. &textlsquo;see&textrsquo; and &textlsquo;see also&textrsquo; index entries To generate a index entry for &textlsquo;bar&textrsquo; that says &textlsquo;See foo&textrsquo;, use a vertical bar: \index{bar|see{foo}}. Use seealso instead of see to make a &textlsquo;See also&textrsquo; entry. \seename \alsoname The text &textlsquo;See&textrsquo; is defined by the macro \seename, and &textlsquo;See also&textrsquo; by the macro \alsoname. These can be redefined for other languages. makeindex program xindy program .ind file The generated .idx file is then sorted with an external command, usually either makeindex (http://mirror.ctan.org/indexing/makeindex) or (the multi-lingual) xindy (http://xindy.sourceforge.net). This results in a .ind file, which can then be read to typeset the index. printindex makeidx package The index is usually generated with the \printindex command. This is defined in the makeidx package, so \usepackage{makeidx} needs to be in the preamble. indexspace The rubber length \indexspace is inserted before each new letter in the printed index; its default value is 10pt plus5pt minus3pt. showidx package The showidx package causes each index entries to be shown in the margin on the page where the entry appears. This can help in preparing the index. multind package The multind package supports multiple indexes. See also the &tex; FAQ entry on this topic, http://www.tex.ac.uk/cgi-bin/texfaq2html?label=multind.
LettersTerminal input/outputFront/back matterTop Letters letters creating 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. \\ for letters After the closing, you can have additional material. The \cc command produces the usual &textldquo;cc: &dots;&textrdquo;. There&textrsquo;s also a similar \encl command for a list of enclosures. With both these commands, use \\ to separate the items. These commands are used with the letter class. \address
Your return address.
\cc
Cc list.
\closing
Saying goodbye.
\encl
List of enclosed material.
\location
Your organisation&textrsquo;s address.
\makelabels
Making address labels.
\name
Your name, for the return address.
\opening
Saying hello.
\ps
Adding a postscript.
\signature
Your signature.
\startbreaks
Allow page breaks.
\stopbreaks
Disallow page breaks.
\telephone
Your phone number.
\address\ccLetters
\address{return-address} \address The \address specifies the return address of a letter, 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 organisation&textrsquo;s standard letterhead. (Overview, for details on your local implementation). If you give an \address declaration, then the letter will be formatted as a personal letter.
\cc\closing\addressLetters
\cc \cc cc list, in letters Synopsis:
\cc{name1\\name2}
Produce a list of names the letter was copied to. Each name is printed on a separate line.
\closing\encl\ccLetters
\closing \closing letters, ending closing letters Synopsis:
\closing{text}
A letter closes with a \closing command, for example,
\closing{Best Regards,}
\encl\location\closingLetters
\encl \encl enclosure list Synopsis:
\encl{line1\\line2}
Declare a list of one more enclosures.
\location\makelabels\enclLetters
\location \location \location{address} This modifies your organisation&textrsquo;s standard address. This only appears if the firstpage pagestyle is selected.
\makelabels\name\locationLetters
\makelabels \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\opening\makelabelsLetters
\name \name \name{June Davenport} Your name, used for printing on the envelope together with the return address.
\opening\ps\nameLetters
\opening{text} \opening letters, starting Synopsis:
\opening{text}
A letter begins with the \opening command. The mandatory argument, text, is whatever text you wish to start your letter. For instance:
\opening{Dear Joe,}
\ps\signature\openingLetters
\ps \ps postscript, in letters Use the \ps command to start a postscript in a letter, after \closing.
\signature\startbreaks\psLetters
\signature{text} \signature Your name, as it should appear at the end of the letter underneath the space for your signature. \\ starts a new line within text as usual.
\startbreaks\stopbreaks\signatureLetters
\startbreaks \startbreaks \startbreaks Used after a \stopbreaks command to allow page breaks again.
\stopbreaks\telephone\startbreaksLetters
\stopbreaks \stopbreaks \stopbreaks Inhibit page breaks until a \startbreaks command occurs.
\telephone\stopbreaksLetters
\telephone \telephone \telephone{number} This is your telephone number. This only appears if the firstpage pagestyle is selected.
Terminal input/outputCommand lineLettersTop Terminal input/output input/output terminal input/output \typein
Read text from the terminal.
\typeout
Write text to the terminal.
\typein\typeoutTerminal input/output
\typein[cmd]{msg} \typein Synopsis:
\typein[\cmd]{msg}
\typein 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 optional \cmd argument is omitted, 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\typeinTerminal input/output
\typeout{msg} \typeout Synopsis:
\typeout{msg}
Prints msg on the terminal and in the log file. Commands in msg that are defined with \newcommand or \renewcommand (among others) are replaced by their definitions before being printed. &latex;&textrsquo;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, independent of surrounding spaces. A ^^J in msg prints a newline.
Command lineDocument templatesTerminal input/outputTop Command line command line The input file specification indicates the file to be formatted; &tex; uses .tex as a default file extension. If you omit the input file entirely, &tex; accepts input from the terminal. You specify command options by supplying a string as a parameter to the command; e.g.
latex '\nonstopmode\input foo.tex'
will process foo.tex without pausing after every error. * prompt prompt, * \stop If &latex; stops in the middle of the document and gives you a * prompt, it is waiting for input. You can type \stop (and return) and it will prematurely end the document.
Document templatesConcept IndexCommand lineTop Document templates document templates Although not reference material, perhaps these document templates will be useful. Additional template resources are listed http://tug.org/interest.html#latextemplates. book template
beamer template
tugboat template
book templatebeamer templateDocument templates
book template \documentclass{book} \title{Book Class Template} \author{Alex Author} \begin{document} \maketitle \chapter{First} Some text. \chapter{Second} Some other text. \section{A subtopic} The end. \end{document}
beamer templatetugboat templatebook templateDocument templates
beamer template The beamer class creates slides presentations. \documentclass{beamer} \title{Beamer Class template} \author{Alex Author} \date{July 31, 2007} \begin{document} \maketitle % without [fragile], any {verbatim} code gets mysterious errors. \begin{frame}[fragile] \frametitle{First Slide} \begin{verbatim} This is \verbatim! \end{verbatim} \end{frame} \end{document} One web resource for this: http://robjhyndman.com/hyndsight/beamer/.
tugboat templatebeamer templateDocument templates
tugboat template TUGboat is the journal of the &tex; Users Group, http://tug.org/TUGboat. \documentclass{ltugboat} \usepackage{graphicx} \usepackage{ifpdf} \ifpdf \usepackage[breaklinks,colorlinks,linkcolor=black,citecolor=black, urlcolor=black]{hyperref} \else \usepackage{url} \fi \title{Example \TUB\ article} % repeat info for each author. \author{First Last} \address{Street Address \\ Town, Postal \\ Country} \netaddress{user (at) example dot org} \personalURL{http://example.org/~user/} \begin{document} \maketitle \begin{abstract} This is an example article for \TUB{}. \end{abstract} \section{Introduction} This is an example article for \TUB, from \url{http://tug.org/TUGboat/location.html}. We recommend the graphicx package for image inclusions, and the hyperref package for active url's (in the \acro{PDF} output). Nowadays \TUB\ is produced using \acro{PDF} files exclusively. The \texttt{ltugboat} class provides these abbreviations and many more: % verbatim blocks are often better in \small \begin{verbatim}[\small] \AllTeX \AMS \AmS \AmSLaTeX \AmSTeX \aw \AW \BibTeX \CTAN \DTD \HTML \ISBN \ISSN \LaTeXe \Mc \mf \MFB \mtex \PCTeX \pcTeX \PiC \PiCTeX \plain \POBox \PS \SC \SGML \SliTeX \TANGLE \TB \TP \TUB \TUG \tug \UG \UNIX \VAX \XeT \WEB \WEAVE \Dash \dash \vellipsis \bull \cents \Dag \careof \thinskip \acro{FRED} -> {\small[er] fred} % please use! \cs{fred} -> \fred \env{fred} -> \begin{fred} \meta{fred} -> <fred> \nth{n} -> 1st, 2nd, ... \sfrac{3/4} -> 3/4 \booktitle{Book of Fred} \end{verbatim} For more information, see the ltubguid document at: \url{http://mirror.ctan.org/macros/latex/contrib/tugboat} (we recommend using \verb|mirror.ctan.org| for \CTAN\ references). Email \verb|tugboat@tug.org| if problems or questions. \bibliographystyle{plain} % we recommend the plain bibliography style \nocite{book-minimal} % just making the bibliography non-empty \bibliography{xampl} % xampl.bib comes with BibTeX \makesignature \end{document}
Concept IndexCommand IndexDocument templatesTop Concept Index Command IndexConcept IndexTop Command Index