如何在 Overleaf 中使用 unicode 字符

如何在 Overleaf 中使用 unicode 字符

我想在 Overleaf 中使用符号 ⥁ (U+2941),但当我尝试将编译器从 pdflatex 更改为 XeLatex 时,没有任何反应。我还尝试了这里但它不起作用。我该怎么办?

我的代码:

\documentclass[12pt,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\begin{document}
    $n⥁c$
\end{document}

答案1

您需要合适的字体,例如 lualatex 或 xelatex

在此处输入图片描述

\documentclass{article}

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

\begin{document}

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

相关内容