-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtik.tex
More file actions
15 lines (15 loc) · 735 Bytes
/
tik.tex
File metadata and controls
15 lines (15 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
[sibling distance=30em,level distance=6em,
every node/.style={shape=rectangle,draw,align=center}]
\node[font = {\huge\bfseries},red]{1,2,3 electron system}
child{node[font = {\Large\bfseries},black]{Exact Approach}
child{node[font = {\Large\bfseries},black]{compute many body WF and density}
child{node[font = {\Large\bfseries},black]{exact observable }}}}
child{node[font = {\Large\bfseries},blue]{Approximate approaches }
child{node[font = {\Large\bfseries},blue]{approximate the WF and density}
child{node[font = {\Large\bfseries},blue]{approximate observable}}}};
\end{tikzpicture}
\end{document}