如何在圖形之間向上移動右箭頭?

如何在圖形之間向上移動右箭頭?

目前我有這個程式碼:

\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}

在此輸入影像描述

相關內容