Dans une boîte, j'insère une image et je l'incline : \documentclass{standalone} \usepackage{graphicx} \begin{document} \fbox{\includegraphics[width = 10 cm, angle = 15]{example-image-duck}} \end{document} La boîte est restée horizontale. Comment faire pour que la Écrire Posée 26 Oct '21, 14:01 Pathe ♦♦ |
Avec \documentclass[border=1mm]{standalone} \usepackage{graphicx} \begin{document} \rotatebox{15}{\fbox{\includegraphics[width = 10 cm]{example-image-duck}}} \end{document} Ou avec l'extension \documentclass[border=1mm]{standalone} \usepackage[export]{adjustbox} \usepackage{xcolor} \begin{document} \adjustimage{width=10cm,fbox,rotate=15}{example-image-duck}% \includegraphics[width=10cm,fbox,rotate=15]{example-image-duck}% \end{document} Publiée 26 Oct '21, 14:03 samcarter |