Graphics, Figures & TablesCaption for Table

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
21did21
Posts: 58
Joined: Thu Sep 08, 2011 12:27 pm

Caption for Table

Post by 21did21 »

Hello world ;)

i want to put caption in tabular but i can't except with "figure" environnement :

Code: Select all

\begin{figure}
\begin{center}
\begin{tabular}{|c|c|}

(...)

\end{tabular}
\end{center}
\caption{blablablablablabal}
\end{figure}
this is works but i don't like because the name is not "Table 1" but "Figure 1"
so i want to put this :

Code: Select all

\begin{center}
\begin{tabular}{|c|c|}

(...)
\caption{dgvefgvefgvrv}
\end{tabular}
\end{center}
can you explain to me how i can modif this ?

thanks for your help :D
Last edited by 21did21 on Sun Feb 19, 2012 6:00 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
Stefan Kottwitz
Site Admin
Posts: 10350
Joined: Mon Mar 10, 2008 9:44 pm

Caption for Table

Post by Stefan Kottwitz »

Use a table environment instead, such as

Code: Select all

\begin{table}[ht]
  \centering
  \begin{tabular}{|c|c|}
    ...
  \end{tabular}
  \caption{text}
\end{table}
Stefan
LaTeX.org admin
21did21
Posts: 58
Joined: Thu Sep 08, 2011 12:27 pm

Re: Caption for Table

Post by 21did21 »

thank you stefan for all your help :D
Post Reply