我有这个代码:
\documentclass[draft]{book}
\usepackage{geometry}
\geometry{paperheight=240mm
,paperwidth=170mm
,top=30mm
,bottom=30mm
,inner=25mm %% left
,outer=30mm %% right
,headsep=10mm
,nomarginpar
,heightrounded
,verbose
,showframe
}
\begin{document}
The quick brown fox jumps over the lazy dog.
\clearpage
The quick brown fox jumps over the lazy dog.
\clearpage
The quick brown fox jumps over the lazy dog.
\end{document}
编译时我得到两次
Overfull \hbox (0.4pt too wide) has occurred while \output is active
这些超额内容仅影响奇数页。
如果我只评论showframe
选项,则不会Overfull \hbox...
发生任何事情。如果我只评论选项,结果也是一样nomarginpar
。
不用说,我已经查阅过geometry
包装文档,但没有成功。
为什么会发生这种情况?