为什么这幅图像看起来这么小?

为什么这幅图像看起来这么小?

我正在尝试插入图像,将其缩放到文本大小并旋转它,使用以下示例:

\documentclass{memoir}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=\textwidth,height=\textheight,keepaspectratio,angle=90]{bhuta1.JPG}
\end{figure}
\end{document}

图像是这里。如下所示,图像看起来很小,为什么会这样,我该如何解决这个问题?

输出

答案1

你的图像看起来比我预期的要小。也比我用 pdflatex 得到的要小,但你的参数写反了,它们是从左到右读取的,所以你需要

在此处输入图片描述

\documentclass{memoir}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=\textheight,height=\textwidth,keepaspectratio,angle=90]{bhuta1.JPG}
\end{figure}
\end{document}

宽度基于文本高度在旋转之前进行缩放。

相关内容