\left\left는 오류인가요?

\left\left는 오류인가요?

저는 LaTex를 처음 사용합니다. Mathematica의 일부 방정식을 LaTex로 복사하려고 하는데 특정 방정식의 경우 문자열에 "\left\left"가 포함되어 있습니다. 예:

\begin{equation}
\omega _3-\omega _2\gg \left\left| \omega _1-\omega _2\right\right|
\end{equation}\newline

오류가 발생합니다: ! 구분 기호 누락(. 삽입)

\left\left가 의미가 없다는 것이 맞나요? \left에는 항상 \left\{?

감사해요.

답변1

해당 코드를 생성하는 소프트웨어에는 결함이 있으며 \left\left말도 \right\right안됩니다.

\documentclass{article}
\usepackage{amsmath}

\begin{document}

This is what perhaps the software wanted to produce
\begin{equation}
\omega _3-\omega _2\gg \left|\left| \omega _1-\omega _2\right|\right|
\end{equation}
but this is wrong anyway and should possibly be
\begin{equation}
\omega _3-\omega _2\gg \left\| \omega _1-\omega _2\right\|
\end{equation}
but neither is actually the right one: there is no need for growing
delimiters in this case
\begin{equation}
\omega _3-\omega _2\gg \lVert \omega _1-\omega _2 \rVert
\end{equation}
Finally, if the software produces \verb|\newline| after
\verb|\end{equation}|, it's another error.

\end{document}

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

(1)의 이중 막대 사이의 간격이 확실히 잘못되었습니다. 자세히 보면 (2) \right\|뒤에 작은 공간이 추가되므로 실제로 중앙에 있지 않습니다.

(3)만이 완전히 맞습니다.

\newline이후에 추가하지 마십시오 \end{equation}(소프트웨어가 추가한 경우 제거).

관련 정보