Hi,
I defined a float
\newfloat{sentences}{th}{los}[chapter]
and I want to change its numbering in the Appendix like I did for figures and tables
\renewcommand\thefigure{B-\arabic{figure}}
\renewcommand\thetable{B-\arabic{table}}
How does that work for customised floats?
Conny
Document Classes ⇒ customised float numbering
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
customised float numbering
Hi Conny,
try
because sentences should be the name of the corresponding counter.
Stefan
try
Code: Select all
\renewcommand\thesentences{B-\arabic{sentences}}
Stefan
LaTeX.org admin
Re: customised float numbering
that works! 
thank you!

thank you!