3

I want to use the symbol ⥁ (U+2941) in Overleaf, but when I try changing the compiler from pdflatex to XeLatex nothing happens. I also tried the advice given in here but it does not work. What can I do?

My code:

\documentclass[12pt,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\begin{document}
    $n⥁c$
\end{document}
David Carlisle
  • 757,742
  • Maybe the problem was due to the fact that I used folders and then wnated to use the symbol in one of the chapters. In general, a short TeX example code would be the following: – Assassinos Sep 15 '21 at 19:56
  • The problem, as in the link answer you linked, is that you need to use a font that contains that symbol. One way to do it is to follow Ulrike's answer. Another way is to load a font like Stix Two – Luis Turcio Sep 15 '21 at 20:04

1 Answers1

5

You need a suitable font eg with lualatex or xelatex

enter image description here

\documentclass{article}

\usepackage{unicode-math} \setmathfont{Stix Two Math}

\begin{document}

$ A ⥁ B \cwcirclearrow C $ \end{document}

David Carlisle
  • 757,742