%20.png)
먼저 내 예:
\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): 첫 번째 페이지에는 제목이 표시되고 두 번째 페이지에는 그림이 표시됩니다. 같은 페이지에 두 가지를 모두 표시하고 싶습니다. 수백 줄의 소스 코드 없이 이것을 어떻게 실현할 수 있습니까?
문제(예#2): 추가적인 혼란스러운 크기 조정이 포함된 빈 페이지.
비슷한 질문이 이미 제기되었지만 문제를 현명하게 해결할 적절한 해결책이 없습니다. 그림이 아닌 표에 관한 질문이 거의 있습니다.
지원 주셔서 감사합니다 :)
답변1
두 번째 예는 사진 크기에 맞는 치수를 선택한 경우 작동합니다. 예를 들어:
\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}
다음을 제공합니다:
이것이 당신이 찾고 있는 것인가요?