课程模块的定理列表模板

课程模块的定理列表模板

我想在乳胶中创建一个模板,列出我输入的定理和定义。

例如,在我的分析 1 模块中,我学习了定理 2.21 $ \lim_{x \to +\infty}(a_n + b_n) = \alpha + \beta $

理想情况下,我想将其输入到标题为分析1,以及第 2 章 - 序列,我会有一个条目说明定理 2.21$ \lim_{x \to +\infty}(a_n + b_n) = \alpha + \beta $

我是一个完全的初学者,有人可以给我指明正确的方向吗?

亲切的问候,

答案1

也许这可以给你一个起点:

在此处输入图片描述

代码:

\documentclass{book}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}

% We define two structures: one for theorems and another one for definitions
% since we used \newtheorem* (with a star) for definitions, the
% definitions won't be numbered
\newtheorem{theo}{Theorem}[chapter]
\theoremstyle{definition}
\newtheorem*{defi}{Definition}

\begin{document}

\chapter{Sequences}

\begin{defi}
A sequence of real numbers (or simply a sequence) is a function from a subset of the natural numbers to the real numbers.
\end{defi}

\begin{theo}
Let $(a_n)_{n\in\mathbb{N}}$ and $(b_n)_{n\in\mathbb{N}}$ be two sequences such that $\lim_{x \to +\infty}a_n=\alpha$ and $\lim_{x \to +\infty}b_n=\beta$, then
\[
\lim_{x \to +\infty}(a_n + b_n) = \alpha + \beta.
\]
\end{theo}

\end{document}

您应该考虑阅读 LaTeX 的基本介绍。

相关内容