전체 그룹의 적분에 대한 제한 설정

전체 그룹의 적분에 대한 제한 설정

\int\limits매번 쓰지 않고 전체 그룹/전체 문서의 적분 기호 위아래에 적분 한계를 인쇄하는 명령이 있습니까 ? 즉, 나는 글을 쓰고 싶다.

{\mysterycommand
    \int_a^b (f + g) = \int_a^b f + \int_a^b g
}

대신에

\int\limits_a^b (f + g) = \int\limits_a^b f + \int\limits_a^b g

답변1

amsmath쉽게 얻을 수 있어서모두위와 아래의 제한이 있는 적분(그러나 권장하지는 않습니다):

\documentclass{article}
\usepackage[intlimits]{amsmath}

\begin{document}

\[
\int_a^b (f + g) = \int_a^b f + \int_a^b g
\]

\end{document}

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

\misterycommand쉽게 정의할 수 있습니다 .

\documentclass{article}
\usepackage{amsmath}

\makeatletter
\newcommand\mysterycommand{\let\ilimits@\displaylimits}
\makeatother

\begin{document}

No limits:
\[
\int_a^b (f + g) = \int_a^b f + \int_a^b g
\]
Limits:
\[\mysterycommand
\int_a^b (f + g) = \int_a^b f + \int_a^b g
\]

\end{document}

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

이제 결과를 확인하셨으니 일반적으로 한도가 측면에 설정되는 이유를 이해하시기 바랍니다.

관련 정보