+
除了+
数学模式之外,我还想使用不同的符号,最好是比标准符号更粗的符号。
我目前正在使用包装\pmb{+}
中的amsbsy
产品,但是它对我来说有点太瘦了,并且末端看起来有点尖。
我知道\ding{58}
来自pifont
包以及\Plus
来自bbding
,它们似乎都是非数学模式符号,并且在数学符号旁边看起来真的很糟糕。
除了自己绘制符号之外,我是否还缺少其他可以生成粗体 + 的选项?
答案1
您可以从使用的字体中bm
访问粗体(在标准设置中,这是文本中使用的字体) 。+
\boldmath
\bfseries
\documentclass{article}
\usepackage{bm}
\begin{document}
\showoutput
$1 + 2 \bm{+} 3$
\end{document}
答案2
您可以使用\boldsymbol
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\Huge
$ +\boldsymbol{+}$
\end{document}
不幸的是,它并没有那么大胆。
答案3
我屈服了,选择了绘图选项,如下所示。这当然不是最佳选择,因为它无法以任何方式适应所使用的字体大小,这应该通过调整比例因子来实现。如果有任何巧妙的方法可以做到这一点,那将很有趣。
\documentclass{article}
\usepackage{tikz}
\newcommand{\Plus}{\mathord{\begin{tikzpicture}[baseline=0ex, line width=1, scale=0.13]
\draw (1,0) -- (1,2);
\draw (0,1) -- (2,1);
\end{tikzpicture}}}
\begin{document}
$A \Plus B$
\end{document}