List of figures / tables in the abntex2 model

4

Hello, I'm using the abntex2 model for theses. I put figures and tables indexed by chapter. But now I'd like the lists to have a space between the figures / tables in the same chapter. Lists are created automatically, with the command \listoffigures or \listoftables . I want the following format:

 Figura 1.1..............
 Figura 1.2..............
 Figura 1.3..............

 Figura 2.1..............
 Figura 2.2..............
 Figura 2.3..............

Could anyone help me?

    
asked by anonymous 19.02.2017 / 00:50

1 answer

4

To separate the figures / tables according to the chapters, simply put the following commands in the preamble:

\usepackage{pgffor}
\renewcommand*{\insertchapterspace}{%
              \addtocontents{lof}{\protect\addvspace{10pt}}%
              \addtocontents{lot}{\protect\addvspace{10pt}} }
    
19.02.2017 / 07:11