
まず私の例:
\documentclass[a4paper,abstracton]{scrartcl}
\usepackage{graphicx}
\usepackage{float}
\usepackage{lscape}
\usepackage{rotating}
\begin{document}
\section{Appendix}
%EXAMPLE #1
\subsection{Iteration 1 -- Prototyp}
\begin{landscape}
\begin{figure}[H]
\centering
\includegraphics[width=0.95\linewidth]{images/it2.pdf}
\end{figure}
\end{landscape}
\newpage
%EXAMPLE #2
\subsection{Iteration 2 -- Prototyp}
\begin{figure}[H]
\centering
\rotatebox{90}{\includegraphics[width=1.5\linewidth]{images/it2.pdf}}
\end{figure}
\end{document}
結果:
問題 (例 #1): 1 ページ目には見出しが表示され、2 ページ目には図が表示されます。両方を同じページに表示したいのですが、何百行ものソース コードなしでこれを実現するにはどうすればよいでしょうか?
問題 (例 #2): 混乱を招くスケーリングが追加された空白ページ。
同様の質問がすでに寄せられていますが、問題をスマートに解決する適切な解決策はありません。ほとんどが図ではなく表に関する質問です。
サポートありがとうございます :)
答え1
2 番目の例は、画像サイズに適切な寸法を選択した場合に機能します。例:
\documentclass[a4paper,abstracton]{scrartcl}
\usepackage{graphicx}
\usepackage{float}
% \usepackage{lscape}
\usepackage{rotating}
\usepackage{showframe}
\begin{document}
\section{Appendix}
\subsection{Iteration 2 -- Prototyp}
\begin{figure}[H]
\centering
\rotatebox{90}{\includegraphics[width=0.9\textheight]{example-image-b}}
\end{figure}
\end{document}
与える:
これがあなたが探しているものですか?