[Tex/LaTex] What are the LaTeX codes for clockwise and counter-clockwise integrals (∱ and ⨑)

integralmath-modesymbols

If you do know, which package do I need to use? Thanks.

Best Answer

With the MnSymbol package, you could use the following symbols:

\documentclass{article}

\usepackage{MnSymbol}

\begin{document}

\[
\rcirclerightint
\lcirclerightint
\rcircleleftint
\lcircleleftint
\]

\end{document}

enter image description here

(other package might know these symbols as \ointclockwise and \ointctrclockwise)


If you only want half a circle, you can use the mathdesign package:

\documentclass{article}

\usepackage[charter]{mathdesign}

\begin{document}

\[
\intclockwise
\]

\end{document}

enter image description here

Related Question