假设我有一张图片my_image.png
,正在使用以下命令将其加载到我的 LaTeX 文档中:
\begin{figure}
\includegraphics[width=0.5cm]{my_image.png}}
\end{figure}
有没有办法告诉 LaTeX 只渲染特定的矩形部分(百分比) 的原始图像?
例如,假设我只想渲染裁剪的图像:
5%
原始图像的修剪宽度来自左边10%
原始图像的修剪宽度来自正确的15%
原始图像的修剪高度来自顶部20%
原始图像的修剪高度来自底部
答案1
\documentclass{article}
\usepackage{graphicx}
\usepackage{adjustbox}
\begin{document}
\adjustbox{trim={.05\width} {.2\height} {0.1\width} {.15\height},clip}%
{\includegraphics[width=0.5cm]{cupdot.png}}
\end{document}
由于不产生深度,您可以使用知道图像的和的\includegraphics
事实。\adjustbox
\width
\height