“棍棒”组合原理的符号

“棍棒”组合原理的符号

棍棒组合原理“stick”有一个特殊符号。您能帮我找出 Latex 中生成此符号的命令是什么吗?

答案1

论文发表于论文集,并且对于大多数 arXiv 论文,TeX 源是公开的。单击“访问论文”框中的“其他格式”,然后选择“下载源”。

查看序言,我们发现作者用来创建“棍子”符号的以下代码。

\newcommand{\stickT}{%
\setbox255=\hbox{\raise1ex\hbox{$\hspace{0.2pt}\,\bullet\,$}}
\mathord{\rlap{\hbox to\wd255{\hss\hbox{$|$}\hss}}
\box255}
}
\newcommand{\stickS}{%
\setbox255=\hbox{\raise0.6ex\hbox{$\scriptstyle\bullet$}}
\mathord{\rlap{\hbox to\wd255{\hss\hbox{$\scriptstyle|$}\hss}}
\box255}
}
\newcommand{\stick}{{\mathchoice{\stickT}{\stickT}{\stickS}{\stickS}}}

答案2

我认为你应该创建 \newcommand{\dotabovebar}{\overset{\bigcirc}{{|}}} \dotabovebar 或者,\newcommand{\dotabovebar}{\overset{\bullet}{{|}}} \dotabovebar

$\newcommand{\dotabovebar}{\overset{\bigcirc}{{|}}} \dotabovebar$或者, $\newcommand{\dotabovebar}{\overset{\bullet}{{|}}} \dotabovebar$

相关内容