Graphics, Figures & Tables ⇒ Caption Numbering: Changing 1.1 to 1-1?
Caption Numbering: Changing 1.1 to 1-1?
I was wondering if there is a way to change the appearance of the figure and table numbering in captions from, for example, Figure 1.1 to Figure 1-1?
Thanks!
Fiona
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
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Caption Numbering: Changing 1.1 to 1-1?
welcome to the board!
You could redefine the presentation of the figure and table counter, such as
Code: Select all
\renewcommand{\thefigure}{\thechapter-\arabic{figure}}
\renewcommand{\thetable}{\thechapter-\arabic{table}}
Re: Caption Numbering: Changing 1.1 to 1-1?
Thanks, that worked perfectly!


Fiona