home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / texed133.zip / LaTeX2e.inf (.txt) < prev    next >
OS/2 Help File  |  1996-07-31  |  89KB  |  2,744 lines

  1.  
  2. ΓòÉΓòÉΓòÉ 1. Title page ΓòÉΓòÉΓòÉ
  3.  
  4.                               The macro package for
  5.  
  6.                                        by
  7.  
  8.                               Leslie Lamport et al.
  9.  
  10.                                    Edition 1.6
  11.  
  12.                                   December 1994
  13.  
  14. This is edition 1.6 of the LaTeX2e documentation, and is for the Texinfo that 
  15. is distributed as part of Version 19 of GNU Emacs. It uses version 2.134 or 
  16. later of the texinfo.tex input file. 
  17.  
  18. This is translated from LATEX.HLP v1.0a in the VMS Help Library. This 
  19. pre-translation version was written by George D. Greenwade of Sam Houston State 
  20. University. It has been edited to this form by Paul Nothard of Edinburgh 
  21. University. 
  22.  
  23. The original (latex.texi and latex2.texi) was distributed by Stephen Gilmore 
  24. <stg@dcs.ed.ac.uk>, August 26th 1993. 
  25.  
  26. Version 1.1 was made by Piet van Oostrum <piet@cs.ruu.nl> on Dec 14, 1993 by 
  27. merging and cleaning up latex.texi and latex2.texi. 
  28.  
  29. Versions 1.2 trough 1.6 by Torsten Martinsen <bullestock@dk-online.dk>. 
  30.  
  31. This Texinfo file may be copied and distributed in accordance with the usual 
  32. copying permissions of the Free Software Foundation.  These permissions are 
  33. given in the General Public License section of the ``GNU Emacs Manual''.  This 
  34. software comes with NO WARRANTY. 
  35.  
  36. Permission is granted to make and distribute verbatim copies of this manual 
  37. provided the copyright notice and this permission notice are preserved on all 
  38. copies. 
  39.  
  40. Permission is granted to copy and distribute modified versions of this manual 
  41. under the conditions for verbatim copying, provided that the entire resulting 
  42. derived work is distributed under the terms of a permission notice identical to 
  43. this one. 
  44.  
  45.  
  46. ΓòÉΓòÉΓòÉ 2. Top ΓòÉΓòÉΓòÉ
  47.  
  48. LaTeX2e is a document preparation system implemented as a macro package for 
  49. Donald E. Knuth's TeX typesetting program. 
  50.  
  51. LaTeX was originally conceived by Leslie Lamport. 
  52.  
  53. This is edition 1.6 of the LaTeX2e documentation. 
  54.  
  55.  
  56. ΓòÉΓòÉΓòÉ 3. Overview of LaTeX and Local Guide ΓòÉΓòÉΓòÉ
  57.  
  58. The LaTeX command typesets a file of text using the TeX program and the LaTeX 
  59. Macro package for TeX.  To be more specific, it processes an input file 
  60. containing the text of a document with interspersed commands that describe how 
  61. the text should be formatted.  It produces at least three files as output: 
  62.  
  63.    1. A ``Device Independent'', or `.dvi' file. This contains commands that can 
  64.       be translated into commands for a variety of output devices.  You can 
  65.       view the output of LaTeX by using a program such as xdvi, which actually 
  66.       uses the `.dvi' file. 
  67.  
  68.    2. A ``transcript'' or `.log' file that contains summary information and 
  69.       diagnostic messages for any errors discovered in the input file. 
  70.  
  71.    3. An ``auxiliary'' or `.aux' file. This is used by LaTeX itself, for things 
  72.       such as sectioning. 
  73.  
  74.  For a description of what goes on inside TeX, you should consult The TeXbook 
  75.  by Donald E. Knuth, ISBN 0-201-13448-9, published jointly by the American 
  76.  Mathematical Society and Addison-Wesley Publishing Company. 
  77.  
  78.  For a description of LaTeX, you should consult: 
  79.  
  80.  LaTeX: A Document Preparation System, by Leslie Lamport, Addison-Wesley 
  81.  Publishing Company, 2nd edition, 1994. 
  82.  
  83.  The LaTeX Companion, by Michel Goossens, Frank Mittelbach, and Alexander 
  84.  Samarin, Addison-Wesley, 1994. 
  85.  
  86.  
  87. ΓòÉΓòÉΓòÉ 4. Commands ΓòÉΓòÉΓòÉ
  88.  
  89. A LaTeX command begins with the command name, which consists of a \ followed by 
  90. either (a) a string of letters or (b) a single non-letter.  Arguments contained 
  91. in square brackets, [], are optional while arguments contained in braces, {}, 
  92. are required. 
  93.  
  94. NOTE:  LaTeX  is case sensitive.  Enter  all commands  in lower  case unless 
  95. explicitly directed to do otherwise. 
  96.  
  97.  
  98. ΓòÉΓòÉΓòÉ 4.1. Counters ΓòÉΓòÉΓòÉ
  99.  
  100. Everything LaTeX numbers for you has a counter associated with it. The name of 
  101. the counter is the same as the name of the environment or command that produces 
  102. the number, except with no \.  (enumi - enumiv are used for the nested 
  103. enumerate environment.)  Below is a list of the counters used in LaTeX's 
  104. standard document classes to control numbering. 
  105.  
  106.  part            paragraph       figure          enumi
  107.  chapter         subparagraph    table           enumii
  108.  section         page            footnote        enumiii
  109.  subsection      equation        mpfootnote      enumiv
  110.  subsubsection
  111.  
  112.  
  113. ΓòÉΓòÉΓòÉ 4.1.1. \addtocounter ΓòÉΓòÉΓòÉ
  114.  
  115. \addtocounter{counter}{value} 
  116.  
  117. The \addtocounter command increments the counter by the amount specified by the 
  118. value argument.  The value argument can be negative. 
  119.  
  120.  
  121. ΓòÉΓòÉΓòÉ 4.1.2. \alph ΓòÉΓòÉΓòÉ
  122.  
  123. \alph{counter} 
  124.  
  125. This command causes the value of the counter to be printed in alphabetic 
  126. characters.  The \alph command uses lower case alphabetic alphabetic 
  127. characters, i.e., a, b, c... while the \Alph command uses upper case alphabetic 
  128. characters, i.e., A, B, C.... 
  129.  
  130.  
  131. ΓòÉΓòÉΓòÉ 4.1.3. \arabic ΓòÉΓòÉΓòÉ
  132.  
  133. \arabic{counter} 
  134.  
  135. The \arabic command causes the value of the counter to be printed in Arabic 
  136. numbers, i.e., 3. 
  137.  
  138.  
  139. ΓòÉΓòÉΓòÉ 4.1.4. \fnsymbol ΓòÉΓòÉΓòÉ
  140.  
  141. \fnsymbol{counter} 
  142.  
  143. The \fnsymbol command causes the value of the counter to be printed in a 
  144. specific sequence of nine symbols that can be used for numbering footnotes. 
  145.  
  146. NB. counter must have a value between 1 and 9 inclusive. 
  147.  
  148.  
  149. ΓòÉΓòÉΓòÉ 4.1.5. \newcounter ΓòÉΓòÉΓòÉ
  150.  
  151. \newcounter{foo}[counter] 
  152.  
  153. The \newcounter command defines a new counter named foo. The counter is 
  154. initialized to zero. 
  155.  
  156. The optional argument [counter] causes the counter foo to be reset whenever the 
  157. counter named in the optional argument is incremented. 
  158.  
  159.  
  160. ΓòÉΓòÉΓòÉ 4.1.6. \refstepcounter ΓòÉΓòÉΓòÉ
  161.  
  162. \refstepcounter{counter} 
  163.  
  164. The \refstepcounter command works like  \stepcounter See \stepcounter, except 
  165. it also defines the current \ref value to be the result of \thecounter. 
  166.  
  167.  
  168. ΓòÉΓòÉΓòÉ 4.1.7. \roman ΓòÉΓòÉΓòÉ
  169.  
  170. \roman{counter} 
  171.  
  172. This command causes the value of the counter to be printed in Roman numerals. 
  173. The \roman command uses lower case Roman numerals, i.e., i, ii, iii..., while 
  174. the \Roman command uses upper case Roman numerals, i.e., I, II, III.... 
  175.  
  176.  
  177. ΓòÉΓòÉΓòÉ 4.1.8. \stepcounter ΓòÉΓòÉΓòÉ
  178.  
  179. \stepcounter{counter} 
  180.  
  181. The \stepcounter command adds one to the counter and resets all subsidiary 
  182. counters. 
  183.  
  184.  
  185. ΓòÉΓòÉΓòÉ 4.1.9. \setcounter ΓòÉΓòÉΓòÉ
  186.  
  187. \setcounter{counter}{value} 
  188.  
  189. The \setcounter command sets the value of the counter to that specified by the 
  190. value argument. 
  191.  
  192.  
  193. ΓòÉΓòÉΓòÉ 4.1.10. \usecounter ΓòÉΓòÉΓòÉ
  194.  
  195. \usecounter{counter} 
  196.  
  197. The \usecounter command is used in the second argument of the list environment 
  198. to allow the counter specified to be used to number the list items. 
  199.  
  200.  
  201. ΓòÉΓòÉΓòÉ 4.1.11. \value ΓòÉΓòÉΓòÉ
  202.  
  203. \value{counter} 
  204.  
  205. The \value command produces the value of the counter named in the mandatory 
  206. argument.  It can be used where LaTeX expects an integer or number, such as the 
  207. second argument of a \setcounter or \addtocounter command, or in: 
  208.  
  209.         \hspace{\value{foo}\parindent}
  210.  
  211. It is useful for doing arithmetic with counters. 
  212.  
  213.  
  214. ΓòÉΓòÉΓòÉ 4.2. Cross References ΓòÉΓòÉΓòÉ
  215.  
  216. One reason for numbering things like figures and equations is to refer the 
  217. reader to them, as in ``See Figure 3 for more details.'' 
  218.  
  219.  
  220. ΓòÉΓòÉΓòÉ 4.2.1. \label ΓòÉΓòÉΓòÉ
  221.  
  222. \label{key} 
  223.  
  224. A \label command appearing in ordinary text assigns to the key the number of 
  225. the current sectional unit; one appearing inside a numbered environment assigns 
  226. that number to the key. 
  227.  
  228. A key can consist of any sequence of letters, digits, or punctuation 
  229. characters.  Upper and lowercase letters are different. 
  230.  
  231. To avoid accidentally creating two labels with the same name, it is common to 
  232. use labels consisting of a prefix and a suffix separated by a colon. The 
  233. prefixes conventionally used are 
  234.  
  235.      cha for chapters 
  236.  
  237.      sec for lower-level sectioning commands 
  238.  
  239.      fig for figures 
  240.  
  241.      tab for tables 
  242.  
  243.      eq for equations 
  244.  
  245.  Thus, a label for a figure would look like fig:bandersnatch. 
  246.  
  247.  
  248. ΓòÉΓòÉΓòÉ 4.2.2. \pageref ΓòÉΓòÉΓòÉ
  249.  
  250. \pageref{key} 
  251.  
  252. The \pageref command produces the page number of the place in the text where 
  253. the corresponding \label command appears. ie. where \label{key} appears. 
  254.  
  255.  
  256. ΓòÉΓòÉΓòÉ 4.2.3. \ref ΓòÉΓòÉΓòÉ
  257.  
  258. \ref{key} 
  259.  
  260. The \ref command produces the number of the sectional unit, equation number, 
  261. ... of the corresponding \label command. 
  262.  
  263.  
  264. ΓòÉΓòÉΓòÉ 4.3. Definitions ΓòÉΓòÉΓòÉ
  265.  
  266.  
  267. ΓòÉΓòÉΓòÉ 4.3.1. \newcommand ΓòÉΓòÉΓòÉ
  268.  
  269.  \newcommand{cmd}[args]{definition}
  270.  \newcommand{cmd}[args][default]{definition}
  271.  \renewcommand{cmd}[args]{definition}
  272.  \renewcommand{cmd}[args][default]{definition}
  273.  
  274. These commands define (or redefine) a command. 
  275.  
  276.  cmd 
  277.            A command name beginning with a \.  For \newcommand it must not be 
  278.            already defined and must not begin with \end; for \renewcommand it 
  279.            must already be defined. 
  280.  
  281.  args 
  282.            An integer from 1 to 9 denoting the number of arguments of the 
  283.            command being defined.  The default is for the command to have no 
  284.            arguments. 
  285.  
  286.  def 
  287.            If this optional parameter is present, it means that the command's 
  288.            first argument is optional. The default value of the optional 
  289.            argument is def. 
  290.  
  291.  definition 
  292.            The text to be substituted for every occurrence of cmd; a parameter 
  293.            of the form #n in cmd is replaced by the text of the nth argument 
  294.            when this substitution takes place. 
  295.  
  296.  
  297. ΓòÉΓòÉΓòÉ 4.3.2. \newenvironment ΓòÉΓòÉΓòÉ
  298.  
  299.  \newenvironment{nam}[args]{begdef}{enddef}
  300.  \newenvironment{nam}[args][default]{begdef}{enddef}
  301.  \renewenvironment{nam}[args]{begdef}{enddef}
  302.  
  303. These commands define or redefine an environment. 
  304.  
  305.  nam 
  306.            The name of the environment.  For \newenvironment there must be no 
  307.            currently defined environment by that name, and the command \nam 
  308.            must be undefined.  For \renewenvironment the environment must 
  309.            already be defined. 
  310.  
  311.  args 
  312.            An integer from 1 to 9 denoting the number of arguments of the 
  313.            newly-defined environment.  The default is no arguments. 
  314.  
  315.  default 
  316.            If this is specified, the first argument is optional, and default 
  317.            gives the default value for that argument. 
  318.  
  319.  begdef 
  320.            The text substituted for every occurrence of \begin{nam}; a 
  321.            parameter of the form #n in cmd is replaced by the text of the nth 
  322.            argument when this substitution takes place. 
  323.  
  324.  enddef 
  325.            The text substituted for every occurrence of \end{nam}.  It may not 
  326.            contain any argument parameters. 
  327.  
  328.  
  329. ΓòÉΓòÉΓòÉ 4.3.3. \newtheorem ΓòÉΓòÉΓòÉ
  330.  
  331.  \newtheorem{env_name}{caption}[within]
  332.  \newtheorem{env_name}[numbered_like]{caption}
  333.  
  334. This command defines a theorem-like environment. 
  335.  
  336.  env_name 
  337.            The name of the environment to be defined. A string of letters.  It 
  338.            must not be the name of an existing environment or counter. 
  339.  
  340.  caption 
  341.            The text printed at the beginning of the environment, right before 
  342.            the number. This may simply say ``Theorem'', for example. 
  343.  
  344.  within 
  345.            The name of an already defined counter, usually of a sectional unit. 
  346.            Provides a means of resetting the new theorem counter *within* the 
  347.            sectional unit. 
  348.  
  349.  numbered_like 
  350.            The name of an already defined theorem-like environment. 
  351.  
  352.  The \newtheorem command may have at most one optional argument. 
  353.  
  354.  
  355. ΓòÉΓòÉΓòÉ 4.3.4. \newfont ΓòÉΓòÉΓòÉ
  356.  
  357. \newfont{cmd}{font_name} 
  358.  
  359. Defines the command name cmd, which must not be currently defined, to be a 
  360. declaration that selects the font named font_name to be the current font. 
  361.  
  362.  
  363. ΓòÉΓòÉΓòÉ 4.4. Document Classes ΓòÉΓòÉΓòÉ
  364.  
  365. Valid LaTeX document classes include: 
  366.  
  367.      article 
  368.  
  369.      report 
  370.  
  371.      letter 
  372.  
  373.      book 
  374.  
  375.      slides 
  376.  
  377.  Other document classes are often available. See Overview, for details. They 
  378.  are selected with the following command: 
  379.  
  380.  \documentclass [options] {class} 
  381.  
  382.  All the standard classes (except slides) accept the following options for 
  383.  selecting the typeface size (10 pt is default): 
  384.  
  385.  10pt, 11pt, 12pt 
  386.  
  387.  All classes accept these options for selecting the paper size (default is 
  388.  letter): 
  389.  
  390.  a4paper, a5paper, b5paper, letterpaper, legalpaper, executivepaper 
  391.  
  392.  Miscellaneous options: 
  393.  
  394.      landscape --- selects landscape format. Default is portrait. 
  395.  
  396.      titlepage, notitlepage --- selects if there should be a separate title 
  397.       page. 
  398.  
  399.      leqno --- equation number on left side of equations. Default is right 
  400.       side. 
  401.  
  402.      fleqn --- displayed formulas flush left. Default is centred. 
  403.  
  404.      openbib --- use ``open'' bibliography format. 
  405.  
  406.      draft, final --- mark/do not mark overfull boxes with a rule. Default is 
  407.       final. 
  408.  
  409.  These options are not available with the slides class: 
  410.  
  411.      oneside, twoside --- selects one- or twosided layout. Default is oneside, 
  412.       except for the book class. 
  413.  
  414.      openright, openany --- determines if a chapter should start on a 
  415.       right-hand page. Default is openright for book. 
  416.  
  417.      onecolumn, twocolumn --- one or two columns. Defaults to one column. 
  418.  
  419.  The slides class offers the option clock for printing the time at the bottom 
  420.  of each note. 
  421.  
  422.  If you specify more than one option, they must be separated by a comma. 
  423.  
  424.  Additional packages are loaded by a 
  425.  
  426.  \usepackage[options]{pkg} 
  427.  
  428.  command. If you specify more than one package, they must be separated by a 
  429.  comma. 
  430.  
  431.  Any options given in the \documentclass command that are unknown by the 
  432.  selected document class are passed on to the packages loaded with \usepackage. 
  433.  
  434.  
  435. ΓòÉΓòÉΓòÉ 4.5. Layout ΓòÉΓòÉΓòÉ
  436.  
  437. Miscellaneous commands for controlling the general layout of the page. 
  438.  
  439.  
  440. ΓòÉΓòÉΓòÉ 4.5.1. \flushbottom ΓòÉΓòÉΓòÉ
  441.  
  442. The \flushbottom declaration makes all text pages the same height, adding extra 
  443. vertical space when necessary to fill out the page. 
  444.  
  445. This is the standard if twocolumn mode is selected. 
  446.  
  447.  
  448. ΓòÉΓòÉΓòÉ 4.5.2. \onecolumn ΓòÉΓòÉΓòÉ
  449.  
  450. The \onecolumn declaration starts a new page and produces single-column output. 
  451.  
  452.  
  453. ΓòÉΓòÉΓòÉ 4.5.3. \raggedbottom ΓòÉΓòÉΓòÉ
  454.  
  455. The \raggedbottom declaration makes all pages the height of the text on that 
  456. page.  No extra vertical space is added. 
  457.  
  458.  
  459. ΓòÉΓòÉΓòÉ 4.5.4. \twocolumn ΓòÉΓòÉΓòÉ
  460.  
  461. \twocolumn[text] 
  462.  
  463. The \twocolumn declaration starts a new page and produces two-column output. If 
  464. the optional text argument is present, it is typeset in one-column mode. 
  465.  
  466.  
  467. ΓòÉΓòÉΓòÉ 4.6. Environments ΓòÉΓòÉΓòÉ
  468.  
  469. LaTeX provides a number of different paragraph-making environments. Each 
  470. environment begins and ends in the same manner. 
  471.  
  472.         \begin{environment-name}
  473.         .
  474.         .
  475.         .
  476.         \end{environment-name}
  477.  
  478.  
  479. ΓòÉΓòÉΓòÉ 4.6.1. array ΓòÉΓòÉΓòÉ
  480.  
  481. \begin{array}{col1col2...coln}
  482. column 1 entry & column 2 entry ... & column n entry \\
  483.  .
  484.  .
  485.  .
  486. \end{array}
  487.  
  488. Math arrays are produced with the array environment.  It has a single mandatory 
  489. argument describing the number of columns and the alignment within them.  Each 
  490. column, coln, is specified by a single letter that tells how items in that row 
  491. should be formatted. 
  492.  
  493.      c --- for centred 
  494.  
  495.      l --- for flush left 
  496.  
  497.      r --- for flush right 
  498.  
  499.  Column entries must be separated by an &.  Column entries may include other 
  500.  LaTeX commands.  Each row of the array must be terminated with the string \\. 
  501.  
  502.  Note that the array environment can only be used in math mode, so normally it 
  503.  is used inside an equation environment. 
  504.  
  505.  
  506. ΓòÉΓòÉΓòÉ 4.6.2. center ΓòÉΓòÉΓòÉ
  507.  
  508.  \begin{center}
  509.  Text on line 1 \\
  510.  Text on line 2 \\
  511.  .
  512.  .
  513.  .
  514.  \end{center}
  515.  
  516. The center environment allows you to create a paragraph consisting of lines 
  517. that are centred within the left and right margins on the current page.  Each 
  518. line must be terminated with the string \\. 
  519.  
  520.  
  521. ΓòÉΓòÉΓòÉ 4.6.2.1. \centering ΓòÉΓòÉΓòÉ
  522.  
  523. This declaration corresponds to the center environment.  This declaration can 
  524. be used inside an environment such as quote or in a parbox.  The text of a 
  525. figure or table can be centred on the page by putting a \centering command at 
  526. the beginning of the figure or table environment. 
  527.  
  528. Unlike the center environment, the \centering command does not start a new 
  529. paragraph; it simply changes how LaTeX formats paragraph units.  To affect a 
  530. paragraph unit's format, the scope of the declaration must contain the blank 
  531. line or \end command (of an environment like quote) that ends the paragraph 
  532. unit. 
  533.  
  534.  
  535. ΓòÉΓòÉΓòÉ 4.6.3. description ΓòÉΓòÉΓòÉ
  536.  
  537.  \begin{description}
  538.  \item [label] First item
  539.  \item [label] Second item
  540.  .
  541.  .
  542.  .
  543.  \end{description}
  544.  
  545. The description environment is used to make labelled lists.  The label is bold 
  546. face and flushed right. 
  547.  
  548.  
  549. ΓòÉΓòÉΓòÉ 4.6.4. enumerate ΓòÉΓòÉΓòÉ
  550.  
  551.  \begin{enumerate}
  552.  \item First item
  553.  \item Second item
  554.  .
  555.  .
  556.  .
  557.  \end{enumerate}
  558.  
  559. The enumerate environment produces a numbered list.  Enumerations can be nested 
  560. within one another, up to four levels deep.  They can also be nested within 
  561. other paragraph-making environments. 
  562.  
  563. Each item of an enumerated list begins with an \item command. There must be at 
  564. least one \item command within the environment. 
  565.  
  566. The enumerate environment uses the enumi through enumiv counters (see 
  567. Counters). The type of numbering can be changed by redefining \theenumi etc. 
  568.  
  569.  
  570. ΓòÉΓòÉΓòÉ 4.6.5. eqnarray ΓòÉΓòÉΓòÉ
  571.  
  572.  \begin{eqnarray}
  573.  math formula 1 \\
  574.  math formula 2 \\
  575.  .
  576.  .
  577.  .
  578.  \end{eqnarray}
  579.  
  580. The eqnarray environment is used to display a sequence of equations or 
  581. inequalities.  It is very much like a three-column array environment, with 
  582. consecutive rows separated by \\ and consecutive items within a row separated 
  583. by an &. 
  584.  
  585. An equation number is placed on every line unless that line has a \nonumber 
  586. command. 
  587.  
  588. The command \lefteqn is used for splitting long formulas across lines. It 
  589. typesets its argument in display style flush left in a box of zero width. 
  590.  
  591.  
  592. ΓòÉΓòÉΓòÉ 4.6.6. equation ΓòÉΓòÉΓòÉ
  593.  
  594.  \begin{equation}
  595.   math formula
  596.  \end{equation}
  597.  
  598. The equation environment centres your equation on the page and places the 
  599. equation number in the right margin. 
  600.  
  601.  
  602. ΓòÉΓòÉΓòÉ 4.6.7. figure ΓòÉΓòÉΓòÉ
  603.  
  604.  \begin{figure}[placement]
  605.  
  606.   body of the figure
  607.  
  608.  \caption{figure title}
  609.  \end{figure}
  610.  
  611. Figures are objects that are not part of the normal text, and are usually 
  612. ``floated'' to a convenient place, like the top of a page. Figures will not be 
  613. split between two pages. 
  614.  
  615. The optional argument [placement] determines where LaTeX will try to place your 
  616. figure.  There are four places where LaTeX can possibly put a float: 
  617.  
  618.    1. h (Here) - at the position in the text where the figure environment 
  619.       appears. 
  620.  
  621.    2. t (Top) - at the top of a text page. 
  622.  
  623.    3. b (Bottom) - at the bottom of a text page. 
  624.  
  625.    4. p (Page of floats) - on a separate float page, which is a page containing 
  626.       no text, only floats. 
  627.  
  628.  The standard report and article classes use the default placement tbp. 
  629.  
  630.  The body of the figure is made up of whatever text, LaTeX commands, etc. you 
  631.  wish.  The \caption command allows you to title your figure. 
  632.  
  633.  
  634. ΓòÉΓòÉΓòÉ 4.6.8. flushleft ΓòÉΓòÉΓòÉ
  635.  
  636.  \begin{flushleft}
  637.  Text on line 1 \\
  638.  Text on line 2 \\
  639.  .
  640.  .
  641.  .
  642.  \end{flushleft}
  643.  
  644. The flushleft environment allows you to create a paragraph consisting of lines 
  645. that are flushed left, to the left-hand margin. Each line must be terminated 
  646. with the string \\. 
  647.  
  648.  
  649. ΓòÉΓòÉΓòÉ 4.6.8.1. \raggedright ΓòÉΓòÉΓòÉ
  650.  
  651. This declaration corresponds to the flushleft environment.  This declaration 
  652. can be used inside an environment such as quote or in a parbox. 
  653.  
  654. Unlike the flushleft environment, the \raggedright command does not start a new 
  655. paragraph; it simply changes how LaTeX formats paragraph units.  To affect a 
  656. paragraph unit's format, the scope of the declaration must contain the blank 
  657. line or \end command (of an environment like quote) that ends the paragraph 
  658. unit. 
  659.  
  660.  
  661. ΓòÉΓòÉΓòÉ 4.6.9. flushright ΓòÉΓòÉΓòÉ
  662.  
  663.  \begin{flushright}
  664.  Text on line 1 \\
  665.  Text on line 2 \\
  666.  .
  667.  .
  668.  .
  669.  \end{flushright}
  670.  
  671. The flushright environment allows you to create a paragraph consisting of lines 
  672. that are flushed right, to the right-hand margin. Each line must be terminated 
  673. with the string \\. 
  674.  
  675.  
  676. ΓòÉΓòÉΓòÉ 4.6.9.1. \raggedleft ΓòÉΓòÉΓòÉ
  677.  
  678. This declaration corresponds to the flushright environment.  This declaration 
  679. can be used inside an environment such as quote or in a parbox. 
  680.  
  681. Unlike the flushright environment, the \raggedleft command does not start a new 
  682. paragraph; it simply changes how LaTeX formats paragraph units.  To affect a 
  683. paragraph unit's format, the scope of the declaration must contain the blank 
  684. line or \end command (of an environment like quote) that ends the paragraph 
  685. unit. 
  686.  
  687.  
  688. ΓòÉΓòÉΓòÉ 4.6.10. itemize ΓòÉΓòÉΓòÉ
  689.  
  690.  \begin{itemize}
  691.  \item First item
  692.  \item Second item
  693.  .
  694.  .
  695.  .
  696.  \end{itemize}
  697.  
  698. The itemize environment produces a ``bulleted'' list.  Itemizations can be 
  699. nested within one another, up to four levels deep.  They can also be nested 
  700. within other paragraph-making environments. 
  701.  
  702. Each item of an itemized list begins with an \item command. There must be at 
  703. least one \item command within the environment. 
  704.  
  705. The itemize environment uses the itemi through itemiv counters (see Counters). 
  706. The type of numbering can be changed by redefining \theitemi etc. 
  707.  
  708.  
  709. ΓòÉΓòÉΓòÉ 4.6.11. letter ΓòÉΓòÉΓòÉ
  710.  
  711. This environment is used for creating letters. See Letters. 
  712.  
  713.  
  714. ΓòÉΓòÉΓòÉ 4.6.12. list ΓòÉΓòÉΓòÉ
  715.  
  716. The list environment is a generic environment which is used for defining many 
  717. of the more specific environments. It is seldom used in documents, but often in 
  718. macros. 
  719.  
  720.  \begin{list}{label}{spacing}
  721.  \item First item
  722.  \item Second item
  723.  .
  724.  .
  725.  .
  726.  \end{list}
  727.  
  728. The {label} argument specifies how items should be labelled. This argument is a 
  729. piece of text that is inserted in a box to form the label.  This argument can 
  730. and usually does contain other LaTeX commands. 
  731.  
  732. The {spacing} argument contains commands to change the spacing parameters for 
  733. the list.  This argument will most often be null, i.e., {}.  This will select 
  734. all default spacing which should suffice for most cases. 
  735.  
  736.  
  737. ΓòÉΓòÉΓòÉ 4.6.13. minipage ΓòÉΓòÉΓòÉ
  738.  
  739.  \begin{minipage}[position]{width}
  740.   text
  741.  \end{minipage}
  742.  
  743. The minipage environment is similar to a \parbox command. It takes the same 
  744. optional position argument and mandatory width argument.  You may use other 
  745. paragraph-making environments inside a minipage. 
  746.  
  747. Footnotes in a minipage environment are handled in a way that is particularly 
  748. useful for putting footnotes in figures or tables.  A \footnote or 
  749. \footnotetext command puts the footnote at the bottom of the minipage instead 
  750. of at the bottom of the page, and it uses the mpfootnote counter instead of the 
  751. ordinary footnote counter See Counters. 
  752.  
  753. NOTE: Don't put one minipage inside another if you are using footnotes; they 
  754. may wind up at the bottom of the wrong minipage. 
  755.  
  756.  
  757. ΓòÉΓòÉΓòÉ 4.6.14. picture ΓòÉΓòÉΓòÉ
  758.  
  759.  \begin{picture}(width,height)(x offset,y offset)
  760.   .
  761.   .
  762.   picture commands
  763.   .
  764.   .
  765.  \end{picture}
  766.  
  767. The picture environment allows you to create just about any kind of picture you 
  768. want containing text, lines, arrows and circles.  You tell LaTeX where to put 
  769. things in the picture by specifying their coordinates.  A coordinate is a 
  770. number that may have a decimal point and a minus sign --- a number like 5, 2.3 
  771. or -3.1416.  A coordinate specifies a length in multiples of the unit length 
  772. \unitlength, so if \unitlength has been set to 1cm, then the coordinate 2.54 
  773. specifies a length of 2.54 centimetres.  You can change the value of 
  774. \unitlength anywhere you want, using the \setlength command, but strange things 
  775. will happen if you try changing it inside the picture environment. 
  776.  
  777. A position is a pair of coordinates, such as (2.4,-5), specifying the point 
  778. with x-coordinate 2.4 and y-coordinate -5. Coordinates are specified in the 
  779. usual way with respect to an origin, which is normally at the lower-left corner 
  780. of the picture.  Note that when a position appears as an argument, it is not 
  781. enclosed in braces; the parentheses serve to delimit the argument. 
  782.  
  783. The picture environment has one mandatory argument, which is a position.  It 
  784. specifies the size of the picture.  The environment produces a rectangular box 
  785. with width and height determined by this argument's x- and y-coordinates. 
  786.  
  787. The picture environment also has an optional position argument, following the 
  788. size argument, that can change the origin.  (Unlike ordinary optional 
  789. arguments, this argument is not contained in square brackets.) The optional 
  790. argument gives the coordinates of the point at the lower-left corner of the 
  791. picture (thereby determining the origin).  For example, if \unitlength has been 
  792. set to 1mm, the command 
  793.  
  794.    \begin{picture}(100,200)(10,20)
  795.  
  796. produces a picture of width 100 millimetres and height 200 millimetres, whose 
  797. lower-left corner is the point (10,20) and whose upper-right corner is 
  798. therefore the point (110,220).  When you first draw a picture, you will omit 
  799. the optional argument, leaving the origin at the lower-left corner.  If you 
  800. then want to modify your picture by shifting everything, you just add the 
  801. appropriate optional argument. 
  802.  
  803. The environment's mandatory argument determines the nominal size of the 
  804. picture.  This need bear no relation to how large the picture really is; LaTeX 
  805. will happily allow you to put things outside the picture, or even off the page. 
  806. The picture's nominal size is used by LaTeX in determining how much room to 
  807. leave for it. 
  808.  
  809. Everything that appears in a picture is drawn by the \put command. The command 
  810.  
  811.    \put (11.3,-.3){...}
  812.  
  813. puts the object specified by ... in the picture, with its reference point at 
  814. coordinates (11.3,-.3).  The reference points for various objects will be 
  815. described below. 
  816.  
  817. The \put command creates an LR box.  You can put anything in the text argument 
  818. of the \put command that you'd put into the argument of an \mbox and related 
  819. commands.  When you do this, the reference point will be the lower left corner 
  820. of the box. 
  821.  
  822. Picture commands: 
  823.  
  824.  
  825. ΓòÉΓòÉΓòÉ 4.6.14.1. \circle ΓòÉΓòÉΓòÉ
  826.  
  827. \circle[*]{diameter} 
  828.  
  829. The \circle command produces a circle with a diameter as close to the specified 
  830. one as possible.  If the *-form of the command is used, LaTeX draws a solid 
  831. circle. 
  832.  
  833. Note that only circles up to 40 pt can be drawn. 
  834.  
  835.  
  836. ΓòÉΓòÉΓòÉ 4.6.14.2. \dashbox ΓòÉΓòÉΓòÉ
  837.  
  838. Draws a box with a dashed line. 
  839.  
  840. \dashbox{dash_length}(width,height){...} 
  841.  
  842. The \dashbox has an extra argument which specifies the width of each dash.  A 
  843. dashed box looks best when the width and height are multiples of the 
  844. dash_length. 
  845.  
  846.  
  847. ΓòÉΓòÉΓòÉ 4.6.14.3. \frame ΓòÉΓòÉΓòÉ
  848.  
  849. \frame{...} 
  850.  
  851. The \frame command puts a rectangular frame around the object specified in the 
  852. argument.  The reference point is the bottom left corner of the frame.  No 
  853. extra space is put between the frame and the object. 
  854.  
  855.  
  856. ΓòÉΓòÉΓòÉ 4.6.14.4. \framebox ΓòÉΓòÉΓòÉ
  857.  
  858. \framebox(width,height)[position]{...} 
  859.  
  860. The \framebox command is exactly the same as the \makebox command, except that 
  861. it puts a frame around the outside of the box that it creates. 
  862.  
  863. The framebox command produces a rule of thickness \fboxrule, and leaves a space 
  864. \fboxsep between the rule and the contents of the box. 
  865.  
  866.  
  867. ΓòÉΓòÉΓòÉ 4.6.14.5. \line ΓòÉΓòÉΓòÉ
  868.  
  869. \line(x slope,y slope){length} 
  870.  
  871. The \line command draws a line of the specified length and slope. 
  872.  
  873. Note that LaTeX can only draw lines with slope = x/y, where x and y have 
  874. integer values from -6 through 6. 
  875.  
  876.  
  877. ΓòÉΓòÉΓòÉ 4.6.14.6. \linethickness ΓòÉΓòÉΓòÉ
  878.  
  879. \linethickness{dimension} 
  880.  
  881. Declares the thickness of horizontal and vertical lines in a picture 
  882. environment to be dimension, which must be a positive length. It does not 
  883. affect the thickness of slanted lines and circles, or the quarter circles drawn 
  884. by \oval to form the corners of an oval. 
  885.  
  886.  
  887. ΓòÉΓòÉΓòÉ 4.6.14.7. \makebox ΓòÉΓòÉΓòÉ
  888.  
  889. \makebox(width,height)[position]{...} 
  890.  
  891. The \makebox command for the picture environment is similar to the normal 
  892. \makebox command except that you must specify a width and height in multiples 
  893. of \unitlength. 
  894.  
  895. The optional argument, [position], specifies the quadrant that your text 
  896. appears in.  You may select up to two of the following: 
  897.  
  898.      t - Moves the item to the top of the rectangle 
  899.  
  900.      b - Moves the item to the bottom 
  901.  
  902.      l - Moves the item to the left 
  903.  
  904.      r - Moves the item to the right 
  905.  
  906.  See \makebox. 
  907.  
  908.  
  909. ΓòÉΓòÉΓòÉ 4.6.14.8. \multiput ΓòÉΓòÉΓòÉ
  910.  
  911. \multiput(x coord,y coord)(delta x,delta y){number of copies}{object} 
  912.  
  913. The \multiput command can be used when you are putting the same object in a 
  914. regular pattern across a picture. 
  915.  
  916.  
  917. ΓòÉΓòÉΓòÉ 4.6.14.9. \oval ΓòÉΓòÉΓòÉ
  918.  
  919. \oval(width,height)[portion] 
  920.  
  921. The \oval command produces a rectangle with rounded corners.  The optional 
  922. argument, [portion], allows you to select part of the oval. 
  923.  
  924.      t - Selects the top portion 
  925.  
  926.      b - Selects the bottom portion 
  927.  
  928.      r - Selects the right portion 
  929.  
  930.      l - Selects the left portion 
  931.  
  932.  Note that the ``corners'' of the oval are made with quarter circles with a 
  933.  maximum radius of 20 pt, so large ``ovals'' will look more like boxes with 
  934.  rounded corners. 
  935.  
  936.  
  937. ΓòÉΓòÉΓòÉ 4.6.14.10. \put ΓòÉΓòÉΓòÉ
  938.  
  939. \put(x coord,y coord){ ...  } 
  940.  
  941. The \put command places the item specified by the mandatory argument at the 
  942. given coordinates. 
  943.  
  944.  
  945. ΓòÉΓòÉΓòÉ 4.6.14.11. \shortstack ΓòÉΓòÉΓòÉ
  946.  
  947. \shortstack[position]{...  \\ ...  \\ ...} 
  948.  
  949. The \shortstack command produces a stack of objects.  The valid positions are: 
  950.  
  951.      r - Moves the objects to the right of the stack 
  952.  
  953.      l - Moves the objects to the left of the stack 
  954.  
  955.      c - Moves the objects to the centre of the stack (default) 
  956.  
  957.  
  958. ΓòÉΓòÉΓòÉ 4.6.14.12. \vector ΓòÉΓòÉΓòÉ
  959.  
  960. \vector(x slope,y slope){length} 
  961.  
  962. The \vector command draws a line with an arrow of the specified length and 
  963. slope.  The x and y values must lie between -4 and +4, inclusive. 
  964.  
  965.  
  966. ΓòÉΓòÉΓòÉ 4.6.15. quotation ΓòÉΓòÉΓòÉ
  967.  
  968.  \begin{quotation}
  969.   text
  970.  \end{quotation}
  971.  
  972. The margins of the quotation environment are indented on the left and the 
  973. right.  The text is justified at both margins and there is paragraph 
  974. indentation.  Leaving a blank line between text produces a new paragraph. 
  975.  
  976.  
  977. ΓòÉΓòÉΓòÉ 4.6.16. quote ΓòÉΓòÉΓòÉ
  978.  
  979.  \begin{quote}
  980.   text
  981.  \end{quote}
  982.  
  983. The margins of the quote environment are indented on the left and the right. 
  984. The text is justified at both margins.  Leaving a blank line between text 
  985. produces a new paragraph. 
  986.  
  987.  
  988. ΓòÉΓòÉΓòÉ 4.6.17. tabbing ΓòÉΓòÉΓòÉ
  989.  
  990.  \begin{tabbing}
  991.  text \= more text \= still more text \= last text \\
  992.  second row \>  \> more \\
  993.  .
  994.  .
  995.  .
  996.  \end{tabbing}
  997.  
  998. The tabbing environment provides a way to align text in columns. It works by 
  999. setting tab stops and tabbing to them much the way you do with an ordinary 
  1000. typewriter. 
  1001.  
  1002. It is best suited for cases where the width of each column is constant and 
  1003. known in advance. 
  1004.  
  1005. This environment can be broken across pages, unlike the tabular environment. 
  1006.  
  1007. The following commands can be used inside a tabbing enviroment: 
  1008.  
  1009.  \= 
  1010.            Sets a tab stop at the current position. 
  1011.  
  1012.  \> 
  1013.            Advances to the next tab stop. 
  1014.  
  1015.  \< 
  1016.            This command allows you to put something to the left of the local 
  1017.            margin without changing the margin. Can only be used at the start of 
  1018.            the line. 
  1019.  
  1020.  \+ 
  1021.            Moves the left margin of the next and all the following commands one 
  1022.            tab stop to the right. 
  1023.  
  1024.  \- 
  1025.            Moves the left margin of the next and all the following commands one 
  1026.            tab stop to the left. 
  1027.  
  1028.  \' 
  1029.            Moves everything that you have typed so far in the current column, 
  1030.            i.e. everything from the most recent \>, \<, \', \\, or \kill 
  1031.            command, to the right of the previous column, flush against the 
  1032.            current column's tab stop. 
  1033.  
  1034.  \` 
  1035.            Allows you to put text flush right against any tab stop, including 
  1036.            tab stop 0.  However, it can't move text to the right of the last 
  1037.            column because there's no tab stop there.  The \` command moves all 
  1038.            the text that follows it, up to the \\ or \end{tabbing} command that 
  1039.            ends the line, to the right margin of the tabbing environment. 
  1040.            There must be no \> or \' command between the \` and the command 
  1041.            that ends the line. 
  1042.  
  1043.  \kill 
  1044.            Sets tab stops without producing text.  Works just like  \\ except 
  1045.            that it throws away the current line instead of producing output for 
  1046.            it.  The effect of any \=, \+ or \- commands in that line remain in 
  1047.            effect. 
  1048.  
  1049.  \pushtabs 
  1050.            Saves all current tab stop positions. Useful for temporarily 
  1051.            changing tab stop positions in the middle of a tabbing environment. 
  1052.  
  1053.  \pushtabs 
  1054.            Restores the tab stop positions saved by the last \pushtabs. 
  1055.  
  1056.  \a 
  1057.            In a tabbing environment, the commands \=, \' and \` do not produce 
  1058.            accents as normal. Instead, the commands \a=, \a' and \a` are used. 
  1059.  
  1060.  This example typesets a Pascal function in a traditional format: 
  1061.  
  1062.           \begin{tabbing}
  1063.           function \= fact(n : integer) : integer;\\
  1064.                    \> begin \= \+ \\
  1065.                          \> if \= n $>$ 1 then \+ \\
  1066.                                   fact := n * fact(n-1) \- \\
  1067.                             else \+ \\
  1068.                                   fact := 1; \-\- \\
  1069.                       end;\\
  1070.           \end{tabbing}
  1071.  
  1072.  
  1073. ΓòÉΓòÉΓòÉ 4.6.18. table ΓòÉΓòÉΓòÉ
  1074.  
  1075.  \begin{table}[placement]
  1076.  
  1077.   body of the table
  1078.  
  1079.  \caption{table title}
  1080.  \end{table}
  1081.  
  1082. Tables  are objects  that  are not part  of the normal  text,  and are usually 
  1083. ``floated''  to a convenient  place,  like  the top  of a page. Tables will not 
  1084. be split between two pages. 
  1085.  
  1086. The optional argument [placement] determines where LaTeX will try to place your 
  1087. table.  There are four places where LaTeX can possibly put a float: 
  1088.  
  1089.      h : Here - at the position in the text where the table environment 
  1090.       appears. 
  1091.  
  1092.      t : Top - at the top of a text page. 
  1093.  
  1094.      b : Bottom - at the bottom of a text page. 
  1095.  
  1096.      p : Page of floats - on a separate float page, which is a page containing 
  1097.       no text, only floats. 
  1098.  
  1099.  The standard report and article classes use the default placement [tbp]. 
  1100.  
  1101.  The body of the table is made up of whatever text, LaTeX commands, etc., you 
  1102.  wish.  The \caption command allows you to title your table. 
  1103.  
  1104.  
  1105. ΓòÉΓòÉΓòÉ 4.6.19. tabular ΓòÉΓòÉΓòÉ
  1106.  
  1107.  \begin{tabular}[pos]{cols}
  1108.  column 1 entry & column 2 entry ... & column n entry \\
  1109.  .
  1110.  .
  1111.  .
  1112.  \end{tabular}
  1113.  
  1114.     or 
  1115.  
  1116.  \begin{tabular*}{width}[pos]{cols}
  1117.  column 1 entry & column 2 entry ... & column n entry \\
  1118.  .
  1119.  .
  1120.  .
  1121.  \end{tabular*}
  1122.  
  1123. These environments produce a box consisting of a sequence of rows of items, 
  1124. aligned vertically in columns.  The mandatory and optional arguments consist 
  1125. of: 
  1126.  
  1127.  width 
  1128.            Specifies the width of the tabular* environment.  There must be 
  1129.            rubber space between columns that can stretch to fill out the 
  1130.            specified width. 
  1131.  
  1132.  pos 
  1133.            Specifies the vertical position; default is alignment on the centre 
  1134.            of the environment. 
  1135.  
  1136.                t - align on top row 
  1137.  
  1138.                b - align on bottom row 
  1139.  
  1140.  cols 
  1141.            Specifies the column formatting.  It consists of a sequence of the 
  1142.            following specifiers, corresponding to the sequence of columns and 
  1143.            intercolumn material. 
  1144.  
  1145.                l - A column of left-aligned items. 
  1146.  
  1147.                r - A column of right-aligned items. 
  1148.  
  1149.                c - A column of centred items. 
  1150.  
  1151.                | - A vertical line the full height and depth of the 
  1152.                 environment. 
  1153.  
  1154.                @{text} - This inserts text in every row.  An @-expression 
  1155.                 suppresses the intercolumn space normally inserted between 
  1156.                 columns; any desired space between the inserted text and the 
  1157.                 adjacent items must be included in text.  An \extracolsep{wd} 
  1158.                 command in an @-expression causes an extra space of width wd to 
  1159.                 appear to the left of all subsequent columns, until 
  1160.                 countermanded by another \extracolsep command.  Unlike ordinary 
  1161.                 intercolumn space, this extra space is not suppressed by an 
  1162.                 @-expression.  An \extracolsep command can be used only in an 
  1163.                 @-expression in the cols argument. 
  1164.  
  1165.                p{wd} - Produces a column with each item typeset in a parbox of 
  1166.                 width wd, as if it were the argument of a \parbox[t]{wd} 
  1167.                 command.  However, a \\ may not appear in the item, except in 
  1168.                 the following situations: 
  1169.  
  1170.                   1. inside an environment like minipage, array, or tabular. 
  1171.  
  1172.                   2. inside an explicit \parbox. 
  1173.  
  1174.                   3. in the scope of a \centering, \raggedright, or \raggedleft 
  1175.                      declaration.  The latter declarations must appear inside 
  1176.                      braces or an environment when used in a p-column element. 
  1177.  
  1178.                *{num}{cols} - Equivalent to num copies of cols, where num is 
  1179.                 any positive integer and cols is any list of column-specifiers, 
  1180.                 which may contain another *-expression. 
  1181.  
  1182.  These commands can be used inside a tabular environment: 
  1183.  
  1184.  
  1185. ΓòÉΓòÉΓòÉ 4.6.19.1. \cline ΓòÉΓòÉΓòÉ
  1186.  
  1187. \cline{i-j} 
  1188.  
  1189. The \cline command draws horizontal lines across the columns specified, 
  1190. beginning in column i and ending in column j, which are identified in the 
  1191. mandatory argument. 
  1192.  
  1193.  
  1194. ΓòÉΓòÉΓòÉ 4.6.19.2. \hline ΓòÉΓòÉΓòÉ
  1195.  
  1196. The \hline command will draw a horizontal line the width of the table.  It's 
  1197. most commonly used to draw a line at the top, bottom, and between the rows of 
  1198. the table. 
  1199.  
  1200.  
  1201. ΓòÉΓòÉΓòÉ 4.6.19.3. \multicolumn ΓòÉΓòÉΓòÉ
  1202.  
  1203. \multicolumn{cols}{pos}{text} 
  1204.  
  1205. The \multicolumn is used to make an entry that spans several columns.  The 
  1206. first mandatory argument, cols, specifies the number of columns to span.  The 
  1207. second mandatory argument, pos, specifies the formatting of the entry; c for 
  1208. centred, l for flushleft, r for flushright.  The third mandatory argument, 
  1209. text, specifies what text is to make up the entry. 
  1210.  
  1211.  
  1212. ΓòÉΓòÉΓòÉ 4.6.19.4. \vline ΓòÉΓòÉΓòÉ
  1213.  
  1214. The \vline command will draw a vertical line extending the full height and 
  1215. depth of its row.  An \hfill command can be used to move the line to the edge 
  1216. of the column.  It can also be used in an @-expression. 
  1217.  
  1218.  
  1219. ΓòÉΓòÉΓòÉ 4.6.20. thebibliography ΓòÉΓòÉΓòÉ
  1220.  
  1221.  \begin{thebibliography}{widest-label}
  1222.  \bibitem[label]{cite_key}
  1223.  .
  1224.  .
  1225.  .
  1226.  \end{thebibliography}
  1227.  
  1228. The thebibliography environment produces a bibliography or reference list.  In 
  1229. the article class, this reference list is labelled ``References''; in the 
  1230. report class, it is labelled ``Bibliography''. 
  1231.  
  1232.      widest-label: Text that, when printed, is approximately as wide as the 
  1233.       widest item label produces by the \bibitem commands. 
  1234.  
  1235.  
  1236. ΓòÉΓòÉΓòÉ 4.6.20.1. \bibitem ΓòÉΓòÉΓòÉ
  1237.  
  1238. \bibitem[label]{cite_key} 
  1239.  
  1240. The \bibitem command generates an entry labelled by label. If the label 
  1241. argument is missing, a number is generated as the label, using the enumi 
  1242. counter.  The cite_key is any sequence of letters, numbers, and punctuation 
  1243. symbols not containing a comma.  This command writes an entry on the `.aux' 
  1244. file containing cite_key and the item's label.  When this `.aux' file is read 
  1245. by the \begin{document} command, the item's label is associated with cite_key, 
  1246. causing the reference to cite_key by a \cite command to produce the associated 
  1247. label. 
  1248.  
  1249.  
  1250. ΓòÉΓòÉΓòÉ 4.6.20.2. \cite ΓòÉΓòÉΓòÉ
  1251.  
  1252. \cite[text]{key_list} 
  1253.  
  1254. The key_list argument is a list of citation keys.  This command generates an 
  1255. in-text citation to the references associated with the keys in key_list by 
  1256. entries on the `.aux' file read by the \begin{document} command. 
  1257.  
  1258. The optional text argument will appear after the citation, i.e. \cite[p. 
  1259. 2]{knuth} might produce `[Knuth, p. 2]'. 
  1260.  
  1261.  
  1262. ΓòÉΓòÉΓòÉ 4.6.20.3. \nocite ΓòÉΓòÉΓòÉ
  1263.  
  1264. \nocite{key_list} 
  1265.  
  1266. The \nocite command produces no text, but writes key_list, which is a list of 
  1267. one or more citation keys, on the `.aux' file. 
  1268.  
  1269.  
  1270. ΓòÉΓòÉΓòÉ 4.6.20.4. Using BibTeX ΓòÉΓòÉΓòÉ
  1271.  
  1272. If you use the BibTeX program by Oren Patashnik (highly recommended if you need 
  1273. a bibliography of more than a couple of titles) to maintain your bibliography, 
  1274. you don't use the thebibliography environment. Instead, you include the lines 
  1275.  
  1276.         \bibliographystyle{style}
  1277.         \bibliography{bibfile}
  1278.  
  1279. where style refers to a file style.bst, which defines how your citations will 
  1280. look. The standard styles distributed with BibTeX are: 
  1281.  
  1282.  alpha 
  1283.            Sorted alphabetically. Labels are formed from name of author and 
  1284.            year of publication. 
  1285.  
  1286.  plain 
  1287.            Sorted alphabetically. Labels are numeric. 
  1288.  
  1289.  unsrt 
  1290.            Like plain, but entries are in order of citation. 
  1291.  
  1292.  abbrv 
  1293.            Like plain, but more compact labels. 
  1294.  
  1295.  In addition, numerous other BibTeX style files exist tailored to the demands 
  1296.  of various publications. 
  1297.  
  1298.  The argument to \bibliography refers to the file bibfile.bib, which should 
  1299.  contain your database in BibTeX format. Only the entries referred to via \cite 
  1300.  and \nocite will be listed in the bibliography. 
  1301.  
  1302.  
  1303. ΓòÉΓòÉΓòÉ 4.6.21. theorem ΓòÉΓòÉΓòÉ
  1304.  
  1305.  \begin{theorem}
  1306.   theorem text
  1307.  \end{theorem}
  1308.  
  1309. The theorem environment produces ``Theorem x'' in boldface followed by your 
  1310. theorem text. 
  1311.  
  1312.  
  1313. ΓòÉΓòÉΓòÉ 4.6.22. titlepage ΓòÉΓòÉΓòÉ
  1314.  
  1315.  \begin{titlepage}
  1316.   text
  1317.  \end{titlepage}
  1318.  
  1319. The titlepage environment creates a title page, i.e.  a page with no printed 
  1320. page number or heading.  It also causes the following page to be numbered page 
  1321. one.  Formatting the title page is left to you.  The \today command comes in 
  1322. handy for title pages. 
  1323.  
  1324. Note that you can use the \maketitle (see \maketitle) command to produce a 
  1325. standard title page. 
  1326.  
  1327.  
  1328. ΓòÉΓòÉΓòÉ 4.6.23. verbatim ΓòÉΓòÉΓòÉ
  1329.  
  1330.  \begin{verbatim}
  1331.   text
  1332.  \end{verbatim}
  1333.  
  1334. The verbatim environment is a paragraph-making environment that gets LaTeX to 
  1335. print exactly what you type in.  It turns LaTeX into a typewriter with carriage 
  1336. returns and blanks having the same effect that they would on a typewriter. 
  1337.  
  1338.  
  1339. ΓòÉΓòÉΓòÉ 4.6.23.1. \verb ΓòÉΓòÉΓòÉ
  1340.  
  1341. \verb char literal_text char 
  1342.  
  1343. \verb*char literal_text char 
  1344.  
  1345. Typesets literal_text exactly as typed, including special characters and 
  1346. spaces, using a typewriter (\tt) type style. There may be no space between 
  1347. \verb or \verb* and char (space is shown here only for clarity).  The *-form 
  1348. differs only in that spaces are printed as a special character. 
  1349.  
  1350.  
  1351. ΓòÉΓòÉΓòÉ 4.6.24. verse ΓòÉΓòÉΓòÉ
  1352.  
  1353.  \begin{verse}
  1354.   text
  1355.  \end{verse}
  1356.  
  1357. The verse environment is designed for poetry, though you may find other uses 
  1358. for it. 
  1359.  
  1360. The margins are indented on the left and the right. Separate the lines of each 
  1361. stanza with \\, and use one or more blank lines to separate the stanzas. 
  1362.  
  1363.  
  1364. ΓòÉΓòÉΓòÉ 4.7. Footnotes ΓòÉΓòÉΓòÉ
  1365.  
  1366. Footnotes can be produced in one of two ways.  They can be produced with one 
  1367. command, the \footnote command.  They can also be produced with two commands, 
  1368. the \footnotemark and the \footnotetext commands.  See the specific command for 
  1369. information on why you would use one over the other. 
  1370.  
  1371.  
  1372. ΓòÉΓòÉΓòÉ 4.7.1. \footnote ΓòÉΓòÉΓòÉ
  1373.  
  1374. \footnote[number]{text} 
  1375.  
  1376. The \footnote command places the numbered footnote text at the bottom of the 
  1377. current page.  The optional argument, number, is used to change the default 
  1378. footnote number.  This command can only be used in outer paragraph mode; i.e., 
  1379. you cannot use it in sectioning commands like \chapter, in figures, tables or 
  1380. in a tabular environment. 
  1381.  
  1382.  
  1383. ΓòÉΓòÉΓòÉ 4.7.2. \footnotemark ΓòÉΓòÉΓòÉ
  1384.  
  1385. The \footnotemark command puts the footnote number in the text.  This command 
  1386. can be used in inner paragraph mode.  The text of the footnote is supplied by 
  1387. the \footnotetext command. 
  1388.  
  1389. This command can be used to produce several consecutive footnote markers 
  1390. referring to the same footnote by using 
  1391.  
  1392. \footnotemark[\value{footnote}] 
  1393.  
  1394. after the first \footnote command. 
  1395.  
  1396.  
  1397. ΓòÉΓòÉΓòÉ 4.7.3. \footnotetext ΓòÉΓòÉΓòÉ
  1398.  
  1399. \footnotetext[number]{text} 
  1400.  
  1401. The \footnotetext command produces the text to be placed at the bottom of the 
  1402. page.  This command can come anywhere after the \footnotemark command.  The 
  1403. \footnotetext command must appear in outer paragraph mode. 
  1404.  
  1405. The optional argument, number, is used to change the default footnote number. 
  1406.  
  1407.  
  1408. ΓòÉΓòÉΓòÉ 4.8. Lengths ΓòÉΓòÉΓòÉ
  1409.  
  1410. A length is a measure of distance.  Many LaTeX commands take a length as an 
  1411. argument. 
  1412.  
  1413.  
  1414. ΓòÉΓòÉΓòÉ 4.8.1. \newlength ΓòÉΓòÉΓòÉ
  1415.  
  1416. \newlength{\gnat} 
  1417.  
  1418. The \newlength command defines the mandatory argument, \gnat, as a length 
  1419. command with a value of 0in.  An error occurs if a \gnat command already 
  1420. exists. 
  1421.  
  1422.  
  1423. ΓòÉΓòÉΓòÉ 4.8.2. \setlength ΓòÉΓòÉΓòÉ
  1424.  
  1425. \setlength{\gnat}{length} 
  1426.  
  1427. The \setlength command is used to set the value of a length command.  The 
  1428. length argument can be expressed in any terms of length LaTeX understands, 
  1429. i.e., inches (in), millimetres (mm), points (pt), etc. 
  1430.  
  1431.  
  1432. ΓòÉΓòÉΓòÉ 4.8.3. \addtolength ΓòÉΓòÉΓòÉ
  1433.  
  1434. \addtolength{\gnat}{length} 
  1435.  
  1436. The \addtolength command increments a ``length command'' by the amount 
  1437. specified in the length argument.  It can be a negative amount. 
  1438.  
  1439.  
  1440. ΓòÉΓòÉΓòÉ 4.8.4. \settodepth ΓòÉΓòÉΓòÉ
  1441.  
  1442. \settodepth{\gnat}{text} 
  1443.  
  1444. The \settodepth command sets the value of a length command equal to the depth 
  1445. of the text argument. 
  1446.  
  1447.  
  1448. ΓòÉΓòÉΓòÉ 4.8.5. \settoheight ΓòÉΓòÉΓòÉ
  1449.  
  1450. \settoheight{\gnat}{text} 
  1451.  
  1452. The \settoheight command sets the value of a length command equal to the height 
  1453. of the text argument. 
  1454.  
  1455.  
  1456. ΓòÉΓòÉΓòÉ 4.8.6. \settowidth ΓòÉΓòÉΓòÉ
  1457.  
  1458. \settowidth{\gnat}{text} 
  1459.  
  1460. The \settowidth command sets the value of a length command equal to the width 
  1461. of the text argument. 
  1462.  
  1463.  
  1464. ΓòÉΓòÉΓòÉ 4.8.7. Predefined lengths ΓòÉΓòÉΓòÉ
  1465.  
  1466. \width 
  1467.  
  1468. \height 
  1469.  
  1470. \depth 
  1471.  
  1472. \totalheight 
  1473.  
  1474. These length parameters can be used in the arguments of the box-making commands 
  1475. See Spaces & Boxes. They specify the natural width etc. of the text in the box. 
  1476. \totalheight equals \height + \depth. To make a box with the text stretched to 
  1477. double the natural size, e.g., say 
  1478.  
  1479. \makebox[2\width]{Get a stretcher} 
  1480.  
  1481.  
  1482. ΓòÉΓòÉΓòÉ 4.9. Letters ΓòÉΓòÉΓòÉ
  1483.  
  1484. You can use LaTeX to typeset letters, both personal and business.  The letter 
  1485. document class is designed to make a number of letters at once, although you 
  1486. can make just one if you so desire. 
  1487.  
  1488. Your `.tex' source file has the same minimum commands as the other document 
  1489. classes, i.e., you must have the following commands as a minimum: 
  1490.  
  1491.  \documentclass{letter}
  1492.  \begin{document}
  1493.   ... letters ...
  1494.  \end{document}
  1495.  
  1496. Each letter is a letter environment, whose argument is the name and address of 
  1497. the recipient.  For example, you might have: 
  1498.  
  1499.  \begin{letter}{Mr. Joe Smith\\ 2345 Princess St.
  1500.       \\ Edinburgh, EH1 1AA}
  1501.    ...
  1502.  \end{letter}
  1503.  
  1504. The letter itself begins with the \opening command.  The text of the letter 
  1505. follows.  It is typed as ordinary LaTeX input.  Commands that make no sense in 
  1506. a letter, like \chapter, do not work.  The letter closes with a \closing 
  1507. command. 
  1508.  
  1509. After the closing, you can have additional material.  The \cc command produces 
  1510. the usual ``cc: ...''.  There's also a similar \encl command for a list of 
  1511. enclosures. With both these commands, use \\ to separate the items. 
  1512.  
  1513. These commands are used with the letter class: 
  1514.  
  1515.  
  1516. ΓòÉΓòÉΓòÉ 4.9.1. \address ΓòÉΓòÉΓòÉ
  1517.  
  1518. \address{Return address} 
  1519.  
  1520. The return address, as it should appear on the letter and the envelope. 
  1521. Separate lines of the address should be separated by \\ commands. If you do not 
  1522. make an \address declaration, then the letter will be formatted for copying 
  1523. onto your organisation's standard letterhead. (See Overview, for details on 
  1524. your local implementation).  If you give an \address declaration, then the 
  1525. letter will be formatted as a personal letter. 
  1526.  
  1527.  
  1528. ΓòÉΓòÉΓòÉ 4.9.2. \cc ΓòÉΓòÉΓòÉ
  1529.  
  1530. \cc{Kate Schechter\\Rob McKenna} 
  1531.  
  1532. Generate a list of other persons the letter was sent to. Each name is printed 
  1533. on a separate line. 
  1534.  
  1535.  
  1536. ΓòÉΓòÉΓòÉ 4.9.3. \closing ΓòÉΓòÉΓòÉ
  1537.  
  1538. \closing{text} 
  1539.  
  1540. The letter closes with a \closing command, i.e., 
  1541.  
  1542.  \closing{Best Regards,}
  1543.  
  1544.  
  1545. ΓòÉΓòÉΓòÉ 4.9.4. \encl ΓòÉΓòÉΓòÉ
  1546.  
  1547. \encl{CV\\Certificates} 
  1548.  
  1549. Generate a list of enclosed material. 
  1550.  
  1551.  
  1552. ΓòÉΓòÉΓòÉ 4.9.5. \location ΓòÉΓòÉΓòÉ
  1553.  
  1554. \location{address} 
  1555.  
  1556. This modifies your organisation's standard address.  This only appears if the 
  1557. firstpage pagestyle is selected. 
  1558.  
  1559.  
  1560. ΓòÉΓòÉΓòÉ 4.9.6. \makelabels ΓòÉΓòÉΓòÉ
  1561.  
  1562. \makelabels{number} 
  1563.  
  1564. If you issue this command in the preamble, LaTeX will create a sheet of address 
  1565. labels. This sheet will be output before the letters. 
  1566.  
  1567.  
  1568. ΓòÉΓòÉΓòÉ 4.9.7. \name ΓòÉΓòÉΓòÉ
  1569.  
  1570. \name{June Davenport} 
  1571.  
  1572. Your name, used for printing on the envelope together with the return address. 
  1573.  
  1574.  
  1575. ΓòÉΓòÉΓòÉ 4.9.8. \opening ΓòÉΓòÉΓòÉ
  1576.  
  1577. \opening{text} 
  1578.  
  1579. The letter begins with the \opening command.  The mandatory argument, text, is 
  1580. whatever text you wish to start your letter, i.e., 
  1581.  
  1582.  \opening{Dear Joe,}
  1583.  
  1584.  
  1585. ΓòÉΓòÉΓòÉ 4.9.9. \ps ΓòÉΓòÉΓòÉ
  1586.  
  1587. \ps 
  1588.  
  1589. Use this command before a postscript. 
  1590.  
  1591.  
  1592. ΓòÉΓòÉΓòÉ 4.9.10. \signature ΓòÉΓòÉΓòÉ
  1593.  
  1594. \signature{Harvey Swick} 
  1595.  
  1596. Your name, as it should appear at the end of the letter underneath the space 
  1597. for your signature.  Items that should go on separate lines should be separated 
  1598. by \\ commands. 
  1599.  
  1600.  
  1601. ΓòÉΓòÉΓòÉ 4.9.11. \startbreaks ΓòÉΓòÉΓòÉ
  1602.  
  1603. \startbreaks 
  1604.  
  1605. Used after a \stopbreaks command to allow page breaks again. 
  1606.  
  1607.  
  1608. ΓòÉΓòÉΓòÉ 4.9.12. \stopbreaks ΓòÉΓòÉΓòÉ
  1609.  
  1610. \stopbreaks 
  1611.  
  1612. Inhibit page breaks until a \startbreaks command occurs. 
  1613.  
  1614.  
  1615. ΓòÉΓòÉΓòÉ 4.9.13. \telephone ΓòÉΓòÉΓòÉ
  1616.  
  1617. \telephone{number} 
  1618.  
  1619. This is your telephone number.  This only appears if the firstpage pagestyle is 
  1620. selected. 
  1621.  
  1622.  
  1623. ΓòÉΓòÉΓòÉ 4.10. Line & Page Breaking ΓòÉΓòÉΓòÉ
  1624.  
  1625. The first thing LaTeX does when processing ordinary text is to translate your 
  1626. input file into a string of glyphs and spaces.  To produce a printed document, 
  1627. this string must be broken into lines, and these lines must be broken into 
  1628. pages.  In some environments, you do the line breaking yourself with the \\ 
  1629. command, but LaTeX usually does it for you. 
  1630.  
  1631.  
  1632. ΓòÉΓòÉΓòÉ 4.10.1. \\ ΓòÉΓòÉΓòÉ
  1633.  
  1634. \\[*][extra-space] 
  1635.  
  1636. The \\ command tells LaTeX to start a new line.  It has an optional argument, 
  1637. extra-space, that specifies how much extra vertical space is to be inserted 
  1638. before the next line.  This can be a negative amount. 
  1639.  
  1640. The \\* command is the same as the ordinary \\ command except that it tells 
  1641. LaTeX not to start a new page after the line. 
  1642.  
  1643.  
  1644. ΓòÉΓòÉΓòÉ 4.10.2. \- ΓòÉΓòÉΓòÉ
  1645.  
  1646. The \- command tells LaTeX that it may hyphenate the word at that point.  LaTeX 
  1647. is very good at hyphenating, and it will usually find all correct hyphenation 
  1648. points.  The \- command is used for the exceptional cases. 
  1649.  
  1650. Note that when you insert \- commands in a word, the word will only be 
  1651. hyphenated at those points and not at any of the hyphenation points that LaTeX 
  1652. might otherwise have chosen. 
  1653.  
  1654.  
  1655. ΓòÉΓòÉΓòÉ 4.10.3. \cleardoublepage ΓòÉΓòÉΓòÉ
  1656.  
  1657. The \cleardoublepage command ends the current page and causes all figures and 
  1658. tables that have so far appeared in the input to be printed. In a two-sided 
  1659. printing style, it also makes the next page a right-hand (odd-numbered) page, 
  1660. producing a blank page if necessary. 
  1661.  
  1662.  
  1663. ΓòÉΓòÉΓòÉ 4.10.4. \clearpage ΓòÉΓòÉΓòÉ
  1664.  
  1665. The \clearpage command ends the current page and causes all figures and tables 
  1666. that have so far appeared in the input to be printed. 
  1667.  
  1668.  
  1669. ΓòÉΓòÉΓòÉ 4.10.5. \enlargethispage ΓòÉΓòÉΓòÉ
  1670.  
  1671. \enlargethispage{size} 
  1672.  
  1673. \enlargethispage*{size} 
  1674.  
  1675. Enlarge the \textheight for the current page by the specified amount; e.g. 
  1676. \enlargethispage{\baselineskip} will allow one additional line. 
  1677.  
  1678. The starred form tries to squeeze the material together on the page as much as 
  1679. possible. This is normally used together with an explicit \pagebreak. 
  1680.  
  1681.  
  1682. ΓòÉΓòÉΓòÉ 4.10.6. \fussy ΓòÉΓòÉΓòÉ
  1683.  
  1684. \fussy 
  1685.  
  1686. This declaration (which is the default) makes TeX more fussy about line 
  1687. breaking. This can avoids too much space between words, but may produce 
  1688. overfull boxes. 
  1689.  
  1690. This command cancels the effect of a previous  \sloppy command. \sloppy 
  1691.  
  1692.  
  1693. ΓòÉΓòÉΓòÉ 4.10.7. \hyphenation ΓòÉΓòÉΓòÉ
  1694.  
  1695. \hyphenation{words} 
  1696.  
  1697. The \hyphenation command declares allowed hyphenation points, where words is a 
  1698. list of words, separated by spaces, in which each hyphenation point is 
  1699. indicated by a - character. 
  1700.  
  1701.  
  1702. ΓòÉΓòÉΓòÉ 4.10.8. \linebreak ΓòÉΓòÉΓòÉ
  1703.  
  1704. \linebreak[number] 
  1705.  
  1706. The \linebreak command tells LaTeX to break the current line at the point of 
  1707. the command.  With the optional argument, number, you can convert the 
  1708. \linebreak command from a demand to a request.  The number must be a number 
  1709. from 0 to 4.  The higher the number, the more insistent the request is. 
  1710.  
  1711. The \linebreak command causes LaTeX to stretch the line so it extends to the 
  1712. right margin. 
  1713.  
  1714.  
  1715. ΓòÉΓòÉΓòÉ 4.10.9. \newline ΓòÉΓòÉΓòÉ
  1716.  
  1717. The \newline command breaks the line right where it is. It can only be used in 
  1718. paragraph mode. 
  1719.  
  1720.  
  1721. ΓòÉΓòÉΓòÉ 4.10.10. \newpage ΓòÉΓòÉΓòÉ
  1722.  
  1723. The \newpage command ends the current page. 
  1724.  
  1725.  
  1726. ΓòÉΓòÉΓòÉ 4.10.11. \nolinebreak ΓòÉΓòÉΓòÉ
  1727.  
  1728. \nolinebreak[number] 
  1729.  
  1730. The \nolinebreak command prevents LaTeX from breaking the current line at the 
  1731. point of the command.  With the optional argument, number, you can convert the 
  1732. \nolinebreak command from a demand to a request.  The number must be a number 
  1733. from 0 to 4.  The higher the number, the more insistent the request is. 
  1734.  
  1735.  
  1736. ΓòÉΓòÉΓòÉ 4.10.12. \nopagebreak ΓòÉΓòÉΓòÉ
  1737.  
  1738. \nopagebreak[number] 
  1739.  
  1740. The \nopagebreak command prevents LaTeX from breaking the current page at the 
  1741. point of the command.  With the optional argument, number, you can convert the 
  1742. \nopagebreak command from a demand to a request.  The number must be a number 
  1743. from 0 to 4.  The higher the number, the more insistent the request is. 
  1744.  
  1745.  
  1746. ΓòÉΓòÉΓòÉ 4.10.13. \pagebreak ΓòÉΓòÉΓòÉ
  1747.  
  1748. \pagebreak[number] 
  1749.  
  1750. The \pagebreak command tells LaTeX to break the current page at the point of 
  1751. the command.  With the optional argument, number, you can convert the 
  1752. \pagebreak command from a demand to a request.  The number must be a number 
  1753. from 0 to 4.  The higher the number, the more insistent the request is. 
  1754.  
  1755.  
  1756. ΓòÉΓòÉΓòÉ 4.10.14. \sloppy ΓòÉΓòÉΓòÉ
  1757.  
  1758. \sloppy 
  1759.  
  1760. This declaration makes TeX less fussy about line breaking. This can prevent 
  1761. overfull boxes, but may leave too much space between words. 
  1762.  
  1763. Lasts until a \fussy command is issued. \fussy. 
  1764.  
  1765.  
  1766. ΓòÉΓòÉΓòÉ 4.11. Making Paragraphs ΓòÉΓòÉΓòÉ
  1767.  
  1768. A paragraph is ended by one or more completely blank lines --- lines not 
  1769. containing even a %.  A blank line should not appear where a new paragraph 
  1770. cannot be started, such as in math mode or in the argument of a sectioning 
  1771. command. 
  1772.  
  1773.  
  1774. ΓòÉΓòÉΓòÉ 4.11.1. \indent ΓòÉΓòÉΓòÉ
  1775.  
  1776. \indent 
  1777.  
  1778. This produces a horizontal space whose width equals the width of the paragraph 
  1779. indentation.  It is used to add paragraph indentation where it would otherwise 
  1780. be suppressed. 
  1781.  
  1782.  
  1783. ΓòÉΓòÉΓòÉ 4.11.2. \noindent ΓòÉΓòÉΓòÉ
  1784.  
  1785. \noindent 
  1786.  
  1787. When used at the beginning of the paragraph, it suppresses the paragraph 
  1788. indentation.  It has no effect when used in the middle of a paragraph. 
  1789.  
  1790.  
  1791. ΓòÉΓòÉΓòÉ 4.11.3. \par ΓòÉΓòÉΓòÉ
  1792.  
  1793. Equivalent to a blank line; often used to make command or environment 
  1794. definitions easier to read. 
  1795.  
  1796.  
  1797. ΓòÉΓòÉΓòÉ 4.12. Margin Notes ΓòÉΓòÉΓòÉ
  1798.  
  1799. The command \marginpar[left]{right} creates a note in the margin. The first 
  1800. line will be at the same height as the line in the text where the \marginpar 
  1801. occurs. 
  1802.  
  1803. When you only specify the mandatory argument right, the text will be placed 
  1804.  
  1805.      in the right margin for one-sided layout 
  1806.  
  1807.      in the outside margin for two-sided layout 
  1808.  
  1809.      in the nearest margin for two-column layout. 
  1810.  
  1811.  By issuing the command \reversemarginpar, you can force the marginal notes to 
  1812.  go into the opposite (inside) margin. 
  1813.  
  1814.  When you specify both arguments, left is used for the left margin, and right 
  1815.  is used for the right margin. 
  1816.  
  1817.  The first word will normally not be hyphenated; you can enable hyphenation by 
  1818.  prefixing the first word with a \hspace{0pt} command. 
  1819.  
  1820.  
  1821. ΓòÉΓòÉΓòÉ 4.13. Math Formulae ΓòÉΓòÉΓòÉ
  1822.  
  1823. There are three environments that put LaTeX in math mode: 
  1824.  
  1825.  math 
  1826.            For Formulae that appear right in the text. 
  1827.  
  1828.  displaymath 
  1829.            For Formulae that appear on their own line. 
  1830.  
  1831.  equation 
  1832.            The same as the displaymath environment except that it adds an 
  1833.            equation number in the right margin. 
  1834.  
  1835.  The math environment can be used in both paragraph and LR mode, but the 
  1836.  displaymath and equation environments can be used only in paragraph mode.  The 
  1837.  math and displaymath environments are used so often that they have the 
  1838.  following short forms: 
  1839.  
  1840.       \(...\)     instead of     \begin{math}...\end{math}
  1841.  
  1842.       \[...\]     instead of     \begin{displaymath}...\end{displaymath}
  1843.  
  1844.  In fact, the math environment is so common that it has an even shorter form: 
  1845.  
  1846.       $ ... $     instead of     \(...\)
  1847.  
  1848.  
  1849. ΓòÉΓòÉΓòÉ 4.13.1. Subscripts & Superscripts ΓòÉΓòÉΓòÉ
  1850.  
  1851. To get an expression exp to appear as a subscript, you just type _{exp}.  To 
  1852. get exp to appear as a superscript, you type ^{exp}. LaTeX handles 
  1853. superscripted superscripts and all of that stuff in the natural way.  It even 
  1854. does the right thing when something has both a subscript and a superscript. 
  1855.  
  1856.  
  1857. ΓòÉΓòÉΓòÉ 4.13.2. Math Symbols ΓòÉΓòÉΓòÉ
  1858.  
  1859. LaTeX provides almost any mathematical symbol you're likely to need. The 
  1860. commands for generating them can be used only in math mode.  For example, if 
  1861. you include $\pi$ in your source, you will get the symbol ``pi'' in your 
  1862. output. 
  1863.  
  1864.  
  1865. ΓòÉΓòÉΓòÉ 4.13.3. Spacing in Math Mode ΓòÉΓòÉΓòÉ
  1866.  
  1867. In a math environment, LaTeX ignores the spaces you type and puts in the 
  1868. spacing that it thinks is best.  LaTeX formats mathematics the way it's done in 
  1869. mathematics texts.  If you want different spacing, LaTeX provides the following 
  1870. four commands for use in math mode: 
  1871.  
  1872.    1. \; - a thick space 
  1873.  
  1874.    2. \: - a medium space 
  1875.  
  1876.    3. \, - a thin space 
  1877.  
  1878.    4. \! - a negative thin space 
  1879.  
  1880.  
  1881. ΓòÉΓòÉΓòÉ 4.13.4. Math Miscellany ΓòÉΓòÉΓòÉ
  1882.  
  1883.  \cdots 
  1884.            Produces a horizontal ellipsis where the dots are raised to the 
  1885.            centre of the line. 
  1886.  
  1887.  \ddots 
  1888.            Produces a diagonal ellipsis. 
  1889.  
  1890.  \frac{num}{den} 
  1891.            Produces the fraction num divided by den. 
  1892.  
  1893.  \ldots 
  1894.            Produces an ellipsis.  This command works in any mode, not just math 
  1895.            mode. 
  1896.  
  1897.  \overbrace{text} 
  1898.            Generates a brace over text. 
  1899.  
  1900.  \overline{text} 
  1901.            Causes the argument text to be overlined. 
  1902.  
  1903.  \sqrt[root]{arg} 
  1904.            Produces the square root of its argument.  The optional argument, 
  1905.            root, determines what root to produce, i.e., the cube root of x+y 
  1906.            would be typed as $\sqrt[3]{x+y}$. 
  1907.  
  1908.  \underbrace{text} 
  1909.            Generates text with a brace underneath. 
  1910.  
  1911.  \underline{text} 
  1912.            Causes the argument text to be underlined. This command can also be 
  1913.            used in paragraph and LR modes. 
  1914.  
  1915.  \vdots 
  1916.            Produces a vertical ellipsis. 
  1917.  
  1918.  
  1919. ΓòÉΓòÉΓòÉ 4.14. Modes ΓòÉΓòÉΓòÉ
  1920.  
  1921. When LaTeX is processing your input text, it is always in one of three modes: 
  1922.  
  1923.      Paragraph mode 
  1924.  
  1925.      Math mode 
  1926.  
  1927.      Left-to-right mode, called LR mode for short 
  1928.  
  1929.  LaTeX changes mode only when it goes up or down a staircase to a different 
  1930.  level, though not all level changes produce mode changes. Mode changes occur 
  1931.  only when entering or leaving an environment, or when LaTeX is processing the 
  1932.  argument of certain text-producing commands. 
  1933.  
  1934.  ``Paragraph mode'' is the most common; it's the one LaTeX is in when 
  1935.  processing ordinary text.  In that mode, LaTeX breaks your text into lines and 
  1936.  breaks the lines into pages.  LaTeX is in ``math mode'' when it's generating a 
  1937.  mathematical formula.  In ``LR mode'', as in paragraph mode, LaTeX considers 
  1938.  the output that it produces to be a string of words with spaces between them. 
  1939.  However, unlike paragraph mode, LaTeX keeps going from left to right; it never 
  1940.  starts a new line in LR mode. Even if you put a hundred words into an \mbox, 
  1941.  LaTeX would keep typesetting them from left to right inside a single box, and 
  1942.  then complain because the resulting box was too wide to fit on the line. 
  1943.  
  1944.  LaTeX is in LR mode when it starts making a box with an \mbox command.  You 
  1945.  can get it to enter a different mode inside the box - for example, you can 
  1946.  make it enter math mode to put a formula in the box. There are also several 
  1947.  text-producing commands and environments for making a box that put LaTeX in 
  1948.  paragraph mode.  The box make by one of these commands or environments will be 
  1949.  called a parbox.  When LaTeX is in paragraph mode while making a box, it is 
  1950.  said to be in ``inner paragraph mode''.  Its normal paragraph mode, which it 
  1951.  starts out in, is called ``outer paragraph mode''. 
  1952.  
  1953.  
  1954. ΓòÉΓòÉΓòÉ 4.15. Page Styles ΓòÉΓòÉΓòÉ
  1955.  
  1956. The \documentclass command determines the size and position of the page's head 
  1957. and foot.  The page style determines what goes in them. 
  1958.  
  1959.  
  1960. ΓòÉΓòÉΓòÉ 4.15.1. \maketitle ΓòÉΓòÉΓòÉ
  1961.  
  1962. \maketitle 
  1963.  
  1964. The \maketitle command generates a title on a separate title page - except in 
  1965. the article class, where the title normally goes at the top of the first page. 
  1966. Information used to produce the title is obtained from the following 
  1967. declarations: 
  1968.  
  1969. See Page Styles for the commands to give the information. 
  1970.  
  1971.  
  1972. ΓòÉΓòÉΓòÉ 4.15.2. \author ΓòÉΓòÉΓòÉ
  1973.  
  1974. \author{names} 
  1975.  
  1976. The \author command declares the author(s), where names is a list of authors 
  1977. separated by \and commands.  Use \\ to separate lines within a single author's 
  1978. entry -- for example, to give the author's institution or address. 
  1979.  
  1980.  
  1981. ΓòÉΓòÉΓòÉ 4.15.3. \date ΓòÉΓòÉΓòÉ
  1982.  
  1983. \date{text} 
  1984.  
  1985. The \date command declares text to be the document's date.  With no \date 
  1986. command, the current date is used. 
  1987.  
  1988.  
  1989. ΓòÉΓòÉΓòÉ 4.15.4. \thanks ΓòÉΓòÉΓòÉ
  1990.  
  1991. \thanks{text} 
  1992.  
  1993. The \thanks command produces a \footnote to the title. 
  1994.  
  1995.  
  1996. ΓòÉΓòÉΓòÉ 4.15.5. \title ΓòÉΓòÉΓòÉ
  1997.  
  1998. \title{text} 
  1999.  
  2000. The \title command declares text to be the title.  Use \\ to tell LaTeX where 
  2001. to start a new line in a long title. 
  2002.  
  2003.  
  2004. ΓòÉΓòÉΓòÉ 4.15.6. \pagenumbering ΓòÉΓòÉΓòÉ
  2005.  
  2006. \pagenumbering{num_style} 
  2007.  
  2008. Specifies the style of page numbers.  Possible values of num_style are: 
  2009.  
  2010.      arabic - Arabic numerals 
  2011.  
  2012.      roman - Lowercase Roman numerals 
  2013.  
  2014.      Roman - Uppercase Roman numerals 
  2015.  
  2016.      alph - Lowercase letters 
  2017.  
  2018.      Alph - Uppercase letters 
  2019.  
  2020.  
  2021. ΓòÉΓòÉΓòÉ 4.15.7. \pagestyle ΓòÉΓòÉΓòÉ
  2022.  
  2023. \pagestyle{option} 
  2024.  
  2025. The \pagestyle command changes the style from the current page on throughout 
  2026. the remainder of your document. 
  2027.  
  2028. The valid options are: 
  2029.  
  2030.      plain - Just a plain page number. 
  2031.  
  2032.      empty - Produces empty heads and feet - no page numbers. 
  2033.  
  2034.      headings - Puts running headings on each page.  The document style 
  2035.       specifies what goes in the headings. 
  2036.  
  2037.      myheadings - You specify what is to go in the heading with the \markboth 
  2038.       or the \markright commands. 
  2039.  
  2040.  
  2041. ΓòÉΓòÉΓòÉ 4.15.8. \markboth ΓòÉΓòÉΓòÉ
  2042.  
  2043. \markboth{left head}{right head}
  2044.  
  2045. The \markboth command is used in conjunction with the page style myheadings for 
  2046. setting both the left and the right heading.  You should note that a 
  2047. ``left-hand heading'' is generated by the last \markboth command before the end 
  2048. of the page, while a ``right-hand heading'' is generated by the first \markboth 
  2049. or \markright that comes on the page if there is one, otherwise by the last one 
  2050. before the page. 
  2051.  
  2052.  
  2053. ΓòÉΓòÉΓòÉ 4.15.9. \markright ΓòÉΓòÉΓòÉ
  2054.  
  2055. \markright{right head}
  2056.  
  2057. The \markright command is used in conjunction with the page style myheadings 
  2058. for setting the right heading, leaving the left heading unchanged.  You should 
  2059. note that a ``left-hand heading'' is generated by the last \markboth command 
  2060. before the end of the page, while a ``right-hand heading'' is generated by the 
  2061. first \markboth or \markright that comes on the page if there is one, otherwise 
  2062. by the last one before the page. 
  2063.  
  2064.  
  2065. ΓòÉΓòÉΓòÉ 4.15.10. \thispagestyle ΓòÉΓòÉΓòÉ
  2066.  
  2067. \thispagestyle{option} 
  2068.  
  2069. The \thispagestyle command works in the same manner as the \pagestyle command 
  2070. except that it changes the style for the current page only. 
  2071.  
  2072.  
  2073. ΓòÉΓòÉΓòÉ 4.16. Sectioning ΓòÉΓòÉΓòÉ
  2074.  
  2075. Sectioning commands provide the means to structure your text into units. 
  2076.  
  2077.      \part 
  2078.  
  2079.      \chapter (report and book class only) 
  2080.  
  2081.      \section 
  2082.  
  2083.      \subsection 
  2084.  
  2085.      \subsubsection 
  2086.  
  2087.      \paragraph 
  2088.  
  2089.      \subparagraph 
  2090.  
  2091.  All sectioning commands take the same general form, i.e., 
  2092.  
  2093.  \chapter[optional]{title} 
  2094.  
  2095.  In addition to providing the heading in the text, the mandatory argument of 
  2096.  the sectioning command can appear in two other places: 
  2097.  
  2098.    1. The table of contents 
  2099.  
  2100.    2. The running head at the top of the page 
  2101.  
  2102.  You may not want the same thing to appear in these other two places as appears 
  2103.  in the text heading.  To handle this situation, the sectioning commands have 
  2104.  an optional argument that provides the text for these other two purposes. 
  2105.  
  2106.  All sectioning commands have *-forms that print a title, but do not include a 
  2107.  number and do not make an entry in the table of contents. 
  2108.  
  2109.  \appendix 
  2110.  
  2111.  The \appendix command changes the way sectional units are numbered.  The 
  2112.  \appendix command generates no text and does not affect the numbering of 
  2113.  parts. The normal use of this command is something like 
  2114.  
  2115.   \chapter{The First Chapter}
  2116.   ...
  2117.   \appendix
  2118.   \chapter{The First Appendix}
  2119.  
  2120.  
  2121. ΓòÉΓòÉΓòÉ 4.17. Spaces & Boxes ΓòÉΓòÉΓòÉ
  2122.  
  2123. All the predefined length parameters See Predefined lengths can be used in the 
  2124. arguments of the box-making commands. 
  2125.  
  2126.  
  2127. ΓòÉΓòÉΓòÉ 4.17.1. \dotfill ΓòÉΓòÉΓòÉ
  2128.  
  2129. The \dotfill command produces a ``rubber length'' that produces dots instead of 
  2130. just spaces. 
  2131.  
  2132.  
  2133. ΓòÉΓòÉΓòÉ 4.17.2. \hfill ΓòÉΓòÉΓòÉ
  2134.  
  2135. The \hfill fill command produces a ``rubber length'' which can stretch or 
  2136. shrink horizontally.  It will be filled with spaces. 
  2137.  
  2138.  
  2139. ΓòÉΓòÉΓòÉ 4.17.3. \hrulefill ΓòÉΓòÉΓòÉ
  2140.  
  2141. The \hrulefill fill command produces a ``rubber length'' which can stretch or 
  2142. shrink horizontally.  It will be filled with a horizontal rule. 
  2143.  
  2144.  
  2145. ΓòÉΓòÉΓòÉ 4.17.4. \hspace ΓòÉΓòÉΓòÉ
  2146.  
  2147. \hspace[*]{length} 
  2148.  
  2149. The \hspace command adds horizontal space.  The length of the space can be 
  2150. expressed in any terms that LaTeX understands, i.e., points, inches, etc.  You 
  2151. can add negative as well as positive space with an \hspace command.  Adding 
  2152. negative space is like backspacing. 
  2153.  
  2154. LaTeX removes horizontal space that comes at the end of a line.  If you don't 
  2155. want LaTeX to remove this space, include the optional * argument.  Then the 
  2156. space is never removed. 
  2157.  
  2158.  
  2159. ΓòÉΓòÉΓòÉ 4.17.5. \addvspace ΓòÉΓòÉΓòÉ
  2160.  
  2161. \addvspace{length} 
  2162.  
  2163. The \addvspace command normally adds a vertical space of height length. 
  2164. However, if vertical space has already been added to the same point in the 
  2165. output by a previous \addvspace command, then this command will not add more 
  2166. space than needed to make the natural length of the total vertical space equal 
  2167. to length. 
  2168.  
  2169.  
  2170. ΓòÉΓòÉΓòÉ 4.17.6. \bigskip ΓòÉΓòÉΓòÉ
  2171.  
  2172. The \bigskip command is equivalent to \vspace{bigskipamount} where 
  2173. bigskipamount is determined by the document class. 
  2174.  
  2175.  
  2176. ΓòÉΓòÉΓòÉ 4.17.7. \medskip ΓòÉΓòÉΓòÉ
  2177.  
  2178. The \medskip command is equivalent to \vspace{medskipamount} where 
  2179. medskipamount is determined by the document class. 
  2180.  
  2181.  
  2182. ΓòÉΓòÉΓòÉ 4.17.8. \smallskip ΓòÉΓòÉΓòÉ
  2183.  
  2184. \smallskip 
  2185.  
  2186. The \smallskip command is equivalent to \vspace{smallskipamount} where 
  2187. smallskipamount is determined by the document class. 
  2188.  
  2189.  
  2190. ΓòÉΓòÉΓòÉ 4.17.9. \vfill ΓòÉΓòÉΓòÉ
  2191.  
  2192. The \vfill fill command produces a rubber length which can stretch or shrink 
  2193. vertically. 
  2194.  
  2195.  
  2196. ΓòÉΓòÉΓòÉ 4.17.10. \vspace ΓòÉΓòÉΓòÉ
  2197.  
  2198. \vspace[*]{length} 
  2199.  
  2200. The \vspace command adds vertical space.  The length of the space can be 
  2201. expressed in any terms that LaTeX understands, i.e., points, inches, etc.  You 
  2202. can add negative as well as positive space with an \vspace command. 
  2203.  
  2204. LaTeX removes vertical space that comes at the end of a page.  If you don't 
  2205. want LaTeX to remove this space, include the optional * argument.  Then the 
  2206. space is never removed. 
  2207.  
  2208.  
  2209. ΓòÉΓòÉΓòÉ 4.17.11. \fbox ΓòÉΓòÉΓòÉ
  2210.  
  2211. \fbox{text} 
  2212.  
  2213. The \fbox command is exactly the same as the \mbox command, except that it puts 
  2214. a frame around the outside of the box that it creates. 
  2215.  
  2216.  
  2217. ΓòÉΓòÉΓòÉ 4.17.12. \framebox ΓòÉΓòÉΓòÉ
  2218.  
  2219. \framebox[width][position]{text} 
  2220.  
  2221. The \framebox command is exactly the same as the \makebox command, except that 
  2222. it puts a frame around the outside of the box that it creates. 
  2223.  
  2224. The framebox command produces a rule of thickness \fboxrule, and leaves a space 
  2225. \fboxsep between the rule and the contents of the box. 
  2226.  
  2227.  
  2228. ΓòÉΓòÉΓòÉ 4.17.13. lrbox ΓòÉΓòÉΓòÉ
  2229.  
  2230. \begin{lrbox}{cmd} text \end{lrbox} 
  2231.  
  2232. This is the environment form of \sbox. 
  2233.  
  2234. The text inside the environment is saved in the box cmd, which must have been 
  2235. declared with \newsavebox. 
  2236.  
  2237.  
  2238. ΓòÉΓòÉΓòÉ 4.17.14. \makebox ΓòÉΓòÉΓòÉ
  2239.  
  2240. \makebox[width][position]{text} 
  2241.  
  2242. The \makebox command creates a box just wide enough to contain the text 
  2243. specified.  The width of the box is specified by the optional width argument. 
  2244. The position of the text within the box is determined by the optional position 
  2245. argument. 
  2246.  
  2247.      c --- centred (default) 
  2248.  
  2249.      l --- flushleft 
  2250.  
  2251.      r --- flushright 
  2252.  
  2253.      s --- stretch from left to right margin. The text must contain 
  2254.       stretchable space for this to work. 
  2255.  
  2256.  See \makebox (picture). 
  2257.  
  2258.  
  2259. ΓòÉΓòÉΓòÉ 4.17.15. \mbox ΓòÉΓòÉΓòÉ
  2260.  
  2261. \mbox{text} 
  2262.  
  2263. The \mbox command creates a box just wide enough to hold the text created by 
  2264. its argument. 
  2265.  
  2266. Use this command to prevent text from being split across lines. 
  2267.  
  2268.  
  2269. ΓòÉΓòÉΓòÉ 4.17.16. \newsavebox ΓòÉΓòÉΓòÉ
  2270.  
  2271. \newsavebox{cmd} 
  2272.  
  2273. Declares cmd, which must be a command name that is not already defined, to be a 
  2274. bin for saving boxes. 
  2275.  
  2276.  
  2277. ΓòÉΓòÉΓòÉ 4.17.17. \parbox ΓòÉΓòÉΓòÉ
  2278.  
  2279. \parbox[position][height][inner-pos]{width}{text} 
  2280.  
  2281. A parbox is a box whose contents are created in paragraph mode.  The \parbox 
  2282. has two mandatory arguments: 
  2283.  
  2284.      width - specifies the width of the parbox, and 
  2285.  
  2286.      text - the text that goes inside the parbox. 
  2287.  
  2288.  LaTeX will position a parbox so its centre lines up with the centre of the 
  2289.  text line.  The optional position argument allows you to line up either the 
  2290.  top or bottom line in the parbox (default is top). 
  2291.  
  2292.  If the height argument is not given, the box will have the natural height of 
  2293.  the text. 
  2294.  
  2295.  The inner-pos argument controls the placement of the text inside the box. If 
  2296.  it is not specified, position is used. 
  2297.  
  2298.      t --- text is placed at the top of the box. 
  2299.  
  2300.      c --- text is centred in the box. 
  2301.  
  2302.      b --- text is placed at the bottom of the box. 
  2303.  
  2304.      s --- stretch vertically. The text must contain vertically stretchable 
  2305.       space for this to work. 
  2306.  
  2307.  A \parbox command is used for a parbox containing a small piece of text, with 
  2308.  nothing fancy inside.  In particular, you shouldn't use any of the 
  2309.  paragraph-making environments inside a \parbox argument.  For larger pieces of 
  2310.  text, including ones containing a paragraph-making environment, you should use 
  2311.  a minipage environment See minipage. 
  2312.  
  2313.  
  2314. ΓòÉΓòÉΓòÉ 4.17.18. \raisebox ΓòÉΓòÉΓòÉ
  2315.  
  2316. \raisebox{distance}[extend-above][extend-below]{text} 
  2317.  
  2318. The \raisebox command is used to raise or lower text.  The first mandatory 
  2319. argument specifies how high the text is to be raised (or lowered if it is a 
  2320. negative amount).  The text itself is processed in LR mode. 
  2321.  
  2322. Sometimes it's useful to make LaTeX think something has a different size than 
  2323. it really does - or a different size than LaTeX would normally think it has. 
  2324. The \raisebox command lets you tell LaTeX how tall it is. 
  2325.  
  2326. The first optional argument, extend-above, makes LaTeX think that the text 
  2327. extends above the line by the amount specified.  The second optional argument, 
  2328. extend-below, makes LaTeX think that the text extends below the line by the 
  2329. amount specified. 
  2330.  
  2331.  
  2332. ΓòÉΓòÉΓòÉ 4.17.19. \rule ΓòÉΓòÉΓòÉ
  2333.  
  2334. \rule[raise-height]{width}{thickness} 
  2335.  
  2336. The \rule command is used to produce horizontal lines.  The arguments are 
  2337. defined as follows: 
  2338.  
  2339.      raise-height - specifies how high to raise the rule (optional) 
  2340.  
  2341.      width - specifies the length of the rule (mandatory) 
  2342.  
  2343.      thickness - specifies the thickness of the rule (mandatory) 
  2344.  
  2345.  
  2346. ΓòÉΓòÉΓòÉ 4.17.20. \savebox ΓòÉΓòÉΓòÉ
  2347.  
  2348.  \savebox{cmd}[width][pos]{text}
  2349.  
  2350. This command typeset text in a box just as for \makebox. However, instead of 
  2351. printing the resulting box, it saves it in bin cmd, which must have been 
  2352. declared with \newsavebox. 
  2353.  
  2354.  
  2355. ΓòÉΓòÉΓòÉ 4.17.21. \sbox ΓòÉΓòÉΓòÉ
  2356.  
  2357. \sbox{text} 
  2358.  
  2359. This commands typeset text in a box just as for \mbox. However, instead of 
  2360. printing the resulting box, it saves it in bin cmd, which must have been 
  2361. declared with \newsavebox. 
  2362.  
  2363.  
  2364. ΓòÉΓòÉΓòÉ 4.17.22. \usebox ΓòÉΓòÉΓòÉ
  2365.  
  2366. \usebox{cmd} 
  2367.  
  2368. Prints the box most recently saved in bin cmd by a \savebox command. 
  2369.  
  2370.  
  2371. ΓòÉΓòÉΓòÉ 4.18. Special Characters ΓòÉΓòÉΓòÉ
  2372.  
  2373. The following characters play a special role in LaTeX and are called ``special 
  2374. printing characters'', or simply ``special characters''. 
  2375.  
  2376.                        # $ % & ~ _ ^ \ { }
  2377.  
  2378. Whenever you put one of these special characters into your file, you are doing 
  2379. something special.  If you simply want the character to be printed just as any 
  2380. other letter, include a \ in front of the character. For example, \$ will 
  2381. produce $ in your output. 
  2382.  
  2383. One exception to this rule is the \ itself because \\ has its own special 
  2384. meaning.  A \ is produced by typing $\backslash$ in your file. 
  2385.  
  2386. Also, \~ means `place a tilde accent over the following letter', so you will 
  2387. probably want to use \verb instead. 
  2388.  
  2389. In addition, you can access any character of a font once you know its number by 
  2390. using the \symbol command. For example, the character used for displaying 
  2391. spaces in the \verb* command has the code decimal 32, so it can be typed as 
  2392. \symbol{32}. 
  2393.  
  2394. You can also specify octal numbers with ' or hexadecimal numbers with ", so the 
  2395. previous example could also be written as \symbol{'40} or \symbol{"20}. 
  2396.  
  2397.  
  2398. ΓòÉΓòÉΓòÉ 4.19. Splitting the Input ΓòÉΓòÉΓòÉ
  2399.  
  2400. A large document requires a lot of input.  Rather than putting the whole input 
  2401. in a single large file, it's more efficient to split it into several smaller 
  2402. ones.  Regardless of how many separate files you use, there is one that is the 
  2403. root file; it is the one whose name you type when you run LaTeX. 
  2404.  
  2405.  
  2406. ΓòÉΓòÉΓòÉ 4.19.1. \include ΓòÉΓòÉΓòÉ
  2407.  
  2408. \include{file} 
  2409.  
  2410. The \include command is used in conjunction with the \includeonly command for 
  2411. selective inclusion of files.  The file argument is the first name of a file, 
  2412. denoting `file.tex'.  If file is one the file names in the file list of the 
  2413. \includeonly command or if there is no \includeonly command, the \include 
  2414. command is equivalent to 
  2415.  
  2416. \clearpage \input{file} \clearpage
  2417.  
  2418. except that if the file `file.tex' does not exist, then a warning message 
  2419. rather than an error is produced.  If the file is not in the file list, the 
  2420. \include command is equivalent to \clearpage. 
  2421.  
  2422. The \include command may not appear in the preamble or in a file read by 
  2423. another \include command. 
  2424.  
  2425.  
  2426. ΓòÉΓòÉΓòÉ 4.19.2. \includeonly ΓòÉΓòÉΓòÉ
  2427.  
  2428. \includeonly{file_list} 
  2429.  
  2430. The \includeonly command controls which files will be read in by an \include 
  2431. command.  file_list should be a comma-separated list of filenames. Each 
  2432. filename must match exactly a filename specified in a \include command. This 
  2433. command can only appear in the preamble. 
  2434.  
  2435.  
  2436. ΓòÉΓòÉΓòÉ 4.19.3. \input ΓòÉΓòÉΓòÉ
  2437.  
  2438. \input{file} 
  2439.  
  2440. The \input command causes the indicated file to be read and processed, exactly 
  2441. as if its contents had been inserted in the current file at that point.  The 
  2442. file name may be a complete file name with extension or just a first name, in 
  2443. which case the file `file.tex' is used. 
  2444.  
  2445.  
  2446. ΓòÉΓòÉΓòÉ 4.20. Starting & Ending ΓòÉΓòÉΓòÉ
  2447.  
  2448. Your input file must contain the following commands as a minimum: 
  2449.  
  2450.  \documentclass{class}
  2451.  \begin{document}
  2452.    ... your text goes here ...
  2453.  \end{document}
  2454.  
  2455. where the class selected is one of the valid classes for LaTeX. See Document 
  2456. Classes (and see Overview), for details of the various document classes 
  2457. available locally. 
  2458.  
  2459. You may include other LaTeX commands between the \documentclass and the 
  2460. \begin{document} commands (i.e., in the `preamble'). 
  2461.  
  2462.  
  2463. ΓòÉΓòÉΓòÉ 4.21. Table of Contents ΓòÉΓòÉΓòÉ
  2464.  
  2465. A table of contents is produced with the \tableofcontents command. You put the 
  2466. command right where you want the table of contents to go; LaTeX does the rest 
  2467. for you.  It produces a heading, but it does not automatically start a new 
  2468. page.  If you want a new page after the table of contents, include a \newpage 
  2469. command after the \tableofcontents command. 
  2470.  
  2471. There are similar commands \listoffigures and \listoftables  for producing a 
  2472. list of figures and a list of tables, respectively. Everything works exactly 
  2473. the same as for the table of contents. 
  2474.  
  2475. NOTE: If you want any of these items to be generated, you cannot have the 
  2476. \nofiles command in your document. 
  2477.  
  2478.  
  2479. ΓòÉΓòÉΓòÉ 4.21.1. \addcontentsline ΓòÉΓòÉΓòÉ
  2480.  
  2481. \addcontentsline{file}{sec_unit}{entry} 
  2482.  
  2483. The \addcontentsline command adds an entry to the specified list or table 
  2484. where: 
  2485.  
  2486.      file is the extension of the file on which information is to be written: 
  2487.       toc (table of contents), lof (list of figures), or lot (list of tables). 
  2488.  
  2489.      sec_unit controls the formatting of the entry.  It should be one of the 
  2490.       following, depending upon the value of the file argument: 
  2491.  
  2492.         1. toc --- the name of the sectional unit, such as part or subsection. 
  2493.  
  2494.         2. lof --- figure 
  2495.  
  2496.         3. lot --- table 
  2497.  
  2498.      entry is the text of the entry. 
  2499.  
  2500.  
  2501. ΓòÉΓòÉΓòÉ 4.21.2. \addtocontents ΓòÉΓòÉΓòÉ
  2502.  
  2503. \addtocontents{file}{text} 
  2504.  
  2505. The \addtocontents command adds text (or formatting commands) directly to the 
  2506. file that generates the table of contents or list of figures or tables. 
  2507.  
  2508.      file is the extension of the file on which information is to be written: 
  2509.       toc (table of contents), lof (list of figures), or lot (list of tables). 
  2510.  
  2511.      text is the information to be written. 
  2512.  
  2513.  
  2514. ΓòÉΓòÉΓòÉ 4.22. Terminal Input/Output ΓòÉΓòÉΓòÉ
  2515.  
  2516.  
  2517. ΓòÉΓòÉΓòÉ 4.22.1. \typein ΓòÉΓòÉΓòÉ
  2518.  
  2519. \typein[cmd]{msg} 
  2520.  
  2521. Prints msg on the terminal and causes LaTeX to stop and wait for you to type a 
  2522. line of input, ending with return.  If the cmd argument is missing, the typed 
  2523. input is processed as if it had been included in the input file in place of the 
  2524. \typein command.  If the cmd argument is present, it must be a command name. 
  2525. This command name is then defined or redefined to be the typed input. 
  2526.  
  2527.  
  2528. ΓòÉΓòÉΓòÉ 4.22.2. \typeout ΓòÉΓòÉΓòÉ
  2529.  
  2530. \typeout{msg} 
  2531.  
  2532. Prints msg on the terminal and in the log file.  Commands in msg that are 
  2533. defined with \newcommand or \renewcommand are replaced by their definitions 
  2534. before being printed. 
  2535.  
  2536. LaTeX's usual rules for treating multiple spaces as a single space and ignoring 
  2537. spaces after a command name apply to msg.  A \space command in msg causes a 
  2538. single space to be printed. A ^^J in msg prints a newline. 
  2539.  
  2540.  
  2541. ΓòÉΓòÉΓòÉ 4.23. Typefaces ΓòÉΓòÉΓòÉ
  2542.  
  2543. The typeface is specified by giving the ``size'' and ``style''.  A typeface is 
  2544. also called a ``font''. 
  2545.  
  2546.  
  2547. ΓòÉΓòÉΓòÉ 4.23.1. \Styles ΓòÉΓòÉΓòÉ
  2548.  
  2549. The following type style commands are supported by LaTeX. 
  2550.  
  2551. These commands are used like \textit{italics text}. The corresponding command 
  2552. in parenthesis is the ``declaration form'', which takes no arguments. The scope 
  2553. of the declaration form lasts until the next type style command or the end of 
  2554. the current group. 
  2555.  
  2556. The declaration forms are cumulative; i.e., you can say \sffamily\bfseries to 
  2557. get sans serif boldface. 
  2558.  
  2559. You can also use the environment form of the declaration forms; e.g. 
  2560. \begin{ttfamily}...\end{ttfamily}. 
  2561.  
  2562.  \textrm (\rmfamily) 
  2563.            Roman. 
  2564.  
  2565.  \textit (\itshape) 
  2566.  
  2567.  \emph 
  2568.            Emphasis (toggles between \textit and \textrm). 
  2569.  
  2570.  \textmd (\mdseries) 
  2571.            Medium weight (default). The opposite of boldface. 
  2572.  
  2573.  \textbf (\bfseries) 
  2574.            Boldface. 
  2575.  
  2576.  \textup (\upshape) 
  2577.            Upright (default). The opposite of slanted. 
  2578.  
  2579.  \textsl (\slshape) 
  2580.            Slanted. 
  2581.  
  2582.  \textsf (\sffamily) 
  2583.            Sans serif. 
  2584.  
  2585.  \textsc (\scshape) 
  2586.            Small caps. 
  2587.  
  2588.  \texttt (\ttfamily) 
  2589.            Typewriter. 
  2590.  
  2591.  \textnormal (\normalfont) 
  2592.            Main document font. 
  2593.  
  2594.  \mathrm 
  2595.            Roman, for use in math mode. 
  2596.  
  2597.  \mathbf 
  2598.            Boldface, for use in math mode. 
  2599.  
  2600.  \mathsf 
  2601.            Sans serif, for use in math mode. 
  2602.  
  2603.  \mathtt 
  2604.            Typewriter, for use in math mode. 
  2605.  
  2606.  \mathit 
  2607.            Italics, for use in math mode, e.g. variable names with several 
  2608.            letters. 
  2609.  
  2610.  \mathnormal 
  2611.            For use in math mode, e.g. inside another type style declaration. 
  2612.  
  2613.  \mathcal 
  2614.            `Calligraphic' letters, for use in math mode. 
  2615.  
  2616.  In addition, the command \mathversion{bold} can be used for switching to bold 
  2617.  letters and symbols in formulas. \mathversion{normal} restores the default. 
  2618.  
  2619.  
  2620. ΓòÉΓòÉΓòÉ 4.23.2. Sizes ΓòÉΓòÉΓòÉ
  2621.  
  2622. The following standard type size commands are supported by LaTeX. 
  2623.  
  2624. The commands as listed here are "declaration forms". The scope of the 
  2625. declaration form lasts until the next type style command or the end of the 
  2626. current group. 
  2627.  
  2628. You can also use the environment form of these commands; e.g. 
  2629. \begin{tiny}...\end{tiny}. 
  2630.  
  2631.  \tiny 
  2632.  
  2633.  \scriptsize 
  2634.  
  2635.  \footnotesize 
  2636.  
  2637.  \small 
  2638.  
  2639.  \normalsize 
  2640.            (default) 
  2641.  
  2642.  \large 
  2643.  
  2644.  \Large 
  2645.  
  2646.  \LARGE 
  2647.  
  2648.  \huge 
  2649.  
  2650.  \Huge 
  2651.  
  2652.  
  2653. ΓòÉΓòÉΓòÉ 4.23.3. Low-level font commands ΓòÉΓòÉΓòÉ
  2654.  
  2655. These commands are primarily intended for writers of macros and packages.  The 
  2656. commands listed here are only a subset of the available ones. For full details, 
  2657. you should consult Chapter 7 of The LaTeX Companion. 
  2658.  
  2659.  \fontencoding{enc} 
  2660.            Select font encoding. Valid encodings include OT1 and T1. 
  2661.  
  2662.  \fontfamily{family} 
  2663.            Select font family. Valid families include: 
  2664.  
  2665.                cmr  for Computer Modern Roman 
  2666.  
  2667.                cmss for Computer Modern Sans Serif 
  2668.  
  2669.                cmtt for Computer Modern Typewriter 
  2670.  
  2671.            and numerous others. 
  2672.  
  2673.  \fontseries{series} 
  2674.            Select font series. Valid series include: 
  2675.  
  2676.                m  Medium (normal) 
  2677.  
  2678.                b  Bold 
  2679.  
  2680.                c  Condensed 
  2681.  
  2682.                bc Bold condensed 
  2683.  
  2684.                bx Bold extended 
  2685.  
  2686.            and various other combinations. 
  2687.  
  2688.  \fontshape{shape} 
  2689.            Select font shape. Valid shapes are: 
  2690.  
  2691.                n  Upright (normal) 
  2692.  
  2693.                it Italic 
  2694.  
  2695.                sl Slanted (oblique) 
  2696.  
  2697.                sc Small caps 
  2698.  
  2699.                ui Upright italics 
  2700.  
  2701.                ol Outline 
  2702.  
  2703.            The two last shapes are not available for most font families. 
  2704.  
  2705.  \fontsize{size}{skip} 
  2706.            Set font size. The first parameter is the font size to switch to; 
  2707.            the second is the \baselineskip to use. The unit of both parameters 
  2708.            defaults to pt. A rule of thumb is that the baselineskip should be 
  2709.            1.2 times the font size. 
  2710.  
  2711.  \selectfont 
  2712.            The changes made by calling the four font commands described above 
  2713.            do not come into effect until \selectfont is called. 
  2714.  
  2715.  \usefont{enc}{family}{series}{shape} 
  2716.            Equivalent to calling \fontencoding, \fontfamily, \fontseries and 
  2717.            \fontshape with the given parameters, followed by \selectfont. 
  2718.  
  2719.  
  2720. ΓòÉΓòÉΓòÉ 5. Parameters ΓòÉΓòÉΓòÉ
  2721.  
  2722. The input file specification indicates the file to be formatted; TeX uses 
  2723. `.tex' as a default file extension.  If you omit the input file entirely, TeX 
  2724. accepts input from the terminal.  You specify command options by supplying a 
  2725. string as a parameter to the command; e.g. 
  2726.  
  2727. latex ``\scrollmode\input foo.tex'' 
  2728.  
  2729. will process `foo.tex' without pausing after every error. 
  2730.  
  2731. Output files are always created in the current directory. When you fail to 
  2732. specify an input file name, TeX bases the output names on the file 
  2733. specification associated with the logical name TEX_OUTPUT, typically 
  2734. texput.log. 
  2735.  
  2736.  
  2737. ΓòÉΓòÉΓòÉ 6. Concept Index ΓòÉΓòÉΓòÉ
  2738.  
  2739. Sorry, no cp index 
  2740.  
  2741.  
  2742. ΓòÉΓòÉΓòÉ 7. Command Index ΓòÉΓòÉΓòÉ
  2743.  
  2744. Sorry, no fn index