定理环境中的强调

定理环境中的强调

我正在做一个可溶性小组的项目,我首先定义了一个次正规级数。在这个定义中,“因子”和“长度”这两个词都被强调了。然而,在定理环境中,\emph{} 命令只是取消了这些单词的斜体。这个变化太微妙了,我觉得我只是因为知道它在那里才注意到这个区别。有没有更好的方法来解决这个?

\documentclass{amsart}

\usepackage{amsthm}

\newtheorem{def}{Definition}

\begin{document}
 \begin{def}
  A subnormal series for a group $G$ is a chain of normal subgroups 
  \[\{1\}=A_0\triangleleft A_1\triangleleft\cdots\triangleleft A_n=G.\]
  The quotient groups $A_{i+1}/A_i$ are called the \emph{factors} of the
  series and the number of strict inclusions is called the \emph{length} 
  of the series.
 \end{def}
\end{document}

答案1

  • 如果你想要“内部”强调模式斜体粗体,运行序言中的以下指令:

    \renewcommand\eminnershape{\bfseries}
    

    (在所有情况下,我都会假设“外部”强调模式是非粗斜体

  • 如果你想要“内部”强调模式非斜体粗体,运行序言中的以下指令:

    \renewcommand\eminnershape{\upshape\bfseries}
    
  • 如果您希望“内部”强调模式为非斜体小型大写字母,请运行序言中的以下指令:

    \renewcommand\eminnershape{\upshape\scshape}
    

相关内容