如何在 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}}
要得到