在數學環境中如何寫下劣極限?

在數學環境中如何寫下劣極限?

我可以使用它

\mathop{\underline{\lim}}_{n \to \infty} f_n(x)

上面看起來正是我想要的樣子,但是兩次啟動運算符很奇怪,而且遠非簡單

\lim_{n \to \infty} f_n(x)

或者還可以嗎?

答案1

如果您正在使用該amsmath包,則不必定義新的運算符;包裝提供\varliminf正確的間距:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\[ \varliminf_{n \to \infty} f_n(x) \]
\end{document}

在此輸入影像描述

答案2

如果經常使用,則將其聲明為數學運算符。它促進一致性(參見一致的排版)和易用性:

在此輸入影像描述

\documentclass{article}
\usepackage{amsmath}% http://ctan.org/pkg/amsmath
\DeclareMathOperator*{\inflim}{\underline{\lim}}
\begin{document}
\[ \mathop{\underline{\lim}}_{n \to \infty} f_n(x) \]
\[ \inflim_{n \to \infty} f_n(x) \]
\end{document}

請參閱amsmath 文件(部分5.1 定義新的操作符名稱DeclareMathOperator,第 17 頁)了解其帶有星號的變體的使用/差異。

相關內容