添加新定理样式后,标题将变为“非粗体”

添加新定理样式后,标题将变为“非粗体”

到目前为止,每当我创建新定义或定理等时,标题(例如“定义”等字样)都会以粗体显示。但是,当我尝试添加“\theoremstyle{remark}”时,标题不再以粗体显示。有什么方法可以解决这个问题(即,这样我就不必在出现每个标题时将其分别加粗)?抱歉,如果这是一个愚蠢的问题,我对这些都很陌生。

答案1

你应该像这样使用它们。

\documentclass{article}
\usepackage{amsmath,amsthm}

\newtheorem{theorem}{Theorem}[section]
\newtheorem{corollary}{Corollary}[section]
\newtheorem{proposition}{Proposition}[section]
\newtheorem{lemma}{Lemma}[section]
\newtheorem{example}{Example}[section]
\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\theoremstyle{remark}
\newtheorem{remark}{Remark}[section]
\begin{document}
  \begin{definition}
    This is a definition
  \end{definition}
  \begin{theorem}
    This is a theorem
  \end{theorem}
  \begin{corollary}
    This is a corollary
  \end{corollary}
  \begin{proposition}
    This is a proposition
  \end{proposition}
  \begin{lemma}
    This is a lemma
  \end{lemma}
  \begin{example}
    This is an example
  \end{example}
  \begin{remark}
    This is a remark
  \end{remark}
\end{document}

在此处输入图片描述

相关内容