I need help with page layout in memoir.
I want to have an unnumbered chapter0 (i.e. introduction) but when using the \chapter starred version the chapter headers is wrong.
This is my example source:
\documentclass[14pt,extrafontsizes,a4paper,twoside,final]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\usepackage[T1]{fontenc}
\usepackage{indentfirst}
\usepackage{microtype}
\usepackage{lipsum}
\raggedbottomsection
\begin{document}
%
\OnehalfSpacing
%
\frontmatter
\thispagestyle{empty}
\begin{DoubleSpace}
\tableofcontents*
\end{DoubleSpace}
\clearforchapter
\mainmatter
\pagestyle{ruled}
\chapter*{chapter0}
\label{chap:chapter0}
\lipsum
\lipsum
\lipsum
\chapter{chapter1}
\label{chap:chapter1}
\section{ch1-s1}
\lipsum
\section{ch1-s2}
\lipsum
\section{ch1-s3}
\lipsum
\lipsum
\chapter*{last}
\label{chap:last}
\lipsum
\lipsum
\end{document}
And the problem is in chapter0 and in "last". Can you help me?