I would like to be able to call in a rectangular image into Latex and have it appear as a parallelogram instead of a rectangle.
For instance,
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{minipage}[]{\textwidth}
\centering
\includegraphics[width=0.45\textwidth]{example-image}
\end{minipage}
\end{document}
produces the rectangular image
QUESTION: How may I have it appear as a parallelogram inclined slightly to the right (say, base angles 85 degrees and 95 degrees, respectively) with the lengths of the corresponding sides the same as that of the rectangle?
Something like this:
Thank you.


\slantboxwill give a parallelogram withwidthas the base andheightas the vertical height, not the side length. – Willoughby Mar 31 '21 at 20:03