22

I'd like to extend an arrow to allow better readability of characters which are overset using \overset{}{} .

Right now I have

 \overset{k_1}{\rightleftharpoons}

which produces:

alt text

and this leaves the subscript awfully close the to harpoon arrow. Thus, is there anyway to just extend the character length?

EricR
  • 3,117
  • 9
  • 29
  • 33

1 Answers1

25

There are several packages supporting extensible arrows:

An example suitable for your formula, also demonstrating the optional argument for text under the arrows:

\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[ \xrightleftharpoons[k_2]{\,k_1\,} \]
\end{document}

Output:

result

Caramdir
  • 89,023
  • 26
  • 255
  • 291
Stefan Kottwitz
  • 231,401