List of Figures formed by name + number

2

I used the risethesis template to create my dissertation, but it does not fit abnt for lists (figures, tables ...).

For example, the list of figures is being displayed as:

1 Legenda1 .............. 34
2 Legenda2 .............. 35

(It actually appeared listed by chapters (ex: 1.1, 2.1) but this I have already adjusted.)

And I need to be named as:

Figura 1 - Legenda1 ................34
Figura 2 - Legenda2 ................35
    
asked by anonymous 05.09.2018 / 07:01

1 answer

2

Attempts to use this command in the preamble ( original code ):

\usepackage{tocloft}
% para figuras
\renewcommand{\cftfigpresnum}{Figura. } % coloca antes do número
\renewcommand{\cftfigaftersnum}{: }  % coloca depois do número
% ajusta o espaçamento
\newlength{\mylen}
\settowidth{\mylen}{\cftfigpresnum\cftfigaftersnum}
\addtolength{\cftfignumwidth}{\mylen}

Also read these two Tex Stackexchange articles, the clarified doubt is the same

By the way, do you know ABNTeX ? With it you can make documents in LaTeX already formatted in ABNT standards.

    
05.09.2018 / 11:30