我想以某种方式创造我的极限。
这是我现在写限制的方式:
\underset{x \to x_0}\lim f(x) = \ell
How could I make it like \Lim{x \to \x_0} f(x) = \ell
So this would be equivlane to
\underset{x \to x_0}\lim f(x) = \ell
但也可以使其适用于另一个数字或无穷大,例如:
\Lim{n \to \infty} f(x) = \ell
这等同于 ``` \underset{n \to \infty}\lim f(x) = \ell
答案1
欢迎来到TeX.SE
\newcommand{\test}[1]{#1} and the usage is \test{print test}
您必须在方括号和圆括号内传递参数的数量,必须提及参数的样式,例如,
\newcommand{\testing}[2]{\textit{#1}\quad \textbf{#2}} and the usage is \testing{this}{is for test}
希望这对你有帮助...
平均能量损失
\documentclass{book}
\usepackage{mathtools}
\begin{document}
\newcommand{\Limm}[1]{\underset{#1}{\lim}}
$\Limm{Test}$
\vspace{3pc}
%%Another Method
\newcommand{\limm}[1]{\lim\limits_{#1}}
$\limm{Test}$
\end{document}