我想知道如何使用 \includegraphics 配置图像
答案1
首先,请确保您已经\usepackage{graphicx}
在序言中插入了一行(\documentclass
在行和 之间\begin{document}
),尽管在某些文档类中,由于beamer
包已经默认加载,所以这并不总是必要的(但通常是必要的)。
与许多其他 LaTeX 命令一样,\includegraphics
可以通过括号之间的可选参数进行“配置”,在花括号之间的强制参数(PDF、JPG 或 PNG 图像的文件名,带或不带扩展名)之前。即:
\includegraphics[option,option, ... ]{filename}
例如:
\includegraphics[width=6cm,height=4cm,keepaspectratio]{example-image}
最小工作示例(MWE):
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[scale=.10,angle=45]{example-image.png}
\end{document}
可用的选项如width
或keepaspectratio
在第 4.4 节中有描述color、graphics 和 graphicx 软件包的用户手册。您还可以使用选项查看此站点上的数千个 MWE \includegraphics
。