我该如何排版这个方程(物理标准模型)?

我该如何排版这个方程(物理标准模型)?

这就是这张照片拉格朗日

网上到处都是关于物理标准模型的相对简短的版本。我想用 LaTeX 排版以便打印。但是,我找不到排版D第二行划掉的部分的方法。

到目前为止,我有这个

    \documentclass[a4paper,10pt]{scrartcl} 

    \usepackage{amsmath,amssymb}

    \begin{document}
    What part of

    \begin{align*}
    \mathcal{L} &= - \frac{1}{4} F_{\mu \nu} F^{\mu \nu} \\
        &+ i \bar{\psi} D \psi + h.c. \\
        &+ \bar{\psi}_i y_{ij} \psi_j \phi + h.c. \\
        &+ |D_\mu \phi|^2 - V(\phi)
    \end{align*}

    didn't you understand?

    \end{document}

答案1

您可以使用cancel包。

\documentclass[a4paper,10pt]{scrartcl}

\usepackage{amsmath,amssymb,cancel}

\begin{document}
What part of

\begin{align*}
\mathcal{L} &= - \frac{1}{4} F_{\mu \nu} F^{\mu \nu} \\
    &\phantom{{}=}+ i \bar{\psi} \cancel{D} \psi + h.c. \\
    &\phantom{{}=}+ \bar{\psi}_i y_{ij} \psi_j \phi + h.c. \\
    &\phantom{{}=}+ |D_\mu \phi|^2 - V(\phi)
\end{align*}

didn't you understand?

\end{document}

在此处输入图片描述

相关内容