私は自分の家族の系図を作成しています(遠い親戚も含めてすべて)。私の高祖母、高祖母の分家を追加したいと思います。私の高祖父の分家は問題ありません。これは一部(祖母の分家)の例です。
\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}
},
}
動作しませんが、少なくともエラーは表示されませんでした。これは、genealogytree のマニュアルの Gauss の系図ツリー (39 ~ 42 ページ) の例とほぼ同じですが、正しく動作しません。
どうもありがとう!ダリオ