将图像旋转很小的角度,例如 0.5 度

将图像旋转很小的角度,例如 0.5 度

有没有办法将图像旋转很小的角度?我熟悉 \includegraphics[angle=...]{image.png} 的“角度”选项,但似乎它只接受整数值,并且不适用于 0.5 度旋转。

答案1

angle选项也适用于小于 1 的数字。显然效果不太明显,但请看以下内容:

\documentclass[]{standalone}

\usepackage[]{graphicx}

\begin{document}
\includegraphics[height=15cm]{example-image-duck-portrait}%
\includegraphics[height=15cm,angle=0.5]{example-image-duck-portrait}
\end{document}

在此处输入图片描述

相关内容