有没有一种不疯狂的方法可以实现一个简单的 = 符号,并在其下写上条件/范围?特别是,等号下像极限一样写在(expr1) = (x->a) (expr2)
哪里?(x->a)
答案1
像这样?
\documentclass{article}
\newcommand\underrel[2]{\mathrel{\mathop{#2}\limits_{#1}}}
\begin{document}
$x \underrel{x\to a}{=} a$
\end{document}
您还可以添加一个可选参数,使您可以让底部内容向左和向右溢出。
\documentclass{article}
\usepackage{mathtools}
\newcommand\underrel[3][]{\mathrel{\mathop{#3}\limits_{%
\ifx c#1\relax\mathclap{#2}\else#2\fi}}}
\begin{document}
$
x \underrel{x\to a}{=} a
\quad
x \underrel[c]{x\to a}{=} a
$
\end{document}