0

I am making a flow chart for poster in latex. Here is my code. My problem is that i am not getting arrow heads but only straight lines. Here is my code where i introduced my flow chart enter image description here

Here i introduced the shapes and arrow style.enter image description here This is what i am getting

enter image description here

I need arrows between Rectangles. Could you please tell that where i am getting wrong?.

Lena
  • 1
  • 1
    welcome to tex.se! see, if solution on https://tex.stackexchange.com/questions/473647/flowchart-arrow-for-loop/473659#473659 can help you. to correct your code, please provide code, not image of it (copy code from your editor) which we can use ... – Zarko Feb 07 '19 at 14:19
  • If you zoom the image you can see that the arrows are there, they are just a bit small. See for example https://tex.stackexchange.com/questions/27279/how-to-make-an-arrow-bigger-and-change-its-color-in-tikz on how to change the appearance of the arrows. – Marijn Feb 07 '19 at 15:03

1 Answers1

1

This can serve as a starting point ...

\documentclass[tikz, margin=3mm]{standalone}
\usetikzlibrary{arrows.meta,
                chains,
                positioning}

\begin{document}
    \begin{tikzpicture}[
node distance = 4mm,
  start chain = going below,
  box/.style = {fill=#1, draw,
                text width=32mm, align=center,
                font=\normalsize\linespread{0.8}\selectfont,
                on chain, join=by arr},
  arr/.style = {thick, -Stealth, thick}
                        ]
\node [box=red!30]      {xxx xxx xxx xxx};
\node [box=blue!30]     {xxx xxx};
\node [box=orange!30]   {xxx xxx xxx xxx xxx xxx xxx xxx};
\node [box=green!30]    {xxx xxx xxx xxx xxx xxxx};
\node [box=gray!30]     {xxx xxx xxx xxx xxx xxxx};
\node [box=yellow!30]   {xxx xxx xxx xxx xxx xxx xxx xxx};
\end{tikzpicture}
\end{document}

 produced wit my MWE Since you not provide MWE (minimal working example: a small but complete document with your flowchart beginning with \documentclass... and ending with \end{document}, as you can see above) it is not clear how your flowchart should looks. So, for further help, please consider comments below your question.

Zarko
  • 296,517