脚注中矩阵的正确语法

脚注中矩阵的正确语法

我正在尝试在脚注中使用矩阵,文本可以编译,但是出现此错误“... l.198 ... \sigma}^{i}$ son las matrices de Pauli。} 错误消息顶行末尾的控制序列从未被 \def'ed...”

这是我的代码

\footnote{ In Weyl's base ${\gamma}^{\mu} = \begin{pmatrix}
{\mathbb{0}}_{2x2} & {\sigma}^{\mu}\\
{\bar{\sigma}}^{\mu} & {\mathbb{0}}_{2x2}
\end{pmatrix}$ with $ {\sigma}^{\mu}\equiv \{{\mathbb{I}}_{2x2};{\sigma}^{i}\} $ and 
$ {\var{\sigma}}^{\mu} \equiv \{{\mathbb{I}}_{2x2};-{\sigma}^{i}\} $ where 
${\sigma}^{i}$ are the Pauli's matrices.}

我得到了我想要的一切:

在此处输入图片描述

但我仍然收到错误,我该如何解决?我正在使用这个包

\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{bbold}

请帮忙。

答案1

在脚注中使用矩阵没有问题。您只需要在代码中使用\varsigma而不是即可。\var{\sigma}

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath, amssymb, bbold}

\begin{document}

Some text with a footnote.\footnote{ In Weyl's base ${\gamma}^{\mu} = \begin{pmatrix}
{\mathbb{0}}_{2x2} & {\sigma}^{\mu}\\
{\bar{\sigma}}^{\mu} & {\mathbb{0}}_{2x2}
\end{pmatrix}$ with $ {\sigma}^{\mu}\equiv \{{\mathbb{I}}_{2x2};{\sigma}^{i}\} $ and 
$ \varsigma^{\mu} \equiv \{{\mathbb{I}}_{2x2};-{\sigma}^{i}\} $ where 
${\sigma}^{i}$ are the Pauli's matrices.}

\end{document}

相关内容