Using a template i found for my Bachelor's thesis but I can't get it to add pagenumbers on all page. Have tried google with no luck. It only places page number on page with a new chapter but I would like page numbers on all page after toc. Any suggestions?
Here's the current page style code as it was in the template:
Code: Select all
\documentclass[11pt,a4paper,twoside,bibtotoc,idxtotoc]{scrbook}
\usepackage[latin1]{inputenc}
\usepackage{ifthen,graphicx,color}
\usepackage[swedish]{babel}
%\usepackage[english]{babel}
\usepackage{color}
\usepackage{graphicx}
\usepackage{scrpage2}
\usepackage{textcomp}
\usepackage{amsmath}
\usepackage{harvard_swedish}
\usepackage{amssymb}
\usepackage{mathpazo}
\usepackage{listings}
\usepackage{subfigure}
\usepackage{anysize}
%\usepackage{hyperref}
\usepackage[absolute]{textpos}
%\usepackage[pdftex, linkbordercolor=000, citebordercolor=000, pdfkeywords={Keyword 1, Keyword 2, Keyword 3, Keyword 4}, pdftitle={The Title}, pdfauthor={The Author}, plainpages=false, pdfpagelabels, hypertexnames=false]{hyperref} % activate for PDF links
\marginsize{3cm}{3cm}{3cm}{3cm}
\pagestyle{scrheadings}
\ifoot{\pagemark}
\ofoot{CHALMERS, Kandidatrapport 2008}
\ohead{}
\chead{}
\ihead{}
\renewcommand{\baselinestretch}{1.1}
\pagenumbering{roman}
\begin{document}
\include{title}
\include{titelsida}
\renewcommand{\thechapter}{\Roman{chapter}}
\include{sammanfattning}
\include{abstract}
\include{forord}
\include{toc}
\include{notations}
\cleardoublepage
\renewcommand{\thechapter}{\arabic{chapter}}
\setcounter{chapter}{0}
\pagenumbering{arabic}
\include{<files>}
\end{document}