I'm using a package called pst-pdgr which uses PSTricks. I have no prior experience with PSTricks but I am trying to read and understand as I go. However, I've run into a problem while compiling the pedigree: it doesn't render! I am following the documentation that came with pst-pdgr, but nothing I do--adding whatever packages I think are necessary (because the documentation doesn't go into much detail)--are fixing it. Here's MWE:
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{pst-pdgr,pstricks,pst-pdf,graphicx}
\usepackage[top=2cm, left=2cm, bottom=2cm,right=2cm]{geometry}
\begin{document}
\begin{pspicture}(7,7)
\rput{0.5,1.5}{\pstPerson[affected,female]{A}}
\rput{0.5,1.5}{\pstPerson[male]{B}}
\pstRelationship[descentnode=AB]{A}{B}
\ncline{AB}{C}
\end{pspicture}
\end{document}
If anyone can point me in the right direction, I'd appreciate it.

\rputshould be in parentheses () not braces {}. Also you need to compile this withlatex+dvipsnotpdflatex. – Alan Munn Feb 16 at 20:27latex+dvipsand see it that works. – Halime Feb 16 at 20:47