我想要获得的符号应该像符号“\pm”。
答案1
您需要使用的符号由以下命令生成:
\divideontimes
答案2
以下是使用 unicode 的一些可能性(仅作为 Adam 答案的示范性补充)。此符号的 Unicode 为U+22C7。
% arara: lualatex
\documentclass{article}
\usepackage{fontspec}
\usepackage{unicode-math}
\begin{document}
\noindent\setmainfont{code2000.ttf}\symbol{"22C7}\setmainfont{quivira.otf}\symbol{"22C7}\setmainfont{symbola.ttf}\symbol{"22C7}\\
$\divideontimes$\setmathfont{XITS Math}$\divideontimes$\setmathfont{Asana Math}$\divideontimes$\setmathfont{TeX Gyre Pagella Math}$\divideontimes$
\end{document}
PS:如果您想使用第一行符号之一,则必须将其包装在命令中\mathrel{}
。