I have some images embebed in pdf file. Same formula/coding but some image rotated auto (wrong) and some image are correct. Image file: jpg.
My minimal coding:
\documentclass{article}
\usepackage[a4paper,landscape,left=0.5cm,right=5.0cm,top=0.5cm,bottom=0.5cm]{geometry}
\usepackage{subfigure}
\usepackage{wrapfig,floatrow}
\usepackage{caption}
\usepackage{tikzsymbols}
\begin{document}
\begin{minipage}{3cm}
\captionsetup{skip=0pt,minmargin=0cm, maxmargin=0cm,justification=centering}
{ \begin{center}
\includegraphics[width=2cm,angle=0,rotate=0]{"example-image-a"}
\\
\textcolor{red}{Name}
\end{center}
}
\end{minipage}%
\end{document}
I think maybe: images rotated auto when height > width of image.
I added “rotate = 0, angle = 0” into code, but no effect.
Please help.
Thank in advance
angle=0
androtate =0
are not options of\includegraphics
. You will find the options applicable to this command in thegraphicx
package manual here: ctan.math.illinois.edu/macros/latex/required/graphics/…edit
button) instead of answering in the comments.