如何在 Theorem 环境中直立书写“FUST”字体,但不能书写斜体字体?

如何在 Theorem 环境中直立书写“FUST”字体,但不能书写斜体字体?

如何在 Theorem 环境中将“FUST”字体直立书写,但不能使用斜体字体?谢谢!

在此处输入图片描述

\begin{theorem}
Let $G$ be an infinite connected graph and let  $\{G_n\}_{n\ge 1}$ be an exhaustion of $G$ as above. Then the weak limits 
\[\textbf{FUSF}=\lim_{n\to \infty} \textbf{UST}_{G_n}.
\]
and 
\[\textbf{WUSF}=\lim_{n\to \infty} \textbf{UST}_{G^*_n}.
\]
exists and do not depend on the exhaustion $\{G_n\}_{n\ge 1}$.
\end{theorem}

答案1

正如您所注意到的,该\text命令继承了周围文本的格式,包括斜体样式。

替代方法包括\textup使用文本字体的直立样式、\mathrm数学模式下的直立文本或\mathsf无衬线文本。

答案2

您应该为这些对象定义自己的命令,并且定义不应依赖于\textZZ命令(其中ZZ可以是无或bf等等sf)。

\documentclass{article}
\usepackage{amsmath,amsthm}

\newtheorem{theorem}{Theorem}[section]

\newcommand{\herminame}[1]{\mathsf{#1}}
\newcommand{\FUSF}{\herminame{FUSF}}
\newcommand{\WUSF}{\herminame{WUSF}}
\newcommand{\UST}{\herminame{UST}}

\begin{document}

% just to get section 4 and theorem 14
\setcounter{section}{4}
\setcounter{theorem}{13}

\begin{theorem}[Pemantle 1991]
Let $G$ be an infinite connected graph and let  $\{G_n\}_{n\ge 1}$ be 
an exhaustion of $G$ as above. Then the weak limits 
\[
\FUSF=\lim_{n\to \infty} \UST_{G_n}
\qquad\text{and}\qquad
\WUSF=\lim_{n\to \infty} \UST_{G^*_n}
\]
exist and do not depend on the exhaustion $\{G_n\}_{n\ge 1}$.
\end{theorem}

\end{document}

我设置一行的限制是为了节省空间,同时也表明\text继承了数学公式周围文本的字体属性;\textbf只会添加粗体属性,但在这种情况下,斜体属性将被保留。

在此处输入图片描述

上面的图片与您发布的使用 的图片相匹配\mathsf,但您可以修改 的定义\herminame以适合您的偏好。例如,如果您喜欢粗体而不是无衬线字体,您只需更改一行,即

\newcommand{\herminame}[1]{\mathbf{#1}}

要得到

在此处输入图片描述

相关内容