How does one write the two arrows that are piled on top of each other in an adjoin pair, where one is pointing to the left and the other to the right?
Tell me more
×
TeX - LaTeX Stack Exchange is a question and answer site for
users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.
|
You want If you're using AMS-LaTeX (i.e., either the
You can then say
and it will come out looking right. |
|||
|
|
$\substack{\rightarrow \\[-0.7ex] \leftarrow}$what you are looking for, assuming you have\usepackage{amsmath}in your preamble. Or you could just use$\rightleftarrows$with\usepacakge{amssymb}. – Peter Grill Feb 23 '12 at 2:32