PCTeX 中的编号事实

PCTeX 中的编号事实

是否有一种方法可以对“事实”进行编号,类似于对定理、引理和例子进行编号的方式?

答案1

一个简单的启动器,假设一个非常基本的facts环境并使用facts在每个新内重置的计数器section

\documentclass{article}

\newcounter{facts}[section]


\renewcommand{\thefacts}{\thesection.\arabic{facts}}

\newenvironment{facts}{%
  \parindent=0em
  \refstepcounter{facts}
  \textbf{Facts \thefacts}

}{%
}

\begin{document}

\section{Facts section}

\begin{facts}
  Brontosaurs are thin at one end, thick in the middle and thin again at the other end.
\end{facts}

\end{document}

答案2

\usepackagen{ntheorem}
\theoremstyle{plain}
\theoremheaderfont{\bfseries}
\theoremseparator{:}
\theorembodyfont{\normalfont}
\newtheorem{facts}{Facts}

定义这样一个编号的环境。

相关内容