我在图中包括了三幅图像\subcaptionbox
,但问题是其中一张垂直图像自动旋转了 90°,而我并不想这样。有什么方法可以避免这种旋转吗?我不想更改每张旋转的图像。在代码中,它被旋转,因此可以垂直。
\documentclass[12pt,a4paper,titlepage, oneside]{book}
\usepackage[export]{adjustbox}
\usepackage{subcaption}
\begin{document}
\begin{figure}[!h]
\begin{framed}
\centering
\subcaptionbox{\label{fig:labprob}}{%
\includegraphics[width=.345\textwidth,angle=-90]{2probetas.jpg}%
}\hspace{0.2cm}
\subcaptionbox{\label{fig:labpump}}{%
\includegraphics[width=.3\textwidth,height=4.5cm]{labpump.jpg}%
}\hspace{0.2cm}
\subcaptionbox{\label{fig:labbuch}}{%
\includegraphics[width=.3\textwidth]{2Buchner.jpg}%
}
\end{framed}
\caption{Equipment and steps for the suspensibility test. (a) Graduated cylinders (b) Peristaltic pump (c) Vacuum and Büchner funnel}
\label{fig:suspensibilityequip}
\end{figure}
\end{document}