I'm currently doing the thesis report and I cant seem to get the numbering to work as well as the along with some other stuff.
What I want is Abstract(eng) Abstract(swe) and Acknowledgments to all be on the right side, with roman numbering. I can accomplish this with
\newpage
\thispagestyle{empty}
\mbox{}
\newpage
but I wanna use \cleardoublepage, which is not working, between the chapters as well.
Another thing I want is the numbering in the toc to be roman as well, but it isn't. I also want the abstract to show in the toc with the roman page number ref but they all show up with arabic number page 1.
\documentclass[a4paper]{report}
\usepackage[english,swedish]{babel}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{subfig}
\usepackage[table]{xcolor}
\usepackage{lscape}
\usepackage[hidelinks]{hyperref}
\usepackage[cp1252]{inputenc}
\usepackage{cite}
\usepackage{appendix}
\parindent 0pt
\begin{document}
\pagenumbering{roman}
\chapter*{Abstract}
\input{abseng}
\pagenumbering{plain}
\cleardoublepage % not working
\chapter*{Sammanfattning}
\input{abssve}
\pagenumbering{plain}
\cleardoublepage
\chapter*{Acknowledgment}
\input{ack}
\pagenumbering{plain}
\cleardoublepage
\tableofcontents
\addtocontents{toc}{~\hfill\textbf{Page}\par} % Add page above numbers
\addcontentsline{toc}{chapter}{Abstract} % Add to toc ?
\addcontentsline{toc}{chapter}{Sammanfattning}
\addcontentsline{toc}{chapter}{Acknowledgments}
\addcontentsline{toc}{chapter}{Contents}
\pagenumbering{arabic}
\cleardoublepage %<-- not working
\include{Introduction}
%\include{other chapters}
\bibliographystyle{unsrt} % (uses file "plain.bst")
\bibliography{myrefs}
\listoffigures[toc]
\begin{appendix}
\include{appendix}
\end{document}
cleardoublepageonly works in a double sided layout, so addingtwosideto your class options should fix that part. – ArTourter Apr 17 '12 at 10:37