Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Skip numeration figure and table caption

How to make a table and figure caption without any automatic numeration?

For example:

\begin{table}
    \begin{tabular}{ll}
    \textbf{Name} & \textbf{Description} \\
        Foo & bar \\
        Foo & bar
    \end{tabular}
    \caption{Nice Table a.I.3. Number of table passed in caption, so it don''t need any automatic numeration }
    \label{tab:table}
\end{table}
like image 811
potapuff Avatar asked Jan 17 '11 15:01

potapuff


People also ask

How do I exclude numbers from a caption in Word?

When you've opened the "Insert Caption" dialog box, check the box to "exclude label from caption." Enter the caption you want and click "OK." Word will enter the caption as a text box with the picture (or figure, or table, etc.). Now you can simply edit the text in the text box and delete the number.

How do you write a caption for a table and figure?

Here are some tips on using captions: A figure caption is centered under the figure; a table caption is centered above the table (if a caption is more than one line, make it left justified). A Figure and its caption should appear on the same page. All captions should start with a capitalized word and end with a period.

How do you add a caption without figure number in LaTeX?

All you need to do is use the \caption{''text''} command within the float environment. LaTeX will automatically keep track of the numbering of figures, so you do not need to include this within the caption text.

How do I change the numbering on a caption?

Go to the References tab and click Insert Caption to open the Caption dialog box. Change the Label to Figure. Click Numbering to open the Caption Numbering dialog box. Select the Include Chapter Numbering check box.


1 Answers

Use the caption package (http://www.ctan.org/tex-archive/macros/latex/contrib/caption/)

It defines the \caption* command for the table environment.

like image 124
Goug Avatar answered Sep 21 '22 11:09

Goug