如何将右箭头在图形之间向上移动?

如何将右箭头在图形之间向上移动?

目前我有这个代码:

\begin{figure}
\centering
\includegraphics[width= 0.4\textwidth]{before}
$\rightarrow$
\includegraphics[width= 0.4\textwidth]{after}
\end{figure}

生成以下内容:

在此处输入图片描述

有什么方法可以将右箭头移到图形之间而不是底部?特别是,我想知道是否可以在不重做我的 Tikz 图形的情况下做到这一点。

答案1

  • 请始终提供 MWE,而不仅仅是代码片段。
  • 环境Figure不是标准浮点环境,您在哪里找到它或定义它?
  • 看看以下解决方案是否适合您:

\documentclass{article}
\usepackage[export]{adjustbox} % as suggested @daleif in his comment

\begin{document}
    \begin{figure}[ht]
    \setkeys{Gin}{width=0.4\textwidth}
\[
\includegraphics[valign=c]{example-image-duck}%{before}
    \longrightarrow
\includegraphics[valign=c]{example-image-duck}%{after}
\]
    \end{figure}
\end{document}

在此处输入图片描述

相关内容