如何向上移动一个子图以便它与我的左子图匹配?

如何向上移动一个子图以便它与我的左子图匹配?

我怎样才能将第二个子图向上移动,以便与左图匹配?目前我有:

\begin{figure}[h]
  \includegraphics[width=4in,height=3in,keepaspectratio]{DT}
  \includegraphics[width=4in,height=3in,keepaspectratio]{randomforests}
\end{figure}

我见过一些其他使用minipage和的解决方案subfigure,但我想保持 a 和 b 的原样。

答案1

看起来你的子图标签嵌入在图形中。因此,不需要子图包来管理标签。相反,加载adjustbox包裹使用export选项并添加vadjust=t到您的\includegraphics选项中:

在此处输入图片描述

\documentclass{article}

\usepackage[export]{adjustbox}

\begin{document}

\begin{figure}[h]
  \centering
  \includegraphics
    [width=2in,height=2in,keepaspectratio,valign=t]{example-image-golden-upright}
  \includegraphics
    [width=2in,height=2in,keepaspectratio,valign=t]{example-image}
  \caption{A figure caption}
\end{figure}

\end{document}

相关内容