Como adicionar o pai dentro usando a árvore genealógica?

Como adicionar o pai dentro usando a árvore genealógica?

Estou construindo a árvore genealógica da minha família (todas mesmo as distantes). Gostaria de acrescentar minha tataravó, do ramo da minha bisavó. O ramo do meu bisavô aí não tem problema. Esta é uma parte (avó do ramo), a título de exemplo:

\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}

Eu tentei usar parent dentro disso:

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

não funcionou, mas pelo menos não apresentou erro. É quase semelhante ao exemplo do manual genealogytree para a árvore genealógica de Gauss (páginas 39 a 42), mas não funciona corretamente. insira a descrição da imagem aqui

Muito obrigado! Dario

informação relacionada