错误信息

错误信息

编译器显示“LaTeX 错误:环境示例未定义”,100% 可重现这里

\documentclass{article}
\title{Empirical distribution}
\author{Jane Doe}
\usepackage{newtxmath}
\usepackage{amsmath}
\begin{document}
\maketitle
\section{My first section}
\begin{example}
\xi_n = [x_1 \dots x_n]
\end{example}
\end{document}

错误信息

LaTeX 错误:环境示例未定义。

您创建了一个无法识别的环境(使用 \begin{…} 和 \end{…} 命令)。请确保您在前言中已包含该环境所需的包,并且该环境的拼写正确。

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.9 \begin{example}
                   
Your command was ignored.
Type  I <command> <return>  to replace it with another command,
or  <return>  to continue without it.

我使用编译器提供的模板编写了此代码。为什么编译器没有自己的模板?

答案1

您没有提供任何Example样式的屏幕截图,因此我定义了自己的样式,编码如下:

\newenvironment{example}{\bgroup\par\noindent\textbf{Example}\par%
\[}{\]\egroup}

请粘贴上述编码然后\begin{document}尝试...

相关内容