I have the following problem.
I am trying to make Header/Footer with fancyhdr. The Problem is, where a new chapter begins normal page numbering is shown, on pages without a new chapter i get the fancyfooter. Here is a sample document illustrating my issue.
See page 3 pagenumber is "normal" in the middle.
Page 4 and 5 are "correct" to the right with "Page X"
Furthermore i would like the Header showing "1. blablubb" not "Chapter 1. blablubb"
Code: Select all
\documentclass[12pt]{scrreprt}
\usepackage{palatino,url}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{xcolor}
\usepackage{enumitem}
\hypersetup{
colorlinks=true,
linkcolor=blue
}
\usepackage{mdwlist}
\usepackage{listings}
\usepackage{fancyhdr}
\usepackage{blindtext}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\cfoot{}
\fancyhead[R]{\textit{\leftmark}} % page number in "outer" position of footer line
%\fancyfoot[RO,LO]{Message of the day}
%\fancyhead[L]{\textit{Inventory } }
\fancyfoot[R]{\textit{Page } \textit{\thepage}}
%\usepackage{scrpage2}
%\usepackage{titlepic}
\setuptoc{toc}{totoc}
\cleardoublepage
\begin{document}
\begin{titlepage}
\addcontentsline{toc}{chapter}{Cover}
\centering
\vspace*{6cm}
{\fontsize{1.4cm}{1em}\mdseries
fsfsd
}
1. August 2015
\vfill
v. 1.2
\end{titlepage}
\tableofcontents
\chapter{blablubb}
\blindtext[5]
\Blindtext[5]
\end{document}