答案1
给你!图书馆matrix of nodes
的这个matrix
似乎是完成这项任务的理想选择。
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{matrix}
\begin{document}
\begin{tikzpicture}
\matrix[matrix of nodes,row sep=1em] (m)
{
$S$: & apple & apple & apple & apple & apple \\
$T$: & 1 & 2 & 3 & 4 & 5 \\
$W$: & banana & banana & banana & banana & banana \\
};
\foreach \y in {1,3} {
\foreach \x in {2,...,6} {
\draw[<->] (m-\y-\x) -- (m-2-\x);
}
}
\end{tikzpicture}
\end{document}