\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}(如果软件添加了,请删除)。

相关内容