如何添加 \begin{definition} … \end{definition}?

如何添加 \begin{definition} … \end{definition}?

我有以下序言:

\documentclass{article}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{yfonts}
\usepackage[inline]{enumitem}

\newcommand{\subscript}[2]{$#1 _ #2$}

\newtheorem{theorem}{Theorem}

\title{Jumbo}



\author{Frode Alfson Bj\o{}rdal}
\date{}




\begin{document}

我怎样才能到\begin{definition} … \end {definition}这里?

答案1

\newtheorem就像您对环境所做的那样,只需定义它即可theorem

\documentclass{article}
\usepackage{amsthm}
\newtheorem{definition}{Definition}
\begin{document}
\begin{definition}
  This is a definition.
\end{definition}
\end{document}

在此处输入图片描述

也可以看看:如何对定理进行编号但不对定义进行编号?

有关新定理环境的另一种样式的更多信息\newtheorem以及如何使用definition,例如使用\theoremstyle{definition}before \newtheorem,请参阅手动的包裹amsthm

相关内容