考虑:
\documentclass[12pt]{amsart}
\usepackage{tikz}
\begin{document}
\subsection {\bfseries Shembulli i dyte, Matrica.}
Konsiderojm matricen
\begin{equation*}
a = \begin{pmatrix}1 & 1\\ 0 & 1\end{pmatrix}
\end{equation*}.
Per ndonje e numer te tipit integjer n do te kemi formen e pergjitheshme:
\end{document}
这个等式:{equation*} a = \begin{pmatrix}1 & 1\\ 0 & 1\end{pmatrix}\end{equation*}
答案1
您可以使用该smallmatrix
环境进行内联数学运算:
\documentclass[12pt]{amsart}
\begin{document}
\setcounter{section}{1} % just for this example
\subsection{Shembulli i dyte, Matrica.}
Konsiderojm matricen
$a = \bigl( \begin{smallmatrix}1 & 1\\ 0 & 1\end{smallmatrix}\bigr)$.
Per ndonje e numer te tipit integjer n do te kemi formen e pergjitheshme:
\end{document}
答案2
您可以使用更简单的方法来输入这些矩阵:使用中的psmallmatrix
或psmallmatrix*
命令mathtools
。带星号的版本接受列对齐( 或默认 )作为[r]
可选[l]
参数[c]
。
类似地,您有bsmallmatrix
、Bsmallmatrix
或vsmallmatrix
环境Vsmallmatrix
。
\documentclass[12pt]{amsart}
\usepackage{mathtools}
\usepackage{nccmath}
\begin{document}
\subsection {\bfseries Shembulli i dyte, Matrica.}
Konsiderojm matricen
$ a = \begin{psmallmatrix}-1 & -1\\ 0 & 1\end{psmallmatrix} \neq \begin{psmallmatrix*}[r]-1 & -1\\ 0 & 1\end{psmallmatrix*} $.
Per ndonje e numer te tipit integjer n do te kemi formen e pergjitheshme:
\[ \begin{pmatrix*}[r]-1 & -1\\ 0 & 1\end{pmatrix*} \]%
\end{document}
答案3
始终使用 $ 进行内联:
$a = (\begin{matrix}1 & 1\\ 0 & 1\end{matrix})$