书中的定理

书中的定理

我想以书的形式写出一个定理。所以我写

\documentclass[12pt]{book}

但之后我写道

\begin{theom}

并且无法编译。有人能帮我把一个定理写在书上吗?

答案1

首先,我建议你阅读LATEX2ε 的简要介绍。它将让您了解 LaTeX 的含义以及如何格式化常规文档。

针对您的问题,这里有一个小例子,说明您可能想知道什么:

\documentclass[12pt]{book}
\newtheorem{theorem}{Theorem}
\begin{document}
\chapter{First chapter}
\section{First section}
This is some text, with the following theorem.
\begin{theorem}
My first theorem. \label{mytheorem}
\end{theorem}
Theorem~\ref{mytheorem} is pretty awesome.
\end{document}

编译两次(以便进行适当的引用),您将获得:

我的第一定理

如果您有兴趣对定理进行不同的编号(例如,将其重置为每个\chapter,并将章节编号作为定理编号的一部分,如chapter.theorem),您可以使用:

\newtheorem{theorem}{Theorem}[chapter]

命令分解以及参数含义可从“帮助\newtheorem“。

特定的定理格式化包(如ntheorem或者amsthm,例如)也可能有帮助。但是,这取决于您到底想要哪种格式。

相关内容