예를 들어,
\includegraphics[width=0.5\textwidth]{Example.jpg}
동일한 너비 비율에 따라 높이도 자동으로 조정되나요?
답변1
및 키 width
를 height
다른 키 없이 사용할 수 있으며, 이 경우 이미지의 가로 세로 비율이 유지되고 각각 해당 너비 또는 높이로 크기가 조정됩니다. 따라서 \includegraphics[width=\textwidth]{<file>}
및 \includegraphics[height=\textheight]{<file>}
둘 다 종횡비를 유지합니다.
또 다른 사용법은 두 가지를 동시에 사용하는 것입니다. 이 경우 이미지는 지정된 width
및 를 갖는 두 치수 height
와 일치하도록 왜곡되어 \includegraphics[width=\textwidth,height=\textheight]{<file>}
정확하게 해당 치수를 갖게 됩니다.
세 번째 변형은 옵션과 추가 옵션을 모두 사용하는 것입니다 keepaspectratio
. 이 경우 이미지는 종횡비를 유지하고 지정된 값보다 더 큰 너비나 높이를 갖지 않고 최대한 크게 크기가 조정됩니다. 따라서 \includegraphics[keepaspectratio,width=\textwidth,height=\textheight]{<file>}
왜곡되지 않고 이러한 제약 조건을 유지하면서 가능한 가장 큰 크기를 갖게 됩니다.
세 가지 변형을 사용하는 예제 문서:
\documentclass[]{article}
\usepackage[]{graphicx}
\begin{document}
\includegraphics[width=5cm]{example-image-duck}
\includegraphics[height=4cm]{example-image-duck}
\includegraphics[width=5cm,height=4cm]{example-image-duck}
\includegraphics[keepaspectratio,width=5cm,height=4cm]{example-image-duck}
\end{document}