在 A4 文档中使用 KOMAoptions 命令时如何在 A3 页面中设置页边距

在 A4 文档中使用 KOMAoptions 命令时如何在 A3 页面中设置页边距

我正在使用KOMA选项命令:

\afterpage{ % Insert after the current page
\clearpage

\KOMAoptions{paper=a3}
\recalctypearea
\begin{figure}[htbp]
    \centering
    \includegraphics[width=1.0\textwidth]{business-schema.png}
    \caption{\texttt{vo business} schema tables}
\end{figure}
\clearpage
\KOMAoptions{paper=A4,pagesize}
\recalctypearea
}

但是,当我尝试更改(减少)该 A3 页面的边距时,我完全不知所措。我尝试使用 \newgeometry 命令,但它们将大小更改回 A4。目前,我得到的边距太宽,无论是水平还是垂直:

在此处输入图片描述

答案1

通过反复试验,我发现我可以使用\添加长度减少 A3 页面的边距,以便容纳设置为文本宽度 1.35 倍的宽图形

\afterpage{ % Insert after the current page
\clearpage

\KOMAoptions{paper=a3}
\addtolength{\hoffset}{-2.0cm}
\recalctypearea
\begin{figure}[htbp]
    \centering
    \includegraphics[width=1.35\textwidth]{}
    \caption{\texttt{vo\ business} schema tables}
    \label{fig:vo-business-schema}
\end{figure}

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

相关内容