图像之间的标记箭头

图像之间的标记箭头

在一个上一个问题展示了在图像之间添加箭头的方法。我想在图像之间添加箭头,箭头上方有文字:“单词单词单词”,箭头下方有数学符号序列,如 $\gamma k_{aj}$

答案1

一种选择是使用 mathtools 附带的可扩展箭头。

\documentclass{article} 
\usepackage{graphicx,mathtools}
\newcommand*{\vimage}[1]{\vcenter{\hbox{\includegraphics[width=1.5cm,angle=90]{#1}}}}
\begin{document}
$\vimage{example-image-a}\xRightarrow[\gamma k_{aj}]{\text{if the $j$th protein is in the complex}}
\vimage{example-image-b}\xRightarrow[\gamma k_{aj}]{\text{otherwise}}\vimage{example-image-c}$
\end{document}

在此处输入图片描述

如果你想要更漂亮的箭头,你可以使用 TiZ。

相关内容