Document Classes ⇒ memoir: \chapter* and ruled pagestyle
memoir: \chapter* and ruled pagestyle
David
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
memoir: \chapter* and ruled pagestyle
Code: Select all
\documentclass{memoir}
\usepackage{lipsum}% for generating some dummy text
\makepagestyle{intro}
\makeoddfoot{intro}{}{}{\thepage}
\makeevenfoot{intro}{\thepage}{}{}
\makeheadrule{intro}{\textwidth}{\normalrulethickness}
\makeevenhead{intro}{\scshape Introduction}{}{}
\makeoddhead{intro}{}{}{Introduction}
\begin{document}
\pagestyle{ruled}
\tableofcontents
\clearpage % don't forget \clearpage before changing pagestyle
\pagestyle{intro}
\chapter*{Introduction}
\addcontentsline{toc}{chapter}{Introduction}
\lipsum[1-20]% dummy text
\clearpage
\pagestyle{ruled}
\chapter{Another chapter}
\section{A section}
\lipsum[1-20]% dummy text
\end{document}
Re: memoir: \chapter* and ruled pagestyle
I also realized that I had a similar problem with the appendices. After issuing the \appendix command, the verso headers picked up the name of the appendix (the "chapter" title) but the recto headers had only the rule. I was able to modify your code, after spending some more time with chapter 7, to fix this problem too.
Best wishes,
David