Estilo de cabeçalho usando a classe memoir

Estilo de cabeçalho usando a classe memoir

É possível reproduzir o estilo de título abaixo usando os utilitários de estilo de cabeçalho integrados do livro de memórias?

insira a descrição da imagem aqui

insira a descrição da imagem aqui

Responder1

Isso é.

\documentclass{memoir}
\usepackage{lipsum}

% don't convert titles to upper case in header
\nouppercaseheads
% define what goes where in the header
% chapter into \leftmark, number shown, nothing before the
% number and a dot and space after it
\createmark{chapter}{left}{shownumber}{}{. }
% section into \rightmark, number shown, nothing before the
% number and just a space after it
\createmark{section}{right}{shownumber}{}{ }
% define new pagestyle
\makepagestyle{myheadings}
% head for even numbered pages, chapter title on the left with
% preferred font and size, center and right side of header are empty
\makeevenhead{myheadings}{\textit{\small\leftmark}}{}{}
% head for odd numbered pages, left side and center of header
% are empty, section title on the right with preferred font and size
\makeoddhead{myheadings}{}{}{\textit{\small\rightmark}}
% set pagestyle
\pagestyle{myheadings}

\begin{document}
\chapter{Introduction}
\section{Something about lipsum}
\lipsum[1-10]
\end{document}

Há também \makeevenfoote \makeoddfootpara a linha do pé. Mais detalhes podem ser encontrados na seção 7.3 do manual de memórias.

informação relacionada