导出为 .pdf 时如何防止图像旋转

导出为 .pdf 时如何防止图像旋转

在 Overleaf 中预览时图像显示正常,但当我下载 pdf 时,图像在框架内旋转。如何防止图像本身旋转?

\begin{figure}
\includegraphics[width=13.5cm,height=17.5cm]{L6P1.jpg}
\caption{Figure 1: Page 1}
\end{figure}

在此处输入图片描述 在此处输入图片描述

答案1

我其实不知道正确答案,但我只是旋转了 270 度,你必须反转宽度和高度,所以代码将如下所示:

\begin{figure}
\includegraphics[width=17.5cm,height=13.5cm, angle = 270]{L6P1.jpg}
\caption{Figure 1: Page 1}
\end{figure}

相关内容