My header is:
Code: Select all
\documentclass[ruledheader]{abnt}
\usepackage[portuguese,ruled,vlined,linesnumbered]{algorithm2e}
\usepackage{hyperref}
\usepackage[portuguese]{babel}
\usepackage[latin1]{inputenc}
\usepackage[pdftex]{color,graphicx}
\usepackage{abnt-alf}
\usepackage[alf]{abntcite}
\usepackage{epsfig}
\usepackage{amssymb}
\usepackage{textcomp}
\usepackage{listings}
\usepackage{float}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\begin{document}
\DeclareGraphicsExtensions{.jpg,.pdf,.mps,.png}
\hypersetup{pageanchor=false}
\include{capa}
\include{folharosto}
So, I've tried the default configuration:
Code: Select all
\tableofcontents
\pagenumbering{roman}
\listoffigures
\listoftables
\listofalgorithms
\begin{resumo}
...
\end{resumo}
\begin{abstract}
...
\end{abstract}
\pagenumbering{arabic}
\setcounter{page}{1}
\chapter{Introdução}
...
The only way I get a correct toc is this one:
Code: Select all
\tableofcontents
\pagenumbering{roman}
\listoffigures
\listoftables
\listofalgorithms
\pagenumbering{roman}
\setcounter{page}{5}
\begin{resumo}
...
\end{resumo}
\begin{abstract}
...
\end{abstract}
\clearpage
\pagenumbering{arabic}
\setcounter{page}{1}
\chapter{Introdução}
...
But even this way, the lof and lot don't have roman numbers on their pages. Actually these two never get page numbers, even when they have them on toc. The loa, resumo and abstract pages have them in roman. What should I do in order to get the roman numbers on lof and lot pages?
Regards,
Davi.