Page LayoutIndentation Problem in List of Figures

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
brunoalho
Posts: 1
Joined: Thu Jul 21, 2011 3:29 am

Indentation Problem in List of Figures

Post by brunoalho »

I am writing my thesis in latex and i have a problem with my list of figures
i have some long captions and the indentation of the second line should be the same as the first.
I've been trying something even with tocloft package but i couldn't solve my problem

my short code is:

Code: Select all

\documentclass[12pt,a4paper,oneside]{book}


\usepackage[english,brazil]{babel}  % resumo

\usepackage[latin1]{inputenc}  %acentos

\usepackage[T1]{fontenc} %font encoding package

\usepackage{txfonts}

\usepackage{graphicx,color} %cor

\usepackage[top=2.5cm,left=2.5cm,right=2.5cm,bottom=2.5cm]{geometry}

\usepackage{times}  % fonte times new roman 

\usepackage{indentfirst} 
 \usepackage{subfig} 
\usepackage[subfigure]{tocloft}
\usepackage{caption}
\captionsetup{within=none}
\renewcommand{\cfttoctitlefont}{\hfill\Huge\bfseries} %centralizar o sumário
\renewcommand{\cftaftertoctitle}{\hfill}
\renewcommand{\cftloftitlefont}{\hfill\Huge\bfseries} %centralizar a lista de figuras
\renewcommand{\cftafterloftitle}{\hfill}
\renewcommand{\cftlottitlefont}{\hfill\Huge\bfseries} %centralizar a lista de tabelas
\renewcommand{\cftafterlottitle}{\hfill}

\cftsetindents{chapter}{0.0em}{2.8em}
\cftsetindents{section}{0.0em}{2.8em}
\cftsetindents{subsection}{0.0em}{2.8em}
\renewcommand{\cftfigfont}{\figurename \,}
\renewcommand{\cfttabfont}{\tablename \,}
\renewcommand{\cftchapdotsep}{4.5}

\begin{document}
\listoffigures
\chapter{bla bla}
\begin{figure}
\caption{long caption long caption long caption long caption long caption long caption long caption long caption long caption long caption long caption }
\end{figure}
\end{document}
when i compile that on latex i got something like that...

" Lista de Figuras

"Figura 1 long caption long caption long caption long caption long
"------long caption long caption ..................................... 1"

but i need something like that

" Lista de Figuras

"Figura 1 long caption long caption long caption long caption long
"-----------long caption long caption ................................ 1"
the traces means spaces... i uploaded this short tex i quoted.
thanks in advance :)
Teste.tex
(1.35 KiB) Downloaded 227 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Post Reply