genealogytree 包:左对齐 timeflow=down 树

genealogytree 包:左对齐 timeflow=down 树

我尝试使用 genealogytree 包制作家谱。我想遵循向下的时间流,但仍然将每一代都左对齐。有什么想法吗?我希望男性直接位于彼此之下 最小代码示例(完整版本很大,有很多附加信息,所以我希望能够遵循左侧的直线):

\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[all]{genealogytree}
\begin{document}

\begin{genealogypicture}[
node size=4cm,
level size=2cm,
level distance=1cm,
timeflow=down,
]
sandclock{
 child{ 
 g[male]{Johann Christian}
 p[female]{Maria Katharina Bürmann}
  child{
  g[male]{Johann Christoffer} 
  p[female]{Ilse Marie Cords}
   child{
   g[male]{Johann Friedrich Christian}
   p[female]{Anna Maria Kopp}
   }
  }
 }
 parent{
  g[male]{Hans Meyer}
 } 
}
\end{genealogypicture}

\end{document}

在此处输入图片描述

答案1

好吧,对于那些感兴趣的人:g 的枢轴选项可以解决问题。

g[pivot,male]{Some Name}

相关内容