引理内的 \textbf

引理内的 \textbf

我定义lemma并使用如下方法:

\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}[theorem]{Lemma}
...
\begin{lemma}
abc_\textbf{indice}
\end{lemma}

结果是indice变成了斜体,有人知道如何让它变成粗体而不是斜体吗?

答案1

它看起来不太好看,但你可以使用 关闭引理中的斜体\textup{\textbf{indice}}

\documentclass{article}

\newtheorem{lemma}{Lemma}

\begin{document}

\begin{lemma}
\(abc_\textup{\textbf{indice}}\)
\end{lemma}

\end{document}

在此处输入图片描述

编辑:正如 egreg 所评论的,\mathbf这可能是一个更好的选择。

\documentclass{article}

\newtheorem{lemma}{Lemma}

\begin{document}

\begin{lemma}
\(abc_\mathbf{indice}\)
\end{lemma}

\end{document}

在此处输入图片描述

相关内容