答案1
您的矢量产品草图非常简单,可以用普通的 TikZ 绘制:
\documentclass[tikz, border=3mm]{standalone}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
% plane
\draw (0,0) -- ++ (45:2.2) -- ++ (3.3,0) -- ++ (225:2.2) -- cycle;
\draw[very thick,->] (22.5:1.4) -- ++ (0,2) node[left] {$a\times b$} ;
\draw[->] (2,0.5) -- ++ (45:1) node[above right] {$a$};
\draw[->] (2,0.5) -- ++ (1,0) node[right] {$b$};
\end{tikzpicture}
\end{document}
注意:在我的学校,我们通常在左下角画矢量图……