我必须写一个矩阵,我的代码是
\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\begin{document}
\begin{itemize}
\item Esercizio 165
$\begin{matrix}
1 & h\\
h & -1\\
1 & -1
\end{matrix}$
\end{itemize}
\end{document}
我得到:
! Misplaced alignment tab character &.
l.13 1 &
h\\
?
有什么问题 ?
答案1
您忘记加载amsmath
提供matrix
环境的包:
\usepackage{amsmath}
如果你因为某些不人道的原因而无法使用该amsmath
套餐,\matrix
宏(如果与加载的包一起使用,将会引发错误amsmath
)使用语法
$\matrix{
1 & h \crcr
h & -1 \crcr
1 & -1}$
答案2
例如
$\begin{array}{cc}
1 & h\\
h & -1\\
1 & -1
\end{array}$
cc
表示矩阵(数组)有两个居中列。其他可能为:l
- 左,r
- 右。