我一直在\\
使用在对齐块中开始新行:
\documentclass[12pt, a4paper, twoside, titlepage]{article}
\usepackage{amsmath}
\documentclass[12pt, a4paper, twoside, titlepage]{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
&J(1)= & \text{Cost}\\
&\sum\limits_{i=1}^{m} (h_\Theta(x^i)-y^i)^2= & \text{Cost}\\
&\sum\limits_{i=1}^{3} (\Theta_1(x^i)-y^i)^2= & \text{Cost}\\
&\frac{1}{3}((1-1)^2+(2-2)^2+(3-3)^2)= & \text{Cost}\\
&\frac{1}{3}(0+0+0)= & \text{Cost}\\
&0
\end{align}
\end{document}
我也看到过这个标记在其他代码片段中使用,例如“如何对齐一组多行方程“。
我正在尝试编写好的 Latex。但是,我没有找到任何关于此换行符是否是块内良好做法的参考align
。此外,一些答案(如“LaTeX 中的对齐方程") 使用单个黑斜杠 ( \
)。这似乎有同样的效果,但对我来说不起作用。
在对齐的块中开始新行的正确方法是什么?