0

Hello, everyone, I want to ask, how to type this formula in latex? Thank you So much! A Formula in quantum mechanics

moewe
  • 175,683

1 Answers1

3

The font usually used for math script does not have a bold variant, but you can emulate something like bold by using the \pmb command from the amsbsy package, as suggested in this answer to a similar question.

(There are other solutions in that thread you might also consider.)

\documentclass{article}
\usepackage{mathrsfs}
\usepackage{amsbsy}
\begin{document}

$\pmb{\mathscr{E}} = \mathscr{E}\negthinspace\mathbf{e}_{x}$

\end{document}

script bold E

frabjous
  • 41,473