我写了一本带有回忆录的书。我的最后一个问题是,我有一章太短了,没有章节。这导致右页有一个空白页眉。我怎样才能让回忆录在右页的页眉中也写上章节标题。
\RequirePackage[ngerman=ngerman-x-latest]{hyphsubst}
\documentclass[10pt,twoside,openright,showtrims]{memoir}
\stockaiv
\raggedbottom
%%% set up the page layout
\settrims{42.5mm}{31mm}
\settrimmedsize{21cm}{14.8cm}{*}
\settypeblocksize{18cm}{11,5cm}{*}
\flushbottom
%Rand rechts und links auf dem geschnittenen Papier
\setlrmargins{15mm}{*}{*}
%Rand oben und unten auf dem zugeschnittenen Papier
\setulmarginsandblock{15mm}{10mm}{*}
\setheadfoot{\onelineskip}{\onelineskip}
\setheaderspaces{*}{5mm}{*}
\checkandfixthelayout
%ZEICHEN
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
%SPRACHEN
\usepackage[english,polish,french,ngerman]{babel}
\def\mychapterstyle{komalike}
\def\mypagestyle{headings}
\nouppercaseheads
\def\revision{}
我知道这不是最好的序言。它随着时间的推移而动态增长。感谢您的任何建议和帮助!
答案1
您的 MWE 甚至没有使用myheadings
,但这里有一个带有的 MWE headings
:
\documentclass[a4paper]{memoir}
\usepackage{lipsum}
\makeatletter
\addtopsmarks{headings}{}{
% changed left to both
\createmark{chapter}{both}{shownumber}{\@chapapp\ }{. \ }
}
\makeatother
\nouppercaseheads
\pagestyle{headings}
\begin{document}
\chapter{test}
\lipsum[1-15]
\end{document}