回忆录:自定义标题样式

回忆录:自定义标题样式

我有以下使用-style的MWE memoir,其中页面样式将部分标题放在左侧,将页码放在右侧甚至页。在奇怪的页面似乎只有页码出现在左侧。没有章节标题。

\documentclass[14pt, extrafontsizes]{memoir}
\usepackage{blindtext}

\begin{document}

\frontmatter
\pagestyle{empty}
\aliaspagestyle{chapter}{empty}

\section{This is a test1}
\blindtext[10] 

\clearpage

\pagestyle{headings}
\aliaspagestyle{chapter}{empty}

\section{This is a test2}
\blindtext[10] 

\clearpage

\section{This is a test3}
\blindtext[10] 


\end{document}

是否memoir有默认的页面样式

  • 章节标题出现在偶数页的右侧(顶部),页码出现在偶数页的左侧(顶部)
  • 在奇数页上,章节标题显示在左侧(顶部),页码显示在右侧(顶部)

如果没有,如何手动完成?

答案1

欢迎来到 TeX.SX!

这会产生预期的结果吗?

\documentclass[14pt, extrafontsizes]{memoir}
\usepackage{blindtext}

\begin{document}

\frontmatter
\pagestyle{empty}
\aliaspagestyle{chapter}{empty}

\section{This is a test1}
\blindtext[10] 

\clearpage

\copypagestyle{foo}{headings}
\makeevenhead{foo}{\thepage}{}{\rightmark}
\makeoddhead{foo}{\rightmark}{}{\thepage}
\pagestyle{foo}

\section{This is a test2}
\blindtext[10] 

\clearpage

\section{This is a test3}
\blindtext[10] 


\end{document}

相关部分memman 是第 7 章,分页和页眉,以防您想自己修改它。


编辑:关于这些命令的一些注释mark可以在fancyhrd 包的文档以及LaTeX 伴侣书(第二版第 4.3.4 节)。


编辑2:

章节放在奇数页,章节放在偶数页,并将页面样式定义移到序言中:

\documentclass[14pt, extrafontsizes]{memoir}
\usepackage{blindtext}
\copypagestyle{foo}{headings}
\makeoddhead{foo}{\rightmark}{}{\thepage}
\makeevenhead{foo}{\thepage}{}{\leftmark}
\pagestyle{foo}

\begin{document}

\chapter{Grandiose Chapter}

Extravagant chapter introductory text.

\section{Phenomenal Section}
\blindtext[10] 

\chapter{Superlative Chapter}

Extravagant chapter introductory text.

\section{Decadent Section}
\blindtext[10] 

\section{Boring Section}
\blindtext[10] 

\section{Magnificent Section}
\blindtext[10] 
\end{document}

相关内容