为了完成数学作业,我需要用 tikz 或 pgf 在乳胶中绘制一个平面和平面上的一条垂直线。
我怎么做?
答案1
您可以使用类似这样的方法:
\documentclass[12pt,tikz,border=2mm]{standalone}
\usetikzlibrary{shapes.geometric}
\begin{document}
\begin{tikzpicture}[plane/.style={trapezium,draw,fill=black!20,trapezium left angle=60,trapezium right angle=120,minimum height=1.5cm},scale=0.7]
\node (p)[plane] at (0,0){.};
\draw (p.center) edge ++(0,2cm) edge[densely dashed] (p.south) (p.south) edge ++(0,-1cm);
\end{tikzpicture}
\end{document}
输出如下: