正确设置 A4 报告中 KOMA 单页 A3 的页面大小

正确设置 A4 报告中 KOMA 单页 A3 的页面大小

我对 A4 报告文档中的单个 A3 页面存在问题。

问题在于放置在 A3 页面左上角的 A4 区域(图像中的红线)中的内容的位置。

内有 A3 页面和 A4 区域你好

这是我用来插入单个 A3 页面的代码。 \newgeometry 命令有效,但引用了新 A3 页面左上角的“虚拟”A4 页面,因此内容(标题、图表和页码)的最终位置是错误的。

\afterpage{ % Insert after the current page
\clearpage

\KOMAoptions{paper=a3}
\recalctypearea
\newgeometry{
 %total={297mm,420mm},
 a3paper,
 left=20mm,
 top=40mm,
 tmargin=30mm,
 bottom=20mm,
 right=20mm
}
%
\begin{figure}[p]
    \centering
    \digraph{VacuumCallGraph}{
    rankdir=LR
    ratio=fill
    size="7,9!"
    %size="10,14!"
    margin=0
    V_TF_ControlLoop [label=<<b >V_TF_ControlLoop</b>> color=black height=.8 width=1.1]
    ...
}
\caption{Vacuum functions call graph}
\end{figure}

\clearpage
\KOMAoptions{paper=A4,pagesize}
\recalctypearea
}
\restoregeometry

有人可以帮助正确设置 A3 几何以填充所有 A3 区域吗?

多谢

相关内容