我对 latex 非常陌生,这段代码让我很头疼。它正在编译,但会弹出几十个错误,名为“缺少 { 插入。 \end{split}”
我猜这意味着缺少了一些括号?我已经复制并修改了代码,但我不明白 split 和 & 如何协同工作。
我想以这种方式使用它,以便方程只有一个参考。
感谢您的帮助 :-)
\begin{equation} \label{Kraftfunktionen}
\begin{split}
$\text{Fall CM-A: }$ y &=0.0757x^2 + 0.3912x - 0.0337 \\
$\text{Fall CM-B: }$ y &=0.1044x^2 + 1.0443x - 1.5213 \\
$\text{Fall ET-A: }$ y &=0.0521x^2 + 0.1680x + 0.6286 \\
$\text{Fall ET-B: }$ y &=0.1349x^2 + 2.4139x - 4.0463
\end{split}
\end{equation}
答案1
该错误是由于$
因此运行没有错误而引起的
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation} \label{Kraftfunktionen}
\begin{split}
\text{Fall CM-A: } y &=0.0757x^2 + 0.3912x - 0.0337 \\
\text{Fall CM-B: } y &=0.1044x^2 + 1.0443x - 1.5213 \\
\text{Fall ET-A: } y &=0.0521x^2 + 0.1680x + 0.6286 \\
\text{Fall ET-B: } y &=0.1349x^2 + 2.4139x - 4.0463
\end{split}
\end{equation}
\end{document}
但是我会使用aligned
而不是split
(在所有不需要将分割内的对齐与外部合并的情况下align
)
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation} \label{Kraftfunktionen}
\begin{aligned}
\text{Fall CM-A: } y &=0.0757x^2 + 0.3912x - 0.0337 \\
\text{Fall CM-B: } y &=0.1044x^2 + 1.0443x - 1.5213 \\
\text{Fall ET-A: } y &=0.0521x^2 + 0.1680x + 0.6286 \\
\text{Fall ET-B: } y &=0.1349x^2 + 2.4139x - 4.0463
\end{aligned}
\end{equation}
\end{document}
我不太清楚这里的意思,但我怀疑我会将这些文本块设置为左对齐,因此:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation} \label{Kraftfunktionen}
\begin{aligned}
&\text{Fall CM-A: }& y &=0.0757x^2 + 0.3912x - 0.0337 \\
&\text{Fall CM-B: }& y &=0.1044x^2 + 1.0443x - 1.5213 \\
&\text{Fall ET-A: }& y &=0.0521x^2 + 0.1680x + 0.6286 \\
&\text{Fall ET-B: }& y &=0.1349x^2 + 2.4139x - 4.0463
\end{aligned}
\end{equation}
\end{document}