[Tex/LaTex] Insert a special integral sign

math-modemath-operators

I'm trying to insert an integral sign that has a "C" imposed on. Specifically, I need the unicode character U+2A10, which looks like: ⨐ .

I do not want to use the stix package or XeLaTex.

Thanks!

Best Answer

Here's a sans serif c superimposed to the integral symbol:

\documentclass{article}
\usepackage{amsmath}

\newcommand{\circint}{\mathop{\mathpalette\docircint\relax}\!\int}
\newcommand{\docircint}[2]{%
  \ifx#1\displaystyle
    \displaycircint
  \else
    \normalcircint{#1}%
  \fi
}
\newcommand{\displaycircint}{\displaystyle\mathsf{c}\mkern-18mu}
\newcommand{\normalcircint}[1]{%
  \smallerc{#1}\ifx#1\textstyle\mkern-9mu\else\mkern-8.2mu\fi
}
\newcommand{\smallerc}[1]{%
  \vcenter{\hbox{$\ifx#1\textstyle\scriptstyle\else\scriptscriptstyle\fi\mathsf{c}$}}%
}

\begin{document}

$\displaystyle A+\int_a^b+\int\limits_{X}$

$\displaystyle A+\circint_a^b+\circint\limits_{X}$

$A+\circint_a^b+\circint_X$

$\scriptstyle A+\circint_a^b+\circint_X$

\end{document}

enter image description here

Related Question