如何在 texmaker 中编写定义 2.1。

如何在 texmaker 中编写定义 2.1。

我只想在 texmaker 中写入定义 2.1。我已经使用了

\subsection
\begin{definition}
\end{definition}  

但我找不到输出定义 2.1。所以请告诉我们。

写完定义 2.1 后,按照这里的答案。我想写注释 2.1。如下面的答案所示,但我的输出是注释 2.2。所以请帮我写注释 2.1。

答案1

可能是这样的:

\documentclass{article}
\usepackage{amsthm}
\newtheorem{definition}{Definition}[section]    %% this does it
\begin{document}
  \section{Some}
  \section{some other}
  \begin{definition}
    Some definition
  \end{definition}
\end{document}

在此处输入图片描述

或这个:

\documentclass{article}
\usepackage{amsthm}
\newtheorem{definition}{Definition}[subsection]
\begin{document}
  \section{Some}
  \section{some other}
  \subsection{Some}
  \subsection{Other}
  \begin{definition}
    Some definition
  \end{definition}
  \begin{definition}
    Some other definition
  \end{definition}
\end{document}

在此处输入图片描述

相关内容