![아래 표기된 같음 기호](https://rvso.com/image/305903/%EC%95%84%EB%9E%98%20%ED%91%9C%EA%B8%B0%EB%90%9C%20%EA%B0%99%EC%9D%8C%20%EA%B8%B0%ED%98%B8.png)
조건/범위를 아래에 적어서 간단한 = 기호를 구현할 수 있는 미친 방법이 없을까요? 특히 , 등호 아래에 like in alimit라고 쓰여 있는 (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}