Tables in LaTeX
Posted
by rosalia
on Stack Overflow
See other posts from Stack Overflow
or by rosalia
Published on 2010-05-19T02:05:18Z
Indexed on
2010/05/19
2:10 UTC
Read the original article
Hit count: 221
latex
When I try centering my table & getting a caption so that it reads something like "Table 1. This is the caption." the table appears at the top of the page no matter what I do. If I don't do the caption then I can get it in the part of the document that I want. How do I fix this problem?
\begin{table}
\caption{This is the caption.}
\begin{center}
\begin{tabular}{ | l | l | l | l |}
\hline
...
\hline
\end{tabular}
\end{center}
\end{table}
© Stack Overflow or respective owner