General ⇒ Another listoffigures & tables format issue
Another listoffigures & tables format issue
Figure 1.1 Blah blah blah blah blah blah blah blah blah blah blah
blah blah blah blah blah blah...........................................3
So really all I need to know is how to add the "Figure" in front of the figure number.
They also have this format for the list of tables entry. I'm assuming the solution for one is the solution for the other.
I'd expect this should be trivial, but I'm stumped.
Any thoughts?
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: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Another listoffigures & tables format issue
Another listoffigures & tables format issue
Code: Select all
Figure 2.1 The traffic monitoring cameras routinely record information from
one or more moving objects ......................................................................... 6
I'm using this to make the mods, but it's not adjusting the figure number indent obviously.
Code: Select all
{\renewcommand*\numberline[1]{Figure\,#1\space}
\makeatletter
\listoffigures}
Legoton
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Another listoffigures & tables format issue
you could redefine \l@figure, this could be a start:
Code: Select all
\makeatletter
\renewcommand*\l@figure{\@dottedtocline{1}{0em}{3.6em}}
\makeatother
Re: Another listoffigures & tables format issue
That looks like a winner to me. I agree it's not the right way, but it's a solution.
Thanks. I'll use tocloft next time.
-Legoton