%%{ init : { "flowchart" : { "curve" : "stepBefore" }}}%%
flowchart LR
dummy1[ ]:::empty -.-> I1
dummy1 -.-> I2
dummy1 -.-> I3
dummy1 -.-> I4
I1("Text + Figures + \n Code + ..."):::input --> O1["Published \n Paper \n (PDF)"]
I2("Text + Figures + \n Code + ..."):::input --> O2["Presentation \n Slides \n (PPTX/PDF)"]
I3("Text + Figures + \n Code + ..."):::input --> O3["Poster \n (PPTX/PDF)"]
I4("Text + Figures + \n Code + ..."):::input --> O4["Computational \n Notebook \n (Colab)"]
style O1 fill:#fca
style O2 fill:#ffb
style O3 fill:#f99
style O4 fill:#bfb
classDef empty width:0px,height:0px,fill:#000;