blob: b50d1b7648c573a867c6b0a0462a0ab60fed0bf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
% Bookdown LaTeX footer file
% Put all indexes in a final chapter
\chapter{Índice}
%Listas de tabelas, figuras, definições e etimologias.
%Listas de tabelas e figuras.
Listas de tabelas, figuras etc.
% Print the list of tables
\listoftables
% Print the list of figures
\listoffigures
% Print the list of definitions
% See https://latex.org/forum/viewtopic.php?t=17679
% https://ctan.org/pkg/thmtools
\renewcommand\listtheoremname{Lista de Definições}
\listoftheorems[ignoreall,show={definition}]
% Print the list of etimologies
% The "proposition" theorem type is allocated for etimologies in this book
% See the _bookdown.yml at the top-level project folder for more information
\renewcommand\listtheoremname{Lista de Etimologias}
\listoftheorems[ignoreall,show={proposition}]
% Print the index
\printindex
|