编辑

编辑

有人能帮忙吗?我完全不确定我做错了什么,但我收到错误 Missing $ inserting. $ on the 2nd line with c)\

其余文本工作正常,并且没有之前部分未配对的 $ 符号

\noindent
c)\\
coordinates = (99,85),(190,220),(286,383)\\
\begin{align}
error&= \left | y-(a+bx) \right |\\
E&= \left | y-(475.5+1.253x) \right |\\
(99,85):
E&=\left | 85-(475.5-1.253(99) \right |\\
&=\left | 85-(351.5) \right |\\
&=266.5\\
(190,220):
E&=\left | 220-(475.5-1.253(190) \right |\\
&=\left | 220-(237.5) \right |\\
&=17.5\\
(286,383):
E&=\left | 383-(475.5-1.253(286) \right |\\
&=\left | 386-(117.2) \right |\\
&=265.8\\
\end{align}
$\therefore$ \text{Next location is "The Reservoir" at (190,220)}
\end{document}

答案1

\therefore不是文本命令。它需要处于数学模式,例如$\therefore$。在您的截图中,它位于align环境之外,因此处于文本模式,这将不起作用。

\documentclass{article}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{amssymb,amsmath}


\begin{document}
\noindent
c)\\
coordinates = (99,85),(190,220),(286,383)\\
\begin{align}
error&= \left | y-(a+bx) \right |\\
E&= \left | y-(475.5+1.253x) \right |\\
(99,85):
E&=\left | 85-(475.5-1.253(99) \right |\\
&=\left | 85-(351.5) \right |\\
&=266.5\\
(190,220):
E&=\left | 220-(475.5-1.253(190) \right |\\
&=\left | 220-(237.5) \right |\\
&=17.5\\
(286,383):
E&=\left | 383-(475.5-1.253(286) \right |\\
&=\left | 386-(117.2) \right |\\
&=265.8
\end{align}
$\therefore$ Next location is ``The Reservoir'' at (190,220)

\end{document}

因此对齐

编辑

您不需要\text{}for,Next location...因为无论如何它都处于文本模式,即它不是数学环境中的文本,而数学环境是您通常使用的\text{}。[鉴于 Joseph Wright 的评论] 这不会导致错误,但没有必要。

答案2

$里面的所有 都align应该替换为&

(您的代码片段不是 MWE,因此版本没有更正和最终结果)。

相关内容