新命令:假设

新命令:假设

我是 Latex 的新手,试图以以下方式提出四个假设:

假设1(H1): 这是我的第一个假设。

我正在使用该amsmath包和以下代码:

\newcommand{hyp}{Hypothesis} 

\begin{hyp}

This is my first hypothesis.

\end{hyp}

输出结果为:

假设1:这是我的第一个假设。

我知道如何列举这 4 个假设,但我不知道如何得到括号中的 H1 到 H4。

答案1

您可以使用定理包以获取所需的环境格式hyp。(请务必编译下面的示例代码两次,以便 LaTeX 可以解析嵌入的交叉引用。)

在此处输入图片描述

\documentclass{article}
\usepackage{ntheorem}
\theoremseparator{:}
\newtheorem{hyp}{Hypothesis}

\begin{document}

\begin{hyp}[H\ref{hyp:first}] \label{hyp:first}
This is my first hypothesis.
\end{hyp}

\end{document}

相关内容