Metropolis 投影仪主题中的粗体矢量图

Metropolis 投影仪主题中的粗体矢量图

在 overleaf 上,有没有办法将 Metropolis beamer 主题中的矢量设置为粗斜体?所有常用方法(例如将命令更新为 '\boldsymbol{{#1}}')似乎都不起作用。它实际上只是将它们变成粗体,而不是斜体。 在此处输入图片描述

答案1

对我来说,下面的方法很好用。

\documentclass{beamer}
\usetheme{metropolis}
%\usefonttheme{serif}
\renewcommand{\vec}[1]{\boldsymbol{#1}}

\begin{document}
   \begin{frame}
      $x~\vec{x}$
   \end{frame}
\end{document}

如果您可以提供 MWE(最小工作示例),我们可能会告诉您更多信息。

或者您想要像默认文章字体那样使用“更花哨”的字母?那么请取消\usefonttheme{serif}注释序言中的 -line。

不使用 \usefonttheme{serif} 使用 \usefonttheme{serif}

相关内容