定理环境中的 \text 失败

定理环境中的 \text 失败

我的一个定理的陈述中有一个方程。在这个方程中,我有一些文本来命名一个函数。然而,当这个方程出现在定理环境中时,输出会将我的函数名称的每个字母视为一个变量。我该如何解决这个问题?

\documentclass[11pt]{article}
\usepackage{amsmath}
\newtheorem{theorem}{Theorem}

\begin{document}

$\text{Function}(x) = 1$

\begin{theorem}
$\text{Function}(x) = 1$
\end{theorem}

\end{document}

输出

答案1

\text尊重周围的字体。获取所需字体和适当间距的更好方法是使用\DeclareMathOperator

\documentclass[11pt]{article}
\usepackage{amsmath}

\newtheorem{theorem}{Theorem}
\DeclareMathOperator{\Func}{Function}

\begin{document}

$\text{Function}(x) = 1\quad\Func(x) = 1$

\begin{theorem}
$\text{Function}(x) = 1\quad\Func(x) = 1$
\end{theorem}

\end{document}

在此处输入图片描述

相关内容