初学者 LaTeX 错误

初学者 LaTeX 错误

我开始在 Latex 上写数学方程式,所以我第一次尝试,但由于错误,我无法查看结果。有人能帮我吗?

\documentclass[12pt]{article}
\usepackage{mathtools}
\title{First doc latex}
\begin{document}
\begin{equation*}
 $\sqrt{16} = 4$
\end{equation}
\end{document}

在 1.7 中有一个“?”谢谢

答案1

你得到

! Display math should end with $$.
<to be read again> 
                   \protect 
l.6  $\sqrt
           {16} = 4$
? 

因为equation已经开始数学所以$是错误的。

删除它们,你会得到

! LaTeX Error: \begin{equation*} on input line 5 ended by \end{equation}.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.7 \end{equation}
                  
? 

因为你的\begin不匹配\end所以删除*

\documentclass[12pt]{article}
\usepackage{mathtools}
\title{First doc latex}
\begin{document}
\begin{equation}
 \sqrt{16} = 4
\end{equation}
\end{document}

在此处输入图片描述

答案2

这就是你想要的吗?

\documentclass[12pt]{article}
\usepackage{mathtools}
\title{First doc latex}
\begin{document}
    \maketitle
    \begin{equation*}
        \sqrt{16} = 4
    \end{equation*}
\end{document}

相关内容