对齐文本时出现问题

对齐文本时出现问题

我在对齐用 LaTeX 编写的数学定义文本时遇到了麻烦。

以下是我目前拥有的:

\newcounter{defctr}
\newenvironment{defn}
{\noindent
  \refstepcounter{defctr}
  \textbf{Definition \thesubsection.\thedefctr:}
}{\par\noindent%
  \ignorespacesafterend}
\counterwithin*{defctr}{subsection}

在某些情况下,这很有效。但是,在某些情况下,它不能按照我想要的方式工作。以下是命令无法正常工作的示例:

defn未对齐

该“定义”与文本的其余部分不一致。

答案1

像这样使用

\newcounter{defctr}

\newenvironment{定义}%

{\noindent%

\refstepcounter{defctr}%

\textbf{定义 \thesubsection.\thedefctr:}%

}{\par\noindent%

\ignorespacesafterend}%

相关内容