Advertisement
Guest User

Untitled

a guest
Sep 11th, 2021
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.74 KB | None | 0 0
  1. \documentclass[
  2.     12pt,
  3.     openright,
  4.     oneside,
  5.     a4paper,
  6.    sumario=tradicional,
  7.     english,
  8.     brazil,
  9.     ]{abntex2}
  10.  
  11. \begin{document}
  12.  
  13. \renewcommand*\listfigurename{List of figures}
  14. \renewcommand*{\listtablename}{List of tables}
  15. \renewcommand*{\contentsname}{Summary}
  16. \renewcommand*{\figurename}{Figure}
  17. \renewcommand*{\tablename}{Table}
  18.  
  19. \pdfbookmark[0]{\listfigurename}{lof}
  20. \listoffigures*
  21. \pdfbookmark[0]{\listtablename}{lot}
  22. \listoftables*
  23.  
  24. \pdfbookmark[0]{\contentsname}{toc}
  25. \tableofcontents*
  26.  
  27. \section{First Section}
  28.  
  29. \begin{figure}[ht]
  30. \caption{First Figure}
  31. \end{figure}
  32.  
  33. \begin{table}[htbp]
  34.    \caption[Schedule]{First Table}
  35.    \begin{tabular}{lcccccccccccc}
  36.    \end{tabular}
  37. \end{table}
  38.  
  39. \end{document}
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement