当我将文件发送给 createspace 供其在线审阅时,它告诉我有几个页码超出了页边距,而这些页码恰好是每章开始时的页码。以下是 MWE:
\documentclass{memoir}
\usepackage[size=pocket,trim,bleed]{createspace}
\checkandfixthelayout
\begin{document}
\chapter{Chapter 1}
foo bar
\end{document}
我在用createspace
(GitHub)为此包。
编辑:有没有办法在每章开始时删除数字?
答案1
您在评论中写道,您使用该createspace
包只是因为您没有使用该geometry
包获得预期的结果。
根据createspace
您在其他地方报告的问题(这里和这里),我的建议是,除非绝对需要使用该软件包,否则最好避免使用该软件包;geometry
尽可能坚持使用更成熟的软件包。
您遇到的章节号超出文本区域的问题应该会消失。
下面的代码使用了包geometry
和不是这个createspace
包应该能给你你想要的东西;参见我对你另一个问题的回答对纸张几何形状进行详细计算。
\documentclass{memoir}
\usepackage[showframe]{geometry}
\geometry{
paperheight=8.06in,
%top=.5in,
%bottom=.5in,
paperwidth=5.185in,
%inner=.5in,
%outer=.5in,
bindingoffset=.3in,
}
\begin{document}
\chapter{My first chapter}
\chapter{My second chapter}
\end{document}
您仍需根据自己的喜好设置边距,但请注意,使用此geometry
包,
垂直页面几何形状由四种可能的长度中的三种独立的长度设置:
paperheight
=top
+textheight
+bottom
;水平页面几何形状由四种可能长度中的三种独立长度设置:
paperwidth
=inner
+textwidth
+outer
。此
bindingoffset
选项将以 为代价将内边距增加指定的长度textwidth
;此gutter
选项似乎与的createspace
等价。geometry
bindingoffset