Hi All,
I've a problem I could not solve simply surfing on the net, but it might be very silly (sorry).
I need to label my tables (only tables and not figures or pages) with Roman numerals. Does a
precise command exists? Something like \tablenumbering{roman}?
thank you to all!!!
luca
General ⇒ Roman numeral for tables
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Roman numeral for tables
Hi Luca,
you could use \Roman to change how the table counter will be printed:
Stefan
you could use \Roman to change how the table counter will be printed:
Code: Select all
\renewcommand*\thetable{\Roman{table}}
LaTeX.org admin
-
- Posts: 5
- Joined: Tue Jun 10, 2008 4:22 pm
Roman numeral for tables
thx a lot,
indeed reading a book I tried myself
thank you for your help,
luca
indeed reading a book I tried myself
\renewcommand{\thetable}{\Roman{table}}
thank you for your help,
luca
Last edited by cgnieder on Mon Dec 03, 2012 8:52 pm, edited 1 time in total.
-
- Posts: 1
- Joined: Mon Dec 03, 2012 6:24 pm
Re: Roman numeral for tables
Thanks from me as well. Very useful.