模 n 的整数,由以下公式给出
\mathbb{Z}/n\mathbb{Z}
写起来很麻烦。因此,我想设置一个新命令,允许我指定输入“n”。类似
\newcommand{\Z[character]}{\mathbb{Z}/[character]\mathbb{Z}}
但上述代码不正确。有人知道该怎么做吗?
答案1
\newcommand\Z[1]{\mathbb{Z}/#1\mathbb{Z}}
答案2
如果您希望它也在正常文本模式下工作,即没有美元符号:
\newcommand{\Z}[1]{\ensuremath{\mathbb{Z}/#1\mathbb{Z}}}