I want my headers and footers on the first page to have another content then the other pages. I can not use the environment titlepage, because there is content already on the first page.
Also there is no \pagebreak.
This is my approach:
Code: Select all
\documentclass[10pt,a4paper]{scrartcl}
%-----------------------------------Settings---------------------------------------------
\usepackage{fancyhdr}
\pagestyle{fancy}
%\makeatletter
\ifnum\thepage=1
\fancyfoot[L]{first page}
\else
\fancyfoot[L]{other pages}
\fi
%\makeatother
%-----------------------------------Ende Settings----------------------------------------
\begin{document}
\section*{Stellungnahme}
\pagebreak
\subsection*{Rettungswege}
\label{LastPage}
\end{document}
Edit: Just to mention it: the pagebreak is just for testing.