缺少 $ 插入 \begin{pmatrix} 错误

缺少 $ 插入 \begin{pmatrix} 错误

我在下面的代码中得到了“缺少$插入\begin{pmatrix}”的错误

\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}

 %opening
\title{}
\author{}

\begin{document}

\maketitle

\section{}
\begin{pmatrix}
\tilde{\sigma}_{11} & \dots & \tilde{\sigma}_{1d}\\
\vdots & \vdots & \vdots \\
\tilde{\sigma}_{d1} & \dots & \tilde{\sigma}_{dd}
\end{pmatrix}
\end{document}

答案1

环境pmatrix必须发生在数学模式中:内联数学模式或(更可能)显示数学模式。

以下代码应该可以顺利编译。

\documentclass{article}
\usepackage{amsmath} % for 'pmatrix' environment
\newcommand\tsigma{\tilde{\sigma}} % handy shortcut macro

\begin{document}
\[ % enter display math mode
\begin{pmatrix}
\tsigma_{11} & \dots  & \tsigma_{1d}\\
\vdots       & \ddots & \vdots      \\
\tsigma_{d1} & \dots  & \tsigma_{dd}
\end{pmatrix}
\] % end display math mode
\end{document}

相关内容