[Tex/LaTex] How to draw a tree-like timeline diagram

boxesdiagramsmoderntimelinetikz-pgf

I am trying to draw the attached diagram in Tex (the attached is from Microsoft Word). Happy to make some tweaks, but it needs to look something like this. Thank you very much!
enter image description here

edit: could you give me a link to some good tutorial to use the most appropriate tool in your opinion, knowing what diagram I want to draw ?

Best Answer

As it was said, tikz and pgf will work nicely. You will find documentation here. I suggest that you start reading about nodes. For instance start with

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning} % Necessary to use right=5cm of A
\begin{document}
\tikz{
  \node (A) [rectangle,draw] {Text of A};
  \node (B) [rectangle,draw,right=5cm of A] {Text of B} edge (A.east);
}
\end{document}

see what it produces and tweak around...

Related Question