2

I'm trying to write $id:G\to G$ in the form of $:id:G\circlearrowleft$ but in fact I want this arrow: enter image description here

Sandy G
  • 42,558

1 Answers1

6

Perhaps you want this:

enter image description here

Note the use of \colon instead of : for proper spacing.

\documentclass{article}

\usepackage{amssymb,graphicx}

\begin{document} $\mathrm{id}\colon G;\rotatebox[origin=c]{90}{$\circlearrowleft$}$ \end{document}

Alternatively, the MnSymbol package has the arrow \rcirclearrowleft.

enter image description here

\documentclass{article}

\usepackage{MnSymbol}

\begin{document} $\mathrm{id}\colon G\rcirclearrowleft$ \end{document}

Sandy G
  • 42,558