如何在后期演示幻灯片格式中写粗体斜体字母?

如何在后期演示幻灯片格式中写粗体斜体字母?
\foilhead{Continuous Galerkin finite element method}                                                                                                                      

\definecolor{hgray}{gray}{0.9}

\vspace{-1.5cm}

\begin{picture}(18.0,16.5)

\put(0.3,16){$\bullet$ {Advection equation in 1D}}
\graphicspath{{\dir/}}
\put(11,14){\scalebox{1}{\input{\dir/1d_domain_continuous_FEM.pdf_tex}}}

\put(0.8,15){Linear one-dimensional hyperbolic convective }
\put(0.8,14){transport problem of
the concentration $c$}
\put(0.8,12.5){$G := {\rm v} \dfrac{\partial c}{\partial x} = s\quad{\rm in}\quad{\cal{B}}\,,$}
\end{picture} 

我想要给定方程中的“s”项以粗体斜体字母格式显示。我尝试使用 \textbold\textit,但没有成功。您的建议将很有帮助。谢谢。在此处输入图片描述

答案1

在 LuaLaTeX 或 XeLaTeX 中,您可以加载unicode-math和使用\symbfit{s}

isomathPDFLaTeX 包允许\mathbfit{s}

评论中提到的 PDFLaTeX 的另一个选项\boldsymbol{s}来自。如果您在每个其他数学包之后amsmath加载,效果会更好。(如果您加载粗体数学字体,该包也支持此功能。)bmunicode-math

答案2

例如,这里使用 MWE 来boldsymbol获得以粗体斜体字母表示的“s”项。

\documentclass[a4paper,12pt]{article}
\usepackage{mathtools}
\begin{document}
\[G \coloneqq \mathrm{v} \frac{\partial c}{\partial x} = \boldsymbol{s}\quad{\text{ in } \mathcal{B},}\]
\end{document}

在此处输入图片描述

相关内容