某些地方有预定义函数,因此当您在默认定理环境中使用它们时,它们的名称会以普通(非斜体)字体显示。我希望能够定义自己的函数并达到同样的效果。以下是我一直在做的一个例子:
\documentclass{article}
\usepackage{amsmath,amsthm,amssymb}
\newtheorem{thm}{Theorem}
\newcommand{\dom}[1]{\text{dom}{#1}}
\begin{document}
\begin{thm}
function has normal font: $\sin(0)$ \\
function does not have normal font: $\dom{f}$
\end{thm}
\end{document}
我如何实现这个目标?
答案1
使用\DeclareMathOperator{\dom}{dom}
。