如何手动格式化 \ointctrclock?

如何手动格式化 \ointctrclock?

对于 wordpress 帖子,我无法使用该txfonts包执行以下操作:

\ointctrclockwise

我该如何手动格式化它?

答案1

根据WordPress 的 LaTeX 支持加载了以下软件包:

  • amsmath
  • amsfonts
  • amssymb

穷人的解决方案可能是这样\displaystyle的:

\documentclass{article}
\usepackage{amssymb}
\begin{document}
\[
  \mathop{\rlap{$\mkern5.5mu\circlearrowright$}\int_0^\infty}
  =
  \mathop{\rlap{$\mkern5.5mu\circlearrowright$}\int\limits_0^\infty}
\]
\end{document}

结果 \displaystyle

厌恶\textstyle

\documentclass{article}
\usepackage{amssymb}
\begin{document}
\[
  \mathop{\rlap{$\vcenter{\hbox{$\scriptstyle\circlearrowright$}}$}{\textstyle\int_{\,0}^\infty}}
  =
  \mathop{\rlap{$\vcenter{\hbox{$\scriptstyle\circlearrowright$}}$}{\textstyle\int\limits_{0}^{\hbox to 0pt{\hss$\scriptstyle\infty$\hss}}}}
\]
\end{document}

结果 \textstyle

评论:

  • \vcenter用于\circlearrowright围绕数学轴垂直居中。
  • \hbox to 0pt{\hss ... \hss}需要更长的下标/上标来忽略它们的宽度。

  • 在这种\nolimits情况下,下标会稍微向右移动,以避免与圆发生碰撞。

答案2

我的建议是用粗体 \wedge 和普通 \oint 组合字符。以下代码使用 AMS 数学字体和 10pt 大小进行了调整。如果您使用不同的大小,则需要在代码中编辑尺寸。

\font\f=cmbsy7 at2.5pt
\def\ointctrclockwise{\mathop
   {\oint \kern-4.46pt\raise1.8pt\hbox{%
    \rlap{\f\char"5E}\kern.1pt\rlap{\f\char"5E}}}\limits}

结果:

在此处输入图片描述

相关内容