帮助解决 latex 语法解析错误

帮助解决 latex 语法解析错误

有人能帮忙修复语法解析错误吗?

\documentclass{article}
\usepackage[utf8]{inputenc}

\begin{document}
    \begin{aligned}
        \rho &= \begin{pmatrix}
            ae^{i\theta}\be^{i\phi}
        \end{pmatrix}\begin{pmatrix}
            ae^{-i\theta}&be^{-i\phi}
        \end{pmatrix}\
        &=\begin{pmatrix}
            a^2&abe^{i(\theta-\phi)}\
            abe^{-i(\theta-\phi)}&b^2
        \end{pmatrix}
    \end{aligned}
    
    \rho=\begin{pmatrix}
        p&re^{i\Theta}\
        re^{-i\Theta}&1-p
    \end{pmatrix}
\end{document}

错误

答案1

三个问题:

  1. 需求\usepackage{amsmath}

  2. \be不明确的

  3. alignedpmatrix环境并且所有数学内容都需要在数学模式下调用,这里以显示样式实现\[...\]

修正了 MWE。

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\newcommand\be{be}
\begin{document}
\[
    \begin{aligned}
        \rho &= \begin{pmatrix}
            ae^{i\theta}\be^{i\phi}
        \end{pmatrix}\begin{pmatrix}
            ae^{-i\theta}&be^{-i\phi}
        \end{pmatrix}\
        &=\begin{pmatrix}
            a^2&abe^{i(\theta-\phi)}\
            abe^{-i(\theta-\phi)}&b^2
        \end{pmatrix}
    \end{aligned}
\]
\[
    \rho=\begin{pmatrix}
        p&re^{i\Theta}\
        re^{-i\Theta}&1-p
    \end{pmatrix}
\]
\end{document}

在此处输入图片描述

相关内容