我正在使用回忆录课程编写论文模板,我喜欢带横线的页面样式。根据课程手册:
这与横线样式类似,只是页眉和页脚延伸到前缘边距。
我现在的问题是:如何减小这条线的宽度?我在手册和谷歌搜索中都没有找到这个问题的答案。
这是我想要采用的(非常)简化的页面样式:
\documentclass[11pt,a4paper]{memoir}
% Page configuration
\settrimmedsize{\stockheight}{\stockwidth}{*}
\settypeblocksize{7.75in}{32pc}{*}
\setulmargins{4cm}{*}{*}
\setlrmargins{1.1in}{*}{*}
\setmarginnotes{0pt}{0pt}{\onelineskip}
\setheadfoot{\onelineskip}{2\onelineskip}
\setheaderspaces{*}{2\onelineskip}{*}
\checkandfixthelayout
\usepackage{lipsum}
\pagestyle{Ruled}
\usepackage{showframe}
\begin{document}
\lipsum[1-8]
\end{document}
答案1
这是一个解决方案
和
\makerunningwidth{Ruled}{\textwidth}
\makeheadrule{Ruled}{\textwidth}{\normalrulethickness}
平均能量损失
\documentclass[11pt,a4paper]{memoir}
% Page configuration
\settrimmedsize{\stockheight}{\stockwidth}{*}
\settypeblocksize{7.75in}{32pc}{*}
\setulmargins{4cm}{*}{*}
\setlrmargins{1.1in}{*}{*}
\setmarginnotes{0pt}{0pt}{\onelineskip}
\setheadfoot{\onelineskip}{2\onelineskip}
\setheaderspaces{*}{2\onelineskip}{*}
\checkandfixthelayout
\makerunningwidth{Ruled}{\textwidth}
\makeheadrule{Ruled}{\textwidth}{\normalrulethickness}
\usepackage{lipsum}
\pagestyle{Ruled}
\usepackage{showframe}
\begin{document}
\lipsum[1-8]
\end{document}