怎样把下面这个带上下标注的双箭头画出来?想要达到的效果如下图
操作系统:Windows 10
安装的发行版:TEX Live 2022
编辑器:WinEdt
编译命令:XeLatex
可以看看这个宏包 extarrows,但是箭头并没有分开,分开的话,可以自己定义了。
\documentclass[a4paper]{article}
\usepackage{amsmath}
\makeatletter
\newcommand*{\doublerightarrow}[2]{\mathrel{
\settowidth{\@tempdima}{$\scriptstyle#1$}
\settowidth{\@tempdimb}{$\scriptstyle#2$}
\ifdim\@tempdimb>\@tempdima \@tempdima=\@tempdimb\fi
\mathop{\vcenter{
\offinterlineskip\ialign{\hbox to\dimexpr\@tempdima+1em{##}\cr
\rightarrowfill\cr\noalign{\kern.5ex}
\rightarrowfill\cr}}}\limits^{\!#1}_{\!#2}}}
\newcommand*{\triplerightarrow}[1]{\mathrel{
\settowidth{\@tempdima}{$\scriptstyle#1$}
\mathop{\vcenter{
\offinterlineskip\ialign{\hbox to\dimexpr\@tempdima+1em{##}\cr
\rightarrowfill\cr\noalign{\kern.5ex}
\rightarrowfill\cr\noalign{\kern.5ex}
\rightarrowfill\cr}}}\limits^{\!#1}}}
\makeatother
\begin{document}
$A\doublerightarrow{a}{bcdefgh}B$
$A\triplerightarrow{d_0,d_1,d_2}B$
\end{document}
选自:https://tex.stackexchange.com/questions/25053/easy-way-to-type-more-kinds-of-arrows
谢谢您的解答,祝身体健康,万事如意!