계보 트리를 사용하여 내부에 부모를 추가하는 방법은 무엇입니까?

계보 트리를 사용하여 내부에 부모를 추가하는 방법은 무엇입니까?

나는 우리 가족의 계보를 만들고 있습니다. (그들 모두 먼 가족이라도). 증조할머니 분가에 속한 증조할머니를 추가하고 싶습니다. 증조할아버지의 가지에는 문제가 없습니다. 예를 들어 다음은 부분(분기 할머니)입니다.

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

나는 이것 안에 부모를 사용해 보았습니다.

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

작동하지 않지만 적어도 오류는 표시되지 않았습니다. Gauss의 계보 나무에 대한 genealogytree 매뉴얼(39~42페이지)의 예와 거의 유사하지만 올바르게 작동하지 않습니다. 여기에 이미지 설명을 입력하세요

정말 감사합니다! 다리오

관련 정보