我有以下代码:
\listfiles
\documentclass[oneside,12pt]{scrartcl}
\usepackage[ngerman]{babel}
%\usepackage{amsmath}
\usepackage[fixamsmath,disallowspaces]{mathtools}
\begin{document}
\noindent
T_{WS} (t) &= \begin{tabular}[t]{@{}l@{}}
$T_{WS} (t-1) + \sigma_{Zu}(T_{WS} (t-1), K_{Mat}, O) * G_{Ges}(t) - \sigma_{Ab}(T_{WS} (t-1), K_{Mat}, O) * W(t) \\
- \sigma_{Ver}(T_{WS} (t-1), K_{Mat}, O)$ \end{tabular} \\
\end{document}
尽管我从 TeXnic-Center 获得的 PDF 看起来与我想要的完全一样,但我还是得到了 7 个错误。我该怎么做才能获得一个看起来像我已经获得的 PDF,但没有错误。
答案1
这是一段可以编译的代码。我把长行与环境分开了aligned
。请注意,您不必加载amsmath
since mathtools
,因为会为您完成此操作,并且您不能用 结束align
环境\\
:这将添加虚假的垂直间距。我擅自将似乎与变量乘积不对应的索引转换为\mathrm
。
\listfiles
\documentclass[oneside,12pt]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[fixamsmath,disallowspaces]{mathtools}
\begin{document}
\begin{align*} G_\mathrm{Ges}(t) &= ∑ \limits_{j ∈ J^{GV}} G^{GV}_j(t) \\
T_{WS}^{\min} &\leq T_{WS} (t) \leq T_{WS}^{\max} \\
T_{WS} (t) & = \!\begin{aligned}[t] & T_{WS} (t-1) + σ_\mathrm{Zu}(T_{WS} (t-1), K_\mathrm{Mat}, O) * G_\mathrm{Ges}(t) \\
& - σ_\mathrm{Ab}(T_{WS} (t-1), K_\mathrm{Mat}, O) * W(t)
- σ_\mathrm{Ver}(T_{WS} (t-1), K_\mathrm{Mat}, O)
\end{aligned}
\end{align*}
\end{document}