裁剪与(新)几何形状之间的干扰

裁剪与(新)几何形状之间的干扰

\newgeometry我在使用该包时遇到了命令的奇怪行为crop。第一次调用后,\newgeometry页面布局的居中丢失,并且无法通过调用恢复\restoregeometry

我应该怎么做才能避免失去定心?

一些图片可以让您明白我在说什么(用细红线标记物理边缘):

第 1 页 第2页 第 3 页

MWE 创建上面显示的页面:

\documentclass{scrbook}
% driver=none is recommended when using geometry and crop together
% geometry documentation - Known problems:
% With crop package and mag not equal 1000, center option of crop doesn't work well.
% Therefore I have added mag=1000 (although it should be the default value)
\usepackage[a4paper,twoside,showframe,driver=none,mag=1000]{geometry}
\usepackage[width=216truemm, height=303truemm, center, frame, noinfo]{crop}
\usepackage{blindtext}

\begin{document}
\blindtext
\newgeometry{showframe, margin=1cm, includefoot, includehead, mag=1000}
\blindtext
\restoregeometry
\blindtext
\end{document}

答案1

\makeatletter\CROP@center\makeatother每次几何形状改变后添加。

相关内容