1

The MWE example below does everything I want it to do, except the line

\tlput{$\delta$}

does nothing. I want the $\delta$ to the left of the dashed line.

Here is the MWE:

\documentclass{article}

\usepackage{pst-node}

\begin{document}

    \begin{figure}
        \centering
        \psmatrix[colsep=0.3cm,rowsep=.4cm,mnode=circle]
        [mnode=dot,dotscale=.00001] \\
        [mnode=dot,dotscale=.00001] & [mnode=dot,dotscale=.00001] & [mnode=dot,dotscale=.00001] \\
        [mnode=r] && [mnode=r]
        \ncline{1,1}{2,2}
        \taput{$\Pi$}
        \tlput{$M_{3}$}
        \ncline{2,2}{3,1}
        \tlput{$M_{1}$}
        \ncline{2,2}{3,3}
        \trput{$M_{2}$}
        \psset{linestyle=dashed}\ncline{2,1}{2,3}
        \tlput{$\delta$}
        \endpsmatrix
    \end{figure}

\end{document}

Thanks.

Jonathan
  • 103

1 Answers1

1

it also works with the shortcuts:

\documentclass{article}
\usepackage{pst-node}
\begin{document}

        \psmatrix[colsep=0.3cm,rowsep=.4cm,mnode=r]
         ~       \\
         ~& ~ &  \\
         ~&  ~& 
        \ncline{1,1}{2,2}^{$\Pi$}<{$M_{3}$}
        \ncline{2,2}{3,1}<{$M_{1}$}
        \ncline{2,2}{3,3}>{$M_{2}$}
        \ncline[linestyle=dashed]{2,1}{2,3}<{$\delta$}
        \endpsmatrix

\end{document}

^: above, _: below, <: left, and >: right

enter image description here