I am working on attempting to draw some geometrical shapes using PSTricks in LaTeX. I'm pretty new to PSTricks, but I've done a few projects with LaTeX. I've discovered the package pst-eucl which has been quite helpful. It has some useful macros for dealing with triangles and such.
However, I can't figure out how to draw small arrows onto a line to mark two lines as parallel. There are some macros in pst-eucl that will draw hash marks on lines to mark equal length segments, but nothing to mark parallel lines. Has anyone used PSTricks to draw simple geometry diagrams like this? There must be a simple way to do this.
And if there are any suggestions on my style, or ways to simplify what I'm doing, please let me know.
Here is the PSTricks markup for the picture so far:
\begin{pspicture}(-6,0)(8,8)
% use dots to represent points
\psset{PointSymbol=*}
% draw original triangle in black
\pstTriangle[](1,3){A}(6,0){B}(0,0){C}
% draw points E and F
\pstGeonode[PosAngle={180,0}](-5,0){E}(8,6.5){F}
% create invisible point A' that extends the segment BA
\pstGeonode[PointName=none,PointSymbol=none](-4,6){A'}
% draw dashed line from A to A'
\pstLineAB[linestyle=dashed]{A}{A'}
% draw line the bisects angle A'AC - this isn't exact
\pstLineAB[linecolor=red]{A}{E}
% draw line CE
\pstLineAB[linecolor=red]{C}{E}
% draw line BF parallel to AC
\pstLineAB[linecolor=blue]{B}{F}
% draw line AF
\pstLineAB[linecolor=blue]{A}{F}
% mark two line segments of equal length - not exact
\pstSegmentMark[]{A}{B}
\pstSegmentMark[linecolor=blue]{F}{B}
% mark four angles alpha of equal measure
\pstMarkAngle[]{E}{A}{C}{$\alpha$}
\pstMarkAngle[]{A'}{A}{E}{$\alpha$}
\pstMarkAngle[]{B}{A}{F}{$\alpha$}
\pstMarkAngle[]{A}{F}{B}{$\alpha$}
% mark two more angles Beta with equal length
\pstMarkAngle[]{A}{C}{E}{$\beta$}
\pstMarkAngle[]{F}{B}{C}{$\beta$}
% only thing missing is some way to mark parallel segments AC and FB
\end{pspicture}