答案1
使用 tikz 非常简单,因为在这种情况下你只需要画直线。使用以下代码,你可以绘制图表。
\documentclass [tikz, border=2mm]{standalone}
\begin{document}
\begin{tikzpicture}[line cap=round,line join=round]
\draw[thick,orange] (0,3) -- (6,3);
\draw[thick,red] (0,0) -- (2,0);
\draw[thick,red] (4,0) -- (6,0);
\draw[thick,blue] (2,0) -- (4,0);
\draw[thick] (0,0) -- (0,6) -- (6,6) --(6,0);
\draw[->] (3,6) --++(45:1) node [above right] {a};
\draw[->] (1,-0.2) --++(270:1) node [below] {b};
\draw[->] (3,-0.2) --++(270:1) node [below] {c};
\draw[->] (5,-0.2) --++(270:1) node [below] {d};
\end{tikzpicture}
\end{document}