\documentclass[12pt]{article}
\usepackage{amsmath,amssymb,newcent}
\usepackage{pstricks,pst-eucl}
\usepackage{auto-pst-pdf}
\begin{document}
\begin{pspicture}
\pstGeonode[PosAngle={90,0,-90}](1,2){M_1}(2,1){M_2}(1,0){M_3}
\pstSegmentMark{M_1}{M_2} %%%%\pstSegmentMark
\pstSegmentMark{M_2}{M_3}
\pstSegmentMark{M_3}{M_1}
\end{pspicture}
\begin{pspicture}
\pstGeonode[PosAngle={90,0,-90}](1,2){M_1}(2,1){M_2}(1,0){M_3}
\pstMarkSegment{M_1}{M_2} %%%%\pstMarkSegment
\pstMarkSegment{M_2}{M_3}
\pstMarkSegment{M_3}{M_1}
\end{pspicture}
\end{document}
The result of compiling :
In pst-eucl documentation (v.1.59), the general syntax is :
But in the latter example, the syntax is :
The default value of is \MarkHashh, not \pstslashh.
Question:
According to the above result, \pstMarkSegment is failed, Should I choose one ?





\pstSegmentMark[MarkAngle=45,SegmentSymbol=MarkHash]{D}{E} \pstSegmentMark[MarkAngle=30,SegmentSymbol=MarkCross]{E}{A}to illustrate how to useSegmentSymbolandMarkAngle. – Display Name Dec 09 '18 at 08:33