这个符号怎样制作?

这个符号怎样制作?

这些符号代表矢量力学中的力矩“扭矩”。我确信我在某本书上看到过这个符号,但我不记得了。

在此处输入图片描述

答案1

用的\longrightarrow太多,但是\rightarrow太短。

\documentclass{article}
\usepackage{amsmath,amssymb}

\makeatletter
\DeclareRobustCommand{\torquesymbol}{{%
  \vphantom{\circlearrowleft}%
  \mathpalette\torque@symbol\relax
}}
\newcommand{\mediumrightarrow}{\relbar\mathrel{\mkern-8mu}\rightarrow}
\newcommand\torque@symbol[2]{%
  \ooalign{%
    \hidewidth$\m@th#1\circlearrowleft$\hidewidth\cr
    $\m@th#1\mkern2mu\mediumrightarrow$\cr
  }%
}
\makeatother
\newcommand{\torque}[1]{\overset{\torquesymbol}{#1}}

\begin{document}

$\torque{M}$

\end{document}

在此处输入图片描述

答案2

尝试这个:

\documentclass{article}
\usepackage{amsmath,amssymb}

% for convenience, you may define a new command:
\newcommand{\torque}[1]{\overset{\hspace{.5em}\circlearrowleft\hspace{-.9em}\longrightarrow}{#1}}

\begin{document}
    $\overset{\hspace{.5em}\circlearrowleft\hspace{-.9em}\longrightarrow}{M}$
    or with the command:
    $\torque{M}$
\end{document}

编辑:当然你可以定义一个特定的新命令(即使 egreg 说这\longrightarrow太长,但他总是对的!)。

在此处输入图片描述

答案3

制作扭矩符号的一种方法是使用\longrightarrow\leftturn中的符号wasysymb

代码:

\documentclass{standalone}
\usepackage{wasysym}
\usepackage{scalerel}
\usepackage{stackengine}
\usepackage{graphicx} % for \scalebox macro
\newcommand\torque{%
  \ooalign{
  \hss\scalebox{1}{$\leftturn$}\hss\cr%
  \hbox{\scalebox{1}{$\longrightarrow$}}}}
\begin{document}
Torque symbol
$\torque$\\
\end{document}

产量:

在此处输入图片描述

相关内容