\documentclass{report}
\usepackage{amsmath,amssymb,amsthm}
\begin{document}
\[
\bf{P}=
\begin{Vmatrix}
P_{00} & P_{01} & P_{02} & \ldots \\
P_{10} & P_{11} & P_{12} & \ldots\\
\vdots & \vdots & \vdots & \ldots\\
P_{i0} & P_{i1} & P_{i2} & \ldots\\
\vdots & \vdots & \vdots & \ldots
\end{Vmatrix}
\]
\end{document}
答案1
显示数学模式 ( ) 中有清晰的线条\[ ... \]
,您必须将其删除
\documentclass{report}
\usepackage{amsmath,amssymb,amsthm}
\begin{document}
\[
\mathbf{P} =
\begin{Vmatrix}
P_{00} & P_{01} & P_{02} & \ldots \\
P_{10} & P_{11} & P_{12} & \ldots\\
\vdots & \vdots & \vdots & \ldots\\
P_{i0} & P_{i1} & P_{i2} & \ldots\\
\vdots & \vdots & \vdots & \ldots
\end{Vmatrix}
\]
\end{document}
或者将其注释掉。
\documentclass{report}
\usepackage{amsmath,amssymb,amsthm}
\begin{document}
\[
\mathbf{P}=
%
\begin{Vmatrix}
%
P_{00} & P_{01} & P_{02} & \ldots \\
P_{10} & P_{11} & P_{12} & \ldots\\
\vdots & \vdots & \vdots & \ldots\\
P_{i0} & P_{i1} & P_{i2} & \ldots\\
\vdots & \vdots & \vdots & \ldots
%
\end{Vmatrix}
\]
\end{document}
另外,避免使用\bf
、\it
和\tt
其他。它们已经弃用 20 多年了。它们也是开关,而不是命令,因此如果要使用它们,您需要像{\bf P}
、{\it P}
等一样使用它们。但您不应该使用它们。您需要\mathbf{P}
。