我想把这个图形(矩阵)放在中心但是我不能,即使标题居中:
请问该怎么做?
我有这个代码:
\begin{center}
\begin{figure}[H]
\begin{center}
\[
\begin{blockarray}{cccccc}
123 & 12,3 & 13,2 & 1,23 & 1,2,3\\
\begin{block}{(ccccc)c}
0 & 1 & 1 & 1 & 0 & 123 \\
1 & 0 & 0 & 0 & 1 & 12,3 \\
1 & 0 & 0 & 0 & 1 & 13,2 \\
1 & 0 & 0 & 0 & 1 & 1,23 \\
0 & 1 & 1 & 1 & 0 & 1,2,3 \\
\end{block}
\end{blockarray}
\]
\end{center}
\caption{ Matrice d'adjacence de treillis de 5 partitions de $E = \{1,2,3\}$}
\end{figure}
\end{center}
答案1
您的环境太多center
:
\begin{figure}
\centering
$\begin{blockarray}{cccccc}
123 & 12,3 & 13,2 & 1,23 & 1,2,3\\
\begin{block}{(ccccc)c}
0 & 1 & 1 & 1 & 0 & 123 \\
1 & 0 & 0 & 0 & 1 & 12,3 \\
1 & 0 & 0 & 0 & 1 & 13,2 \\
1 & 0 & 0 & 0 & 1 & 1,23 \\
0 & 1 & 1 & 1 & 0 & 1,2,3 \\
\end{block}
\end{blockarray}$
\caption{Matrice d'adjacence de treillis de 5 partitions de $E = \{1,2,3\}$}
\end{figure}
我删除了[H]
我通常推荐的规范不是使用,尤其是像这样的大物体。