编辑

编辑

我想&以小字体显示符号。但\small{\&}会产生斜体“&”符号像这儿. 如何获取小字体大小&象征?

编辑:我发现斜体是因为定理环境(来自 acm_proc_article-sp 样式)。有没有办法只覆盖 & 字符的斜体?

答案1

\small不带参数。像 一样使用它\small \&。要使效果局部化,请将整个内容放在括号内,例如{\small \&}

\documentclass{article}
\begin{document}

\Huge \& \huge \& \LARGE \& \large \& \normalsize \& \small \& \footnotesize \&  \scriptsize \& \tiny \&
\end{document}

在此处输入图片描述

编辑

在数学模式中我得到了这个:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
E_{1} \& \text{\small\&} E_{2}
\]
\end{document}

在此处输入图片描述

如果您没有得到这个,那么您的代码中可能存在其他问题。请尝试发布它,以便我们可以使用它 :-)

相关内容