I want to display the marriage of two sisters with the same man in a genealogy tree. I use the genealogytree package.
The following code produces the husband node twice, each having children with one of the sisters. What I intend is the husband node being placed in the middle inbetween the sisters with two edges going down to the children symmetrically just from this one husband node.
\documentclass{article}
\usepackage[all]{genealogytree}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\genealogytree[]{
child{
g[male]{A}
p[female]{B}
child{
g[female]{Sister 1}
p[male]{Husband of both sisters}
c[male]{Son A}
}
child{
g[female]{Sister 2}
p[male]{Husband of both sisters}
c[male]{Son B}
}
}
}
\end{tikzpicture}
\end{document}


genealogytreepackage have awestvirginiaoption to handle this? (Just kidding!!) – Steven B. Segletes Nov 24 '19 at 00:06