1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
<html>
<head><title>table</title></head>
<body>
<h1>table</h1>
<P>
</P>
<PRE>
\begin{table}[placement]
body of the table
\caption{table title}
\end{table}
</PRE>
<P>
Tables are objects that are not part of the normal text, and are
usually "floated" to a convenient place, like the top of a page.
Tables will not be split between two pages.
</P>
<P>
The optional argument <CODE>[placement]</CODE> determines where LaTeX will try
to place your table. There are four places where LaTeX can possibly put
a float:
</P>
<UL>
<LI>
<CODE>h</CODE> : Here - at the position in the text where the table
environment appears.
<LI>
<CODE>t</CODE> : Top - at the top of a text page.
<LI>
<CODE>b</CODE> : Bottom - at the bottom of a text page.
<LI>
<CODE>p</CODE> : Page of floats - on a separate float page, which is a page
containing no text, only floats.
</UL>
<P>
The standard <CODE>report</CODE> and <CODE>article</CODE> classes use the default
placement <CODE>[tbp]</CODE>.
</P>
<P>
The body of the table is made up of whatever text, LaTeX commands, etc.,
you wish. The <CODE>\caption</CODE> command allows you to title your table.
</P>
<p>--><a href="index.html">LaTeX index</a>
</body>
</html>
|