\end{center} 错误

\end{center} 错误

晚上好,

我想问以下我无法解决的问题。

计算数学文本时,我得到了以下错误,只是因为我省略了 \end{center} 后的一个点。

这:

\begin{center}

$f(g_{1}) = f(g_{2})$,

\end{center} \\

无法计算。

这确实:

\begin{center}

$f(g_{1}) = f(g_{2})$, 

\end{center}. \\

我想知道如何修复它,因为在我的笔记中看到无意义的点是相当难看的,

谢谢大家,任何帮助都会很感激

答案1

测试文档

\documentclass[a4paper]{article}

\begin{document}

Some text to fill a couple of lines before some displayed 
equation that is centered on a line by itself
\begin{center}
$f(g_{1})=f(g_{2})$
\end{center} \\
and some text following the display.

\end{document}

因错误而停止

! LaTeX Error: There's no line here to end.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              

l.10 a
      nd some text following the display.

这应该是不言自明的:在 之后没有行可以结束\end{center}。如果你通过按回车键跳过错误,则生成以下文档:

在此处输入图片描述

省略 可获得相同的结果\\

另一方面,这不是显示方程式的首选方法:

\documentclass[a4paper]{article}
\usepackage{amsmath}

\begin{document}

Some text to fill a couple of lines before some displayed
equation that is centered on a line by itself
\begin{equation*}
f(g_{1})=f(g_{2}) 
\end{equation*} 
and some text following the display.

\end{document}

在此处输入图片描述

您也\begin{equation*}...\end{equation*}可以使用\[...\](但如果您稍后决定对方程式进行编号并且只需删除*就足够了,前者会更方便)。

输出结果有一些细微的差别,但最主要的是显示之前不能出现分页符。切记不要在显示之前留下空行。

\\记住不是结束段落的选择方法,应使用空白行。

请务必阅读 LaTeX 的入门指南:请参阅我应该从哪里开始 LaTeX 编程?

相关内容