3

I need something like $\curvearrowright$, but pointing in both directions. This is for a commutative diagram. Thank you!

Adam Liter
  • 12,567
  • 1
    Welcome to the site! How about \curvearrowleftright from mathabx? – cmhughes Mar 09 '14 at 03:57
  • @cmhughes Thanks, the only problem with that one is it does not curve quite enough. Instead, I just learned to use mathrlap in mathtools, then overlayed the left and right curved arrows. I had to mess with the spacing to get them to align. – Forever Mozart Mar 09 '14 at 04:30

1 Answers1

1

Here are two variants: One stolen from Heiko from his answer

\documentclass{article}
\usepackage{mathtools,amssymb,graphicx}
\newcommand{\myarrow}{\scalebox{1.2}[2]{$\mathclap{\curvearrowleft}\mkern2.2mu
                                                 \mathclap{\curvearrowright}$}}

% from package mathabx:
\DeclareFontFamily{U}{mathb}{\hyphenchar\font45}
\DeclareFontShape{U}{mathb}{m}{n}{
      <5> <6> <7> <8> <9> <10> gen * mathb
      <10.95> mathb10 <12> <14.4> <17.28> <20.74> <24.88> mathb12
      }{}
\DeclareSymbolFont{mathb}{U}{mathb}{m}{n}
\DeclareFontSubstitution{U}{mathb}{m}{n}
\DeclareMathSymbol{\downtouparrow}{3}{mathb}{"FF}

\newcommand*{\Myarrow}{%
  \scalebox{1}[-2]{$\mathclap{\downtouparrow}\mkern0.5mu
                                                 \mathclap{\reflectbox{$\downtouparrow$}}$}
}
\begin{document}
\[
 \myarrow 
\]

\[
\Myarrow
\]

\end{document}

enter image description here