我开始在 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}