使用回忆录修复修剪尺寸 6.125 英寸 x 9.25 英寸

使用回忆录修复修剪尺寸 6.125 英寸 x 9.25 英寸

我尝试过:

\documentclass[10pt,smallroyalvopaper,oldfontcommands]{memoir} 

\usepackage{lipsum}

\begin{document}

\lipsum[1-9]

\end{document}

由于使用了选项,我得到了与相同的PDF输出,但我需要的 Trim 应该与选项相同,并且页面的两侧也应该相等,即,应该在和页面上都相等......Trim size6.175 inches x 9.25 inchessmallroyalvopaper6.125in x 9.25 inchestext widthheightsmallroyalvopapertext widthcenterTrim sizeoddeven

请指教...

答案1

Peter Wilson答案很好,只需稍加添加,修改后的内容MWE为:

    % memtrimprob.tex SE 642484

\documentclass[10pt,smallroyalvopaper,oldfontcommands]{memoir} 

\stockheight=9.25in
\stockwidth=6.125in
\settrimmedsize{\stockheight}{\stockwidth}{*} % set the trimmed size
\setlrmargins{*}{*}{*} % equal left/right margins
\checkandfixthelayout

\usepackage{lipsum}

\begin{document}

\lipsum[1-9]

\end{document}

在此处输入图片描述

答案2

我认为这对你有用。

% memtrimprob.tex SE 642484

\documentclass[10pt,smallroyalvopaper,oldfontcommands]{memoir} 

\settrimmedsize{9.25in}{6.125in}{*} % set the trimmed size
\setlrmargins{*}{*}{*} % equal left/right margins
\checkandfixthelayout

\usepackage{lipsum}

\begin{document}

\lipsum[1-9]

\end{document}

阅读手册了解更多信息,尤其是第二章布局页面。

根据原帖评论进行编辑

请阅读手册,特别是第 2 章布局页面

打印的纸张尺寸(通常由memoir课程纸张选项指定--smallroyalvopaper在您的情况下)与出版时的纸张尺寸--裁切尺寸之间存在区别。

在印刷和出版的现实世界中,印刷是在特定尺寸的纸张上进行的,然后将其裁剪成发行给公众的尺寸。裁剪后的尺寸显然小于原稿尺寸,因为它是通过物理切割印刷好的原稿纸张的一部分而获得的。

我的 MWE 提供了您想要的修剪尺寸。在我的 MWE 中,您可以更改选项smallroyalvopapera4paper但仍然获得相同的修剪尺寸。

相关内容