使用 amsthm 包的假设

使用 amsthm 包的假设

在此处输入图片描述我正在尝试用我的论文写一个零假设,我发现了这个问题乳胶中的假设。但是当我尝试时,它对我不起作用,因为我有一个排版错误,而xcolorfancyhdr页面是罪魁祸首。(我甚至不明白这是怎么可能的,但话又说回来,我在这方面很新,所以这也许并不奇怪)。

无论如何,我已经读到我可以使用 amsthm 包来编写假设,但我还没有找到一个可行的例子。

\documentclass[12pt,a4paper,oneside]{book}
\usepackage{amsmath,amssymb,amsthm}
\newtheorem{hyp}{Hypothesis}
\begin{document}
\begin{hyp}
This is my first hypothesis.
\end{hyp}
\end{document}

答案1

这是你想要的吗?

\documentclass[12pt,a4paper,oneside]{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath,amssymb,amsthm}
\usepackage{thmtools}
\declaretheoremstyle[
spaceabove=6pt, spacebelow=6pt,
headfont=\normalfont\bfseries,
notefont=\mdseries, notebraces={(}{)},
bodyfont=\normalfont,
postheadspace=0.6em,
headpunct=:
]{mystyle}
\declaretheorem[style=mystyle, name=Hypothesis, preheadhook={\renewcommand{\thehyp}{H\textsubscript{\arabic{hyp}}}}]{hyp}

\usepackage{cleveref}
\crefname{hyp}{hypothesis}{hypotheses}
\Crefname{hyp}{Hypothesis}{Hypotheses}

 \begin{document}
 \setcounter{hyp}{-1}
 \begin{hyp}[Test hypothesis] \label{hyp:a}This is my first hypothesis. \end{hyp}
 \begin{hyp} \label{hyp:b}This is my second hypothesis. \end{hyp}

  \Cref{hyp:a,hyp:b}.

 \end{document} 

在此处输入图片描述

相关内容