\hslash 与其他字母

\hslash 与其他字母

我想知道如何制作像 这样的字符\hslash,但用“d”代替“h”。我知道 是\hbar使用 定义的\mathchar'26,那么 中的斜线是否有类似的字符\hslash

答案1

\hslash符号是一个独特的字形。以下是通过缩放、旋转和增加减号得到的模拟:

\documentclass{article}
\usepackage{amssymb,graphicx}
\newcommand{\hslashslash}{%
  \raisebox{.9ex}{%
    \scalebox{.7}{%
      \rotatebox[origin=c]{18}{$-$}%
    }%
  }%
}
\newcommand{\dslash}{%
  {%
   \vphantom{d}%
   \ooalign{\kern.05em\smash{\hslashslash}\hidewidth\cr$d$\cr}%
   \kern.05em
  }%
}
\begin{document}
$\hslash\ne\dslash^2$
\end{document}

在此处输入图片描述

相关内容