Sub Articulo 139.0
>\pagenumbering{roman}
>\maketitle
>\tableofcontents
>
>\pagenumbering{arabic}
>\chapter{Introduction}
>\section{\tt Introduction}
>
>
>but my toc page is still numbered in arabic. What have I done wrong?
Try:
\tableofcontents
\clearpage
\pagenumbering{arabic}
> TeX uses the pagenumbering style which is in effect at the time
> it ships out the page. Without the \clearpage, TeX doesn't
> realise it needs to break the page until after it has read the
> \pagenumbering{arabic}, and so you get arabic numbering on
> your ToC. With the \clearpage, TeX gets the hint to ship out
> the page (with roman numbering) before it gets to the command
> switching to arabic numbering.
>