如何在副标题后面添加数字?

如何在副标题后面添加数字?

我是 overleaf 的新手,所以我使用模板来列出定理、定义、公理等。它看起来很混乱,因为它看起来像这样:

定理1。

公理 1。

定理2。

定理3。

定义1.

这是我的设置:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{amsmath,amsthm,amsfonts} 
\usepackage{enumerate}%

\theoremstyle{definition}
\newtheorem{theorem}{Theorem}
\newtheorem{axiom}{Axiom}
\newtheorem{corollary}{Corollary}
\newtheorem{lemma}{Lemma}
\newtheorem{definition}{Definition}

我怎样才能让它更有条理地说

定理1:

公理2:

定理3:

定义4:...?

另外,当我给某物添加一个名字时,例如,

\begin{definition}[Absolute Value]

它看起来像这样:定义 3(绝对值)

我怎样才能使整个东西变成粗体,并且使句号变成冒号?

相关内容