这是我的代码。
\documentclass{article}
\begin{document}
take an example of $$3\sqrt{5}.$$
$$3\sqrt{5}$$ $$means$$ $$3\cdot {\sqrt{5}}$$
\centering To express that in the form of surds, I'm going to square the expressions.
$$(3\cdot\sqrt{5})^2$$
$$= 9\cdot5$$
\centering Take square root of both expression
$$\sqrt{9}\cdot\sqrt{5}$$
Simplify that to
$$\sqrt{45}$$
Which is surds.\\
Back to the questions, What is larger, $2\sqrt{2}$, or $1 + \sqrt{3}$?
\end{document}
线Back to the questions
到了中心。帮助:”
截屏:
答案1
你在这里做错了很多事情。
首先:$$
…$$
不是正确的 LaTeX 标记。如果您想要显示数学,则应使用\[
… ;如果您想要内联数学,则应使用…或… 。我猜您确实希望在您编写的很多内容中使用内联数学。更不用说\]
$
$
\(
\)
$$3\sqrt{5}$$ $$means$$ $$3\cdot {\sqrt{5}}$$
将设置三个显示方程,其中中间一个是
方法
我猜你其实是想写
$3\sqrt{5}$ $3\cdot {\sqrt{5}}$
另外,不要在显示的数学运算前添加空行。请写:
Simplify that to
\[
\sqrt{45}
\]
代替
Simplify that to
$$\sqrt{45}$$
(我的版本中的换行符不是必需的,但它有助于抵消.tex
文件中显示的数学运算,以便更容易读取源代码。)
会\\
在那里放一个空行。我不确定你是否想要这样做。
对于这篇文章的主要问题,要获得居中的文本块,¹而不是使用,\centering
您应该使用center
环境`,它将指示居中文本应该出现的位置。²
\begin{center}
Take square root fo both expressions
\[
\sqrt{9}\cdot\sqrt{5}
\]
Simplify that to
\[
\sqrt{45}
\]
which is surds.
\end{center}
尽管这实际上应该被包裹在具有某些语义含义的新环境中,但我现在就不谈这个了。
它还在前后添加了一些垂直空间,这可能适合这种情况。