! 未定义控制序列。为什么

! 未定义控制序列。为什么

我是菜鸟:第一次使用 Latex,似乎写不出一行代码,否则就会出现 ! Undefined control serial. 错误。下面是出现问题的一行:

$$ \left \{ x\in\mathbb{Z}:-2\leq x< 7 \right \} $$

以下是我的文档的其余部分:

\documentclass{article}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{amstext}
\begin{document}

\section{Chapter 1: Sets}
\subsection{Introduction to Sets}
Write each of the following sets by listing their elements between braces:
\begin{enumerate}

\item Problem 3
$$ \left \{ x\in\mathbb{Z}:-2\leq x< 7 \right \} $$

\end{enumerate}

\end{document}

答案1

您忘记使用amssymb。另外,您最好使用\[...\]而不是$$。一般来说,使用LaTeX并不适合胆小的人;您面临的挑战要大得多。

\documentclass{article}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{amstext}
\usepackage{amssymb} % Missing in your example. 
\begin{document}
\section{Chapter 1: Sets}
\subsection{Introduction to Sets}
Write each of the following sets by listing their elements between braces:
\begin{enumerate}
    \item Problem 3 \[ \left \{ x\in\mathbb{Z}:-2\leq x< 7 \right \} \]
\end{enumerate}
\end{document}

在此处输入图片描述

相关内容