Graphics, Figures & TablesRemoving table numbering

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
fluffy
Posts: 2
Joined: Wed Jul 15, 2009 2:35 pm

Removing table numbering

Post by fluffy »

Hi,
I have a table which is numbered as table 5, I want to continue the table on the next page but on next page it is called table 6. Is there some way to also call table 6 for table 5? (I will preferably avoid using the longtable function)

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Removing table numbering

Post by gmedina »

If I understood correctly, you have two table environments but you want them to represent only one table. If this is so, you could add

Code: Select all

\addtocounter{table}{-1}
just at the start of the second table environment.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Removing table numbering

Post by localghost »

fluffy wrote:Hi,
I have a table which is numbered as table 5, I want to continue the table on the next page but on next page it is called table 6. Is there some way to also call table 6 for table 5? (I will preferably avoid using the longtable function)
Try the \ContinuedFloat command from the caption package for the second table. You can avoid double entry in the LoF by a special setup. The package manual explains everything in detail.
fluffy
Posts: 2
Joined: Wed Jul 15, 2009 2:35 pm

Re: Removing table numbering

Post by fluffy »

Thank you:)
Post Reply