решение1
Я публикую этот ответ, потому что предыдущий ответ (Сина Ахмади) не удовлетворяют важному условию:наклоны двух линий братьев и сестер различны.
Настраиваемый код:
Определяем новую команду \binary
. Ее синтаксис следующий:
\binary[slope left=<num>,slope right=<num>,height=<num>] (<node>) to (<node>) node {<text>} and (<node>) node {<text>};
Это даст нам
Обратите внимание, что height
это из , A.north
а не из A.south
. Требуется улучшение.
Установка slope left=50,slope right=35,height=0.75
дает нам
\documentclass[tikz,margin=3mm]{standalone}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
\def\binary[slope left=#1,slope right=#2,height=#3] (#4) to (#5) node #6 and (#7) node #8; {
\node (#5) at ($(#4)+({180+#1}:{#3/cos(90-(#1))})$) {#6};
\node (#7) at ($(#4)+({-#2}:{#3/cos(90-(#2))})$) {#8};
\draw (#5.north)--(#4.south)--(#7.north);
}
\node (A) at (0,0) {A};
\binary[slope left=50,slope right=35,height=0.75] (A) to (1) node {1} and (B) node {B};
\binary[slope left=50,slope right=35,height=0.75] (B) to (2) node {2} and (C) node {C};
\binary[slope left=50,slope right=35,height=0.75] (C) to (3) node {3} and (D) node {D};
\binary[slope left=50,slope right=35,height=0.75] (D) to (4) node {4} and (E) node {E};
\binary[slope left=50,slope right=35,height=0.75] (E) to (5) node {5} and (F) node {F};
\end{tikzpicture}
\end{document}
Менее настраиваемый код:
Немного изменено \binary
, и теперь метки всех узлов и имена узлов одинаковы.
\documentclass[tikz,margin=3mm]{standalone}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
\def\binary[slope left=#1,slope right=#2,height=#3] (#4) to (#5) and (#6); {
\node (#5) at ($(#4)+({180+#1}:{#3/cos(90-(#1))})$) {#5};
\node (#6) at ($(#4)+({-#2}:{#3/cos(90-(#2))})$) {#6};
\draw (#5.north)--(#4.south)--(#6.north);
}
\node (A) at (0,0) {A};
\binary[slope left=50,slope right=35,height=0.75] (A) to (1) and (B);
\binary[slope left=50,slope right=35,height=0.75] (B) to (2) and (C);
\binary[slope left=50,slope right=35,height=0.75] (C) to (3) and (D);
\binary[slope left=50,slope right=35,height=0.75] (D) to (4) and (E);
\binary[slope left=50,slope right=35,height=0.75] (E) to (5) and (F);
\end{tikzpicture}
\end{document}
решение2
решение3
Вы можете использовать forest
package. Вот минимальный рабочий пример:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{forest}
\begin{document}
\begin{forest}
[A
[1][B
[2][C
[3][D
[4][E]
]
]
]
]
]
\end{forest}
\end{document}
что дает следующее:
Вы можете найти больше примеровздесь.