我一直在苦苦思索如何将Example 1
数学资料放在左侧下方一行并居中。我该怎么做?
\documentclass[10pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\newtheorem{xmp}{Example}
\begin{document}
\begin{xmp}
$ \mathbf{A}_{4\times 4}=\begin{pmatrix}
5 & -2 & 4 & 7 \\
-1 & 3 & 0 & -6 \\
2 & -9 & 5 & 8 \\
0 & 3 & 4 & 1
\end{pmatrix} $
\end{xmp}
\end{document}
答案1
$
喜欢这个吗?用\[
和替换您的美元符号,\]
以在显示模式下格式化您的等式。
如需进一步阅读,请参阅$...$、$$...$$、\(...\) 和 \[...\] 之间有什么区别?
\documentclass[10pt,a4paper]{article}
\usepackage{amsmath}
\newtheorem{xmp}{Example}
\begin{document}
\begin{xmp}
\[
\mathbf{A}_{4\times 4}=\begin{pmatrix}
5 & -2 & 4 & 7 \\
-1 & 3 & 0 & -6 \\
2 & -9 & 5 & 8 \\
0 & 3 & 4 & 1
\end{pmatrix}
\]
\end{xmp}
\end{document}