-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrige entradas faltando no sumário quando use-se \chapter*
- Loading branch information
1 parent
6dcdd63
commit 50bb33a
Showing
4 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
\chapter*{Agradecimentos} \label{agradecimentos} | ||
% * indica para nao adicionar numeracao ao titulo | ||
\addcontentsline{toc}{chapter}{\nameref{agradecimentos}} | ||
|
||
% O * indica para nao adicionar numeracao ao titulo. | ||
% Neste caso, o capítulo não entra no sumário. O comando anterior força isso. | ||
|
||
Inclua seus agradecimentos aqui. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
\chapter*{Apêndice} \label{apendice} | ||
% * indica para nao adicionar numeracao ao titulo | ||
\addcontentsline{toc}{chapter}{\nameref{apendice}} | ||
|
||
% O * indica para nao adicionar numeracao ao titulo. | ||
% Neste caso, o capítulo não entra no sumário. O comando anterior força isso. | ||
|
||
Inclua os apêndices aqui. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
\chapter*{Conclusão} \label{conclusao} | ||
% * indica para nao adicionar numeracao ao titulo | ||
\addcontentsline{toc}{chapter}{\nameref{conclusao}} | ||
|
||
% O * indica para nao adicionar numeracao ao titulo. | ||
% Neste caso, o capítulo não entra no sumário. O comando anterior força isso. | ||
|
||
Insira sua conclusão aqui. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters