I'm trying to use the egameps package for making an extensive form game in LaTeX. I would like to use
\ctmbarc
to give an arc for a continuum of branches. Actually, without "arc" part out of \ctmbarc
, it is working fine. However, \ctmbarc
generates an error. I've taken the compiling route "LaTeX -> DIV -> PS -> PDF". This process works perfect using \ctmb
in the LaTeX code; but, it stops with \ctmbarc in it. My simple code is following;
Code: Select all
\documentclass[a4paper, 11pt] {article}
\usepackage{pstricks}
\usepackage{pstcol}
\usepackage{pst-3d}
\usepackage{url}
\usepackage{egameps}
\begin{document}
\begin{figure}[htb]
\hspace*{\fill}
\begin{egame}(600,280)
\putbranch(0,150)(2,2)[r]{150}
\ctmbarc[linewidth=0.3pt, linecolor=red]{N}(1,0){$a,\alpha$}[$2,2$]
\end{egame}
\hspace*{\fill}
\caption[]{Sample Game}\label{mygame}
\end{figure}
\end{document}