Siehe scrguide.pdf, S. 90 in der Fassung vom 16.6.2011rais hat geschrieben:@Sepp99: Seitenstil chapter bei \chapterpagestyle?
Gruß, Sepp.-
EDIT: dieser Seitenstil sollte natürlich vorher definiert werden
Siehe scrguide.pdf, S. 90 in der Fassung vom 16.6.2011rais hat geschrieben:@Sepp99: Seitenstil chapter bei \chapterpagestyle?
\renewcommand*{\chapterpagestyle}{scrheadings}\thispagestyle
\thispagestyle{plain}
\thispagestyle{headings}
\listfiles
\documentclass[
fontsize=12pt,
DIV=12,
bibliography=totoc,
% headinclude=false,
% footinclude=false,
% headsepline,
% footsepline,
ngerman,
]{scrreprt}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
% Layout
\usepackage[automark]{scrpage2}
\pagestyle{scrheadings}
\clearscrheadfoot
\ihead{\headmark}
\ohead{Name}
\cfoot{\pagemark}
\newpagestyle{Kapitel}{}{%
{\clearscrheadfoot}
{\cfoot{\pagemark}}
}
\renewcommand*{\chapterpagestyle}{Kapitel}
\usepackage{blindtext}
\begin{document}
\tableofcontents
\blinddocument
\blinddocument
\end{document}
\newpagestyle{Kapitel}{}{%
{\clearscrheadfoot}
{\cfoot{\pagemark}}
}
\renewcommand*{\chapterpagestyle}{Kapitel}
\documentclass[
headsepline% Linie bei scrheadings aber nicht bei scrplain (siehe scrguide.pdf)
]{scrreprt}
\usepackage[automark]{scrpage2}% mit lebenden Kolumnentiteln
\pagestyle{scrheadings}
\ihead{\headmark}
\ohead{StartLaTeX}
\chead{}
% Jetzt den Kolumnentitel so ändern, dass keine Kapitelnummer mehr angezeigt
% wird:
\renewcommand*{\chaptermarkformat}{}% siehe scrguide.pdf und rais' Kommentar
\usepackage{blindtext}% Nur zu Demonstrationszwecken
\begin{document}
\blinddocument
\end{document}
