我需要哪个 LaTeX 包来使用 \questeq?

我需要哪个 LaTeX 包来使用 \questeq?

我想使用 QUESTION EQUAL TO 字符,它的命令是\questeq。我知道它所在的“类别”是mathrel

答案1

包裹stixlibertinust1math提供该符号。

在 Lua/XeLaTeX 中,该符号还可以用于unicode-math。 检查符号列表看看哪些字体支持\questeq

/usr/local/texlive/2017/texmf-dist/tex/latex $ grep -r '\\questeq'
stix/stix.sty:\stix@MathSymbol{\questeq}                  {\mathrel}{integrals}{"90}
libertinust1math/libertinust1math.sty:\libus@MathSymbol{\questeq}                  {\mathrel}{symbols}{"70}
unicode-math/unicode-math-table.tex:\UnicodeMathSymbol{"0225F}{\questeq

否则,您可以使用包自己构建该符号amsmath。但这不是一个单一的符号。

\documentclass{article}
\usepackage{amsmath}

\begin{document}

$a \overset{?}{=} b$

\end{document}

相关内容