如何在 Latex 中的数学模式中增加字体大小并将上面给出的整个符号变为粗体?
答案1
使用来自包和来自包的\bm
命令。bm
\scalebox
graphicx
代码:
\documentclass{article}
\usepackage{bm,graphicx}
\begin{document}
\centering
Normal
\[\sigma_{E_{1}}^{(l)}\]
\bigskip
Bold
\[\bm{\sigma_{E_{1}}^{(l)}}\]
\bigskip
Bold and bigger
\[\scalebox{2}{\ensuremath{\bm{\sigma_{E_{1}}^{(l)}}}}\]
\end{document}
后者也可在数学模式之外使用。调整因子2
以满足您的需要。
答案2
另一种不使用‘scalebox’的替代方案。
代码
\documentclass{article}
\usepackage{amsmath,bm}
\begin{document}
Normal
\[
\sigma^{(l)}_{E_1}
\]
Bold and Huge size
\[
\Huge
\bm{
\sigma^{(l)}_{E_1}}
\]
Bold and scripsize
\[
\scriptsize
\bm{
\sigma^{(l)}_{E_1}}
\]
\end{document}