回忆录中的单面边距

回忆录中的单面边距

大学要求论文的边距为四周 3.5 厘米,左边 4 厘米。我使用了以下代码,但偶数页边距似乎不对。如何使文档具有与第一幅图像(奇数页)相同的边距尺寸:

\documentclass[oneside, 11pt, a4paper]{memoir}
\setulmarginsandblock{3.5cm}{3.5cm}{*}
\setlrmarginsandblock{4cm}{3.5cm}{*}
\checkandfixthelayout

\usepackage[english]{babel}
\usepackage{lipsum}
\chapterstyle{veelo}
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.3pt}


\begin{document}
\lipsum
\lipsum
\end{document}

奇数页边距

等边距

答案1

showframe正如 Zarko 的评论指出的那样,页面的框架方式存在问题。

尝试替换这个:

\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.3pt}

有了这个:

\pagestyle{showlocs}

您应该得到正确的框架;showlocs页面样式在 Memoir 手册第 7.4 节中描述。

相关内容