Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage{tikz}
  4.  
  5. begin{document}
  6. tikzset{
  7. bloc/.style={
  8. anchor=south west,
  9. draw,
  10. minimum height=0.7cm,
  11. align=left,
  12. font=small
  13. },
  14. }
  15.  
  16.  
  17.  
  18. begin{tikzpicture}
  19. pgfdeclarehorizontalshading{myshadingA}{3cm}{
  20. color(0cm)=(green);
  21. color(1.44cm)=(green);
  22. color(1.8cm)=(red)
  23. }
  24. node[bloc, minimum width=5.5cm,
  25. shading=myshadingA]
  26. at (-9,0.5) {Initialize process};
  27.  
  28. end{tikzpicture}
  29. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement