LaTex 相關數學環境自定義,定理,定義等

2021-09-23 07:51:53 字數 970 閱讀 5172

我們可以先導入包:

\usepackage

但,由於,這個包已經在amsmath中包含了,故而只包含amsmath就夠了。

\usepackage

用法

\newtheorem    [排序單位]
將下面放入導言區:

\newtheorem

% 整體編號

\newtheorem

\newtheorem

[section]

% 按 section 編號

\newtheorem

\newtheorem

\newtheorem

\newtheorem

\newtheorem

\newtheorem

\newtheorem

\newtheorem

\newtheorem

\newtheorem

使用

\section

\begin

this is a definition1.

\end

\begin

this is a definition2.

\end

\section

\begin

this is a theorem1.

\end

\begin

this is a theorem2.

\end

結果

解釋:

我們設定的定義環境是 全域性編號。 而定理環境是 按 section 編號。

Latex 自定義命令與環境 箱子

自定義命令與環境 箱子 導言區 documentclass a4 usepackage usepackage 匯入這個巨集包,就可以支援中文 usepackage usepackage 數學粗體所需要的的巨集包 usepackage 縮放箱子 usepackage 5.1自定義命令與環境 自定義命令...

Latex之自定義頁首頁尾

定義頁首頁尾要用到 pagestyle其中latex內建了四種 empty 沒有頁首和頁尾 plain 沒有頁首,頁尾中部放置頁碼。headings 沒有頁尾,頁首包含章節的標題和頁碼。myheadings 沒有頁尾,頁首頁碼和使用者所定義的資訊。article 預設使用 plain 格式,而 bo...

在Latex中自定義命令

newcommand有如下的三種使用方式 這是newcommand最簡單的使用方式,比如嫌每次輸入 helloworld 很麻煩,可以定義命令 newcommand prc 以後就可以通過輸入命令 prc來輸入 helloworld 了。定義有引數命令的通用形式為 newcommand cmd 引數...