答案1
可能有很多方法可以实现类似的效果。这里有一个快速技巧。由于这是针对现有图表的,因此您可能希望对不同的图例条目和相应的箭头等使用样式。
\documentclass[border=5mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{matrix, fit}
\begin{document}
\begin{tikzpicture}
\matrix [draw,
matrix of nodes,
column sep=4mm
]
(m) at (1,1) {
Legend 1 & Legend 2 \\
\draw [blue, ->] (-.25,0) -- (0.25,0) node[minimum height=5pt]{}; &
\draw [red, ->] (-.25,0) -- (0.25,0); \\
};
\node [left=-\pgflinewidth] (leg) at (m.west) {Legend};
\node [draw, inner sep=-0.5\pgflinewidth,fit=(leg)(m.north west)(m.south west)] {};
\end{tikzpicture}
\end{document}