如何获得与“定理”相同字体的定理名称

如何获得与“定理”相同字体的定理名称

当我用某个名字写定理时,我使用命令,

\begin{theorem}[Paramjit] 
    Hello there I am Paramjit 
\end{theorem}

这就是我得到的。 在此处输入图片描述

如何更改定理名称的字体。我希望括号也加粗。因此,仅将定理命名为 \textsc{Paramjit} 不是一个选择。目前,我正在将定理的名称写在定理本身的内容中。

答案1

这是默认设置ntheorem

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fourier, erewhon}
\usepackage{amsmath}

\usepackage[thmmarks, thref]{ntheorem}
\usepackage{cleveref}

\theoremstyle{plain}
\theoremheaderfont{\bfseries\scshape\upshape}%
\theorembodyfont{\itshape}
\theoremseparator{.}
\newtheorem{theorem}{Theorem}[section]

\begin{document}

\section{A first section}

\begin{theorem}[Paramjit]\label{Para}
  Hello there I am Paramjit.%
\end{theorem}
This was \cref{Para}.

\end{document} 

在此处输入图片描述

相关内容