I'm finishing writing my thesis, and to save paper I'm trying to use the twoside option for the package abntex. The problem is that the number is in the wrong side of the page! How can I put it on the other side?
Here's a my header:
\documentclass[a4paper,12pt,normaltoc,twoside,openright]{abnt}
\usepackage[utf8]{inputenc}
\usepackage{setspace}
\usepackage[T1]{fontenc}
\usepackage[bitstream-charter]{mathdesign}
\usepackage[portuguese,brazil,brazilian]{babel}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{url}
\usepackage{pdflscape}
\usepackage{rotating}
\usepackage{appendix}
\usepackage{color}
\usepackage{microtype}
\usepackage{tabela-simbolos}
\usepackage{subfigure}
\usepackage[num,abnt-etal-list=0,abnt-etal-text=it,abnt- emphasize=it,recuo=0.0cm,bibjustif,abnt-last-names=abnt]{abntcite}
\usepackage{float}
\usepackage[format=hang,font={footnotesize,singlespacing},labelfont=bf,labelsep=endash] {caption}
\onehalfspacing
\begin{document}
\include{folha_rosto}
\include{resumos}
\tableofcontents
\listoffigures
\include{introducao}
\end{document}
fancyhdrpackage. You can then override the footer using\fancyfoot{}\fancyfoot[LE,RO]{\thepage}\pagestyle{fancy}in your document preamble, which should put the page number on the outer side. – Werner Nov 25 '11 at 20:21abntclass. Thetwosideoption, though it's available as a class option, seems not to beabnt-compliant – the documentation clearly says so – so you should not consider it when generating the final version of your thesis. If you really want to usetwosideand "fix" the position of page numbers, the documentation suggests using thefancyhdrpackage, by addingheaderas class option and redefining bothplainheaderandheaderstyles. Then @Werner's code is the way to go. Hope it helps.:)– Paulo Cereda Nov 26 '11 at 01:19:P– Paulo Cereda Nov 26 '11 at 01:31