General ⇒ Need help with table of figures formatting
Need help with table of figures formatting
For example:
Figure
1.1 Stuff................................................5
1.2 More stuff but really big line so it should
continue here....................................6
1.3 Another short entry...............................8
The page numbers as well as the first letter of each entry should line up, unlike my post. I've tried to us the TOCLOFT package, but couldn't figure it out. I just stated using Latex and I'm not very familiar with it.
Thanks ahead of time for any help you may be able to provide me.
Ariel
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
Need help with table of figures formatting
Code: Select all
\documentclass{book}
\makeatletter
\let\l@figureOLD \l@figure
\renewcommand{\l@figure}{\vspace*{\baselineskip}\l@figureOLD}
\makeatother
\begin{document}
\addtocontents{lof}{\vspace*{-\baselineskip}}
\listoffigures
\chapter{First chapter}
\begin{figure}[h]
\caption{A very, very, very, very long caption comes here. Will this cause a problem in the List of Figures?}
\end{figure}
\begin{figure}[h]
\caption{This is other very, very, very, very long caption. So, once more, let's see what happens in the List of Figures}
\end{figure}
\begin{figure}[h]
\caption{However, this is a short one}
\end{figure}
\begin{figure}[!h]
\caption{A very, very, very, very long caption once again. How will this affect to the List of Figures?}
\end{figure}
\end{document}
Re: Need help with table of figures formatting
Your suggestion sort of worked. I get the right formatting on the entries, but now I get page breaks between figures from different chapters and the pages for chapters with lots of figures ignore the bottom margin and go off the page (entries do not make a new page).
Here is the beginning of my main document:
\documentclass[12pt]{report}
\usepackage{amsmath,amsthm,amsfonts,amscd}
\usepackage{eucal}
\usepackage{verbatim}
\usepackage{setspace}
\usepackage[usenames]{color}
\usepackage{colortbl}
\usepackage{hhline}
\usepackage{longtable}
\usepackage{graphicx}
\usepackage[square]{natbib}
Re: Need help with table of figures formatting
Re: Need help with table of figures formatting
Now to search for answers on formatting the TOC.
Re: Need help with table of figures formatting
For example
4.1 A figure.................................... 6
.
.
.
5.10 Another figure with a really long
_____title........................................... 17
(Sorry the underscores are only place holders because the spaces were stripped from my post)
Thanks,
Jared
Need help with table of figures formatting
Re: Need help with table of figures formatting

\documentstyle[12pt,amsmath,graphicx,float,epstopdf]{thesis95}
\DeclareMathOperator{\sinc}{sinc}
\DeclareMathOperator{\rect}{rect}
\makeatletter
\let\l@figureOLD \l@figure
\renewcommand{\l@figure}{\vspace{12pt plus 2pt}\l@figureOLD}
\let\l@table\l@figure
\makeatother
\begin{document}
\baselineskip24pt plus 2pt
\include{title}
\pagenumbering{roman}
\setcounter{page}{2}
\pagestyle{plain}
\include{copy_permission}
\include{approval}
\include{abs}
\include{ack}
\tableofcontents
\baselineskip12pt plus 2pt
\listoffigures
\listoftables
\baselineskip24pt plus 2pt
\include{sym}
\pagestyle{empty}
\include{dedication}
\addtocounter{page}{-1}
\pagestyle {plain}
\setcounter{page}{1}
\pagenumbering{arabic}
\include{intro}
\include{gps_signal}
\include{adaptive_noise_canceling}
\include{adaptive_noise_cancellation_implementation}
\include{simulation_results}
\include{conclusion}
\appendix
\include{ltiapproxderivation}
\include{psdOfGPSL1}
\bibliographystyle{ieeetran}
\bibliography{thesisreferences}
\end{document}
Re: Need help with table of figures formatting
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Need help with table of figures formatting
Code: Select all
\documentstyle[12pt,amsmath,graphicx,float,epstopdf]{thesis95}
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10