interference

This commit is contained in:
Tom Krüger
2023-02-03 21:47:00 +01:00
parent cf0b5cc823
commit bd230b3366
5 changed files with 57 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{graphs, graphdrawing, graphdrawing.trees}
\begin{document}
\begin{tikzpicture}
\graph[tree layout]{
A -> {B , C}
};
\end{tikzpicture}
\end{document}