答案1
这就是你想要的吗?
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes,matrix,calc,positioning}
\begin{document}
\begin{center}
Title
\end{center}
\tikzset{mymatrix/.style={ampersand replacement=\&,nodes in empty cells, matrix of nodes,
nodes = { gray, draw, align=center, minimum height=4cm,
anchor=center,
minimum width=5cm,
inner sep=0pt,}}}
\begin{tikzpicture}
\matrix (a) [mymatrix]{ sized image\\};
\matrix (b) [mymatrix,right=of a,node distance=3cm]{ \node (){ \begin{tabular}{llllllllllll}
1 & 2 & 3 &4 & 5 & 6 & 7 & 8 & 9 & 10 & 11 & 12 \\
1 & & & & & & & & & & & \\
1 & & & & & & & & & & &
\end{tabular} };\\};
\end{tikzpicture}
\end{document}
可以调整标题和环境之间的距离,以及节点的距离。