How do I type 2 parallel arrows in MathJax ? And even in LaTeX ? Without an enviroment. From object $A$ to an obeject $B$.
Asked
Active
Viewed 677 times
2
-
1The resources identified here should always be consulted first when trying to identify a symbol: How to look up a symbol or identify a math alphabet? – barbara beeton Apr 12 '20 at 20:36
2 Answers
4
This symbol?
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
\( A \rightrightarrows B \)
\end{document}
The same command works in MathJax.
Vincent
- 20,157
4
\documentclass[border=12pt]{standalone}
\usepackage{amssymb}
\begin{document}
\begin{tabular}{ccc}
$A\circlearrowleft B$ & $A\leftleftarrows B$ & $A\rightleftarrows B$ \\
$A\circlearrowright B$ & $A\leftrightarrows B$ & $A\rightrightarrows B$ \\
$A\curvearrowleft B$ & $A\leftrightsquigarrow B$ & $A\rightsquigarrow B$ \\
$A\curvearrowright B$ & $A\Lleftarrow B$ & $A\Rsh B$ \\
$A\dashleftarrow B$ & $A\looparrowleft B$ & $A\twoheadleftarrow B$ \\
\end{tabular}
\end{document}
Display Name
- 46,933

