如何使用 thmtool 定义加粗定理样式?

如何使用 thmtool 定义加粗定理样式?

我目前正在按照这个答案使用定理工具创建定理样式。如何改变定理的显示方式?

在此处输入图片描述

以前我使用了 amsthm 包中的一些东西,但它与我的模板有很大的冲突,因此我所有珍贵的定理样式都被毁了

我想要的风格是这样的:

在此处输入图片描述

有谁知道如何更改行“\declarethoremstyle[headfont=\scshape,postheadspace=\newline]{mystyle}”以生成我想要的定理样式?

答案1

像这样?

\documentclass{book}
\usepackage{fourier}
\usepackage{mathtools}
\usepackage{amsthm, thmtools}
\usepackage{cleveref}
%
\declaretheoremstyle[%
headfont=\normalfont\bfseries,
within=chapter,headpunct={.\smallskip \newline}, 
bodyfont =\itshape, 
spaceabove = 8pt,spacebelow = 8pt]%
{mythmstyle}

\declaretheorem[style=mythmstyle]{Theorem}

\begin{document}

\setcounter{chapter}{3}
Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text.
\begin{Theorem}\label{testthm}
  The following assertion is true: %
  \begin{equation}
    a = a\end{equation}
    \end{Theorem}

    We see in \cref{testthm}

\end{document}

在此处输入图片描述

相关内容