我定义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}