¿Cómo agregar padres dentro usando el árbol genealógico?

¿Cómo agregar padres dentro usando el árbol genealógico?

Estoy construyendo el árbol genealógico de mi familia (de todas ellas incluso de las lejanas). Me gustaría agregar a mi tatarabuela, de la rama de mi bisabuela. La sucursal de mi bisabuelo no hay problema. Esta es una parte (rama abuela), a modo de ejemplo:

\documentclass[a4,10pt,landscape]{article}
\usepackage{incgraph}
\usepackage[all]{genealogytree}

\newcommand{\f}{female}
\newcommand{\m}{male}

\gtrset{database format=short,edges={anchoring=center},language=spanish, level 0/.style={level distance=5mm}, level -1/.style={level distance=10mm},level -2/.style={level distance=15mm,level size=20mm, node size = 20mm},timeflow=down}
\gtrset{comment code={(\gtrDBcomment)}}

\begin{document}
\begin{inctext}
\begin{genealogypicture}[processing=database,database format=full,template=signpost,node size=3cm,level size=3.2cm,list separators hang,place text={\newline}{},box={fit basedim=9pt,boxsep=2pt,segmentation style={solid},halign=left,before upper=\parskip1pt,\gtrDBsex}]
sandclock
{
    child{
        g[\m]{
            my great-great-grandfatherX
        }
        p[\f]{
            my great-great-grandmotherX
        }
        child{
            g[\m]{
                my great-grandfatherX
            }
            p[\f,processing=database]{
                name={my great-grandmotherY},
                comment={\textbf{Here!} How add her mother or father?},
            }
            child{
                g[\f]{my grandmotherX}
                p[\m]{my grandfatherZ}
                c[\f]{my aunt}
                c[\m]{my other uncle}
                child{
                    g[\f]{my other aunt}
                    p[\m]{husband of my aunt}
                    c[\f]{my cousin}
                }
                child{
                    g[\m]{my father}
                    p[\f]{my mother}
                    c[\f]{my sister}
                    c[\m]{my brother}
                    c[\m]{me}
                }
            }
        }
    }
}
\end{genealogypicture}
\end{inctext}

\end{document}

Intenté usar parent dentro de esto:

   p[\f,processing=database]{
            name={my great-grandmotherY},
            comment={\textbf{Here!} How add her mother or father?},
            parent{
                    g[\f]{my great-great-grandmotherY}
            },
    }

No funcionó pero al menos no mostró error. Es casi similar al ejemplo del manual de genealogytree para el árbol genealógico de Gauss (páginas 39 a 42), pero no funciona correctamente. ingrese la descripción de la imagen aquí

¡Muchas gracias! Darío

información relacionada