我目前正在写我的硕士论文。我有一个很大的类图,我想将其作为 A3 页添加到 A4 文档中。不幸的是,使用以下命令似乎会破坏我的文档布局:
\afterpage{% Insert after the current page
\clearpage
\KOMAoptions{paper=A3,paper=landscape,pagesize}
\recalctypearea
\begin{figure}[H]
\centering
\includegraphics[height=\textheight,width=\textwidth,keepaspectratio]{Bilder/Class_Diagramm.png}
\caption{Klassendiagramm der Gesamtsoftware}
\label{fig3_1:}
\end{figure}
\clearpage
\KOMAoptions{paper=A4,pagesize}
\recalctypearea
}
输出看起来像这样,但我只想要一张 A3 页面,其中包含全 A3 尺寸的图形
在我的头文件中我也使用
\documentclass[%
a4paper, % Papierformat
oneside, % einseitiger Druck
%twoside, % zweiseitiger Druck
12pt, % Schriftgröße
onecolumn, % einspaltiger Text
%twocolumn, % zweispaltiger Text
openright, % Kapitel dürfen nur auf einer rechten Seite beginnen
openany, % Kapitel dürfen rechts oder links beginnen
parskip=half, % eine halbe Zeile Abstand zw. Absätzen
headsepline, % Kopfzeilenlinie
footsepline, % Fußzeilenlinie
bibliography=totoc, % Bibliographie im Inhaltsverzeichnis
hidelinks, % Verstecke Boxen um die Hyperlinks
%idxtotoc % Index im Inhaltsverzeichnis
]{scrbook}
\usepackage[
left=25mm,
right=25mm,
top=30mm,
bottom=40mm,
%includeheadfoot,
]{geometry}
有人知道为什么布局中存在这种奇怪的交互吗?这可能是由于几何和 koma 之间的相互作用造成的吗?
答案1
我找到了一个适合我的解决方案
\newpage
\storeareas\normaleinstellung
\KOMAoptions{paper=a3,paper=landscape}
\addtolength{\textwidth}{.5\paperwidth}
\activateareas
\storeareas\spezialeinstellung
\begin{figure}[H]
\centering
\includegraphics[height=\textheight,width=\textwidth,keepaspectratio]{Bilder/Class_Diagramm.png}
\caption{Klassendiagramm der Gesamtsoftware}
\label{fig3_2:klassendiagramm}
\end{figure}
\clearpage
\normaleinstellung
我使用了 \newpage 而不是 clearpage,这样就不会在图形前添加空白页。使用 \storeareas 有助于在布局之间切换。