\xleftrightharpoons
如何实现类似于 中的箭头系列风格的可扩展双鱼叉mathtools
,但两个鱼叉指向同一方向?
最好不要有 Tikz。
答案1
像这样?一个快速而肮脏的方法……
\documentclass[12pt]{article}
\usepackage{stackengine}
\usepackage{mathtools}
\newcommand{\xrightharpoonupdown}[2][-12pt]{%
\stackunder[#1]{$\xrightharpoonup{\text{#2}}$}{$\xrightharpoondown{\text{\phantom{#2}}}$}%
}%
\begin{document}
\xrightharpoonupdown{but with longer harpoons}%
\end{document}
解释:
将文本作为harpooned
第二个参数,在第一个可选项中,您可以减少上下鱼叉之间的垂直间距。如果省略,则-10pt
使用默认值。这可以在命令定义中更改,或者在命令使用过程中适当时更改。