如何通过参数定制图像的大小?

如何通过参数定制图像的大小?

与此链接相关,创建命令以在问题中内联图像?有没有办法修改图像?例如,\Image[20][10]高度为 20,宽度为 10。

答案1

在此处输入图片描述

\documentclass[border=12pt]{standalone}
\usepackage{graphicx}
\newcommand{\ImportGraphics}[3]{\includegraphics[width=#1,height=#2]{#3}}
\begin{document}
\ImportGraphics{2cm}{4cm}{example-image}
\end{document}

相关内容