我尝试在一个大矩阵内制作 16 个 2x2 矩阵,但不知何故看起来不太好看,因为:
- 左侧大矩阵的左括号与小矩阵的左括号之间的间距太紧,右侧大矩阵的右括号与小矩阵的右括号之间的间距太宽。
- 较小的矩阵之间几乎没有垂直空间。
有没有什么办法可以解决这个问题?
平均能量损失
\documentclass{beamer}
\usetheme{default}
\usecolortheme{default}
\usefonttheme{default}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{caption}[numbered]
}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\begin{document}
\begin{frame}
\begin{block}{Algoritma}
\begin{enumerate}
\item
\begin{vmatrix}
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\\
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\\
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\\
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\begin{vmatrix} a & \cdots \\ \cdots & \cdots \end{vmatrix} &
\end{vmatrix}
\end{enumerate}
\end{block}
\end{frame}
\end{document}
答案1
tblr
您可以使用以下包来避免这些问题tabularray
:
\documentclass{beamer}
% \usetheme{default}
% \usecolortheme{default}
% \usefonttheme{default}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{caption}[numbered]
%}
\usepackage[english]{babel}
%\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
%\usepackage{amsmath}
\usepackage{tabularray}
\UseTblrLibrary{amsmath}
\begin{document}
\begin{frame}
\begin{block}{Algoritma}
\begin{enumerate}
\item
\begin{tblr}{
colspec={|llll|},
cells={mode=imath}
}
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\\
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\\
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\\
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\begin{+vmatrix} a & \cdots \\ \cdots & \cdots \end{+vmatrix} &
\end{tblr}
\end{enumerate}
\end{block}
\end{frame}
\end{document}