필요한 한도를 작성하는 더 간단한 방법이 있습니까?

필요한 한도를 작성하는 더 간단한 방법이 있습니까?

이런 제한을 작성하고 싶은데 엉성한 방법을 찾았는데, 이렇게 작성하는 더 간단한 방법을 아시는 분 계신가요?

\documentclass{article}

\usepackage{amsmath}
\usepackage{amsfonts}

\newcommand*{\bfrac}[2]{\genfrac{}{}{0pt}{}{#1}{#2}}

\begin{document}


                $${\lim_{\bfrac{x\to a}{<}}{f(x)}} \text{ and } {\lim_{\bfrac{x\to a}{>}}{f(x)}}$$

\end{document}

제한

답변1

적절한 명령을 정의하겠습니다.

\documentclass{article}
\usepackage{amsmath}

\newcommand\gto{\underset{>}{\to}}
\newcommand\lto{\underset{<}{\to}}

\begin{document}

\[
\lim_{x\lto a} f(x)
\text{ and }
\lim_{x\gto a} f(x)
\]

\end{document}

여기에 이미지 설명을 입력하세요

사이드 노트.당신은 교정기가 풍부한 것 같습니다. 그것을 피하십시오.

답변2

수직 화살표와 화살표 아래의 보다 큼 및 보다 작음 기호 외에도 왼쪽 및 오른쪽 한계는 다음과 같습니다.위키피디아 기사, 때로는 다음과 같이 표시됩니다.

  • 위 첨자 더하기 또는 빼기 기호:

    \documentclass{article}
    \usepackage{amsmath}
    \begin{document}
    \[ \lim_{x\to a^{+}} f(x) \text{ and } \lim_{x\to a^{-}} f(x) \]
    \end{document}
    

    여기에 이미지 설명을 입력하세요

  • 기울어진 화살표( \nearrow\searrow):

    \documentclass{article}
    \usepackage{amsmath}
    \begin{document}
    \[ \lim_{x\nearrow a} f(x) \text{ and } \lim_{x\searrow a} f(x) \]
    \end{document}
    

    여기에 이미지 설명을 입력하세요

답변3

나는 당신이 아래로부터 또는 위로부터 의 접근 방식 f(x)으로 한계를 취한다는 개념을 표현하려고 한다고 가정합니다 . 이 가정이 정확하다면, (라고도 함 ) 대신 에 사용되는 극한의 "일방성"을 표현하는 것이 매우 일반적이라고 생각합니다 .xa\uparrow\downarrow\rightarrow\to

여기에 이미지 설명을 입력하세요

\documentclass{article}
\usepackage{amsmath} % for '\text' macro
\begin{document}
\[
\lim_{x\uparrow a}f(x) \text{ and } \lim_{x\downarrow a}f(x)
\]
\end{document}

관련 정보