我正在使用\includegraphics
LaTeX 的功能在文档中插入图像,但图像太大,只能显示一部分。我该怎么办?
我知道这不是由于规模造成的,因为我已将其缩放到十分之一,[scale=..]
但它并没有改变。
我尝试将其保存为 pdf 并更改了光栅化和边距数字,但没有成功。但我可能做错了。
答案1
提问时请提供一个最小工作示例。不过,在这种情况下,您只需使用提供的选项之一即可graphicx
调整图像大小。
例如,
\includegraphics[width=.9\linewidth]{example-image-a}
如果它太宽或
\includegraphics[height=.25\textheight]{example-image-b}
如果它太高或
\includegraphics[width=.9\linewidth,height=.25\textheight,keepaspectratio]{example-image-c}
如果你不确定哪一个。
答案2
这两行代码就将图像奇迹般地纳入了文章大小之中!
\usepackage[export]{adjustbox}
\includegraphics[max size={\textwidth}{\textheight}]{<image>}