I am using koma-script scrreprt and am trying to use scrheadings from scrpage2 package. However I have a problem. All pages which show the extra heading show "Contents", even when the page is in another section completely. What is going on? At the moment I don't have much content - just the layout so the chapters are small - but that shouldn't make any difference should it?
Here is my preamble - am I doing anything wrong?
Code: Select all
\documentclass[ paper=a4,
fontsize=12pt,
titlepage,
abstract=true,
normalheadings,
twoside,
openright,
BCOR10mm,
DIV=calc ]{scrreprt}
% Standard stuff
\usepackage[]{amsmath}
\usepackage{pdfsync}
\usepackage[pdftex]{graphicx}
% Fonts
\usepackage[T1]{fontenc}
%\usepackage[bitstream-charter]{mathdesign}
\usepackage[utopia]{mathdesign}
\usepackage{helvet}
\usepackage{scrpage2}
\pagestyle{scrheadings}
% Spacing
\usepackage{setspace}
\onehalfspacing
\typearea[current]{calc} % recalculate typearea
% Misc stuff
\usepackage{url}
\usepackage[squaren]{SIunits}
\usepackage{color}
\definecolor{spot}{rgb}{0,0.2,0.6}
\usepackage[pdftex,colorlinks=true,linkcolor=spot]{hyperref}
%\usepackage[hang,small,bf]{caption}
%\setlength{\abovecaptionskip}{0pt}
%\usepackage{listings}
%\lstloadlanguages{python}
%\lstset{basicstyle=\tiny\ttfamily,showstringspaces=false,tabsize=4}
Thanks for any help or ideas....