0

enter image description here

How can i write the bar/slash over the m in latex?

Dio
  • 3

2 Answers2

2

You can use the slashed package.

\documentclass[a4paper,12pt]{article}
\usepackage{mathtools,slashed}
\begin{document}
$P_0(\slashed{m} \frac{t\lambda}{\slashed{m}})$
\end{document}

Using Latex to write math equations is easy but overwhelming at the beginning. Maybe you find Detexify or Mathpix useful when you can write down what you need but do not have the words to describe it clearly.

Sebastiano
  • 54,118
0

Using \not command.

\documentclass[a4paper,12pt]{article}
\usepackage{amsmath,amssymb}

\begin{document} [P_0\left(\not m \frac{\lambda t}{\not m}\right)] \end{document}

enter image description here

Sebastiano
  • 54,118