Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. '''
  2. documentclass[
  3. pdftex,
  4. 12pt,
  5. a4paper,
  6. chapterprefix,
  7. headinclude,
  8. headsepline,
  9. footsepline,
  10. colordvi,
  11. twoside,
  12. halfparskip,
  13. final,
  14. appendixprefix,
  15. pointlessnumbers,
  16. tablecaptionabove,
  17. BCOR=12mm,
  18. DIV=16,
  19. bibliography=totoc]{scrbook}
  20.  
  21. usepackage{tikz}
  22. usepackage{enumitem}
  23. usetikzlibrary{shapes.geometric, arrows, calc, fit, positioning, chains, arrows.meta}
  24.  
  25. %%% styles for Figure: Structure of the paper %%%
  26.  
  27.  
  28.  
  29.  
  30.  
  31. begin{document}
  32. tikzset{arrow/.style = {thick,->,>=stealth,}}
  33. tikzset{arrow2/.style = {thick,dotted,->,>=stealth,}}
  34. begin{figure}
  35. centering
  36. begin{tikzpicture}
  37. node[regular polygon, regular polygon sides=8, minimum width=3cm,draw,label=center:Input Scripts] (reg1) at (0,0){};
  38.  
  39. node[circle,minimum size=3cm, draw, label=center:Export Files] (c1) at (6,0){};
  40.  
  41. node[regular polygon, regular polygon sides=8, minimum width=3cm,draw,label=center:Input Files] (reg2) at (12,0){};
  42.  
  43. node[regular polygon, regular polygon sides=4, minimum width=3cm,draw,label=center:Execute] (s1) at (6,-6){};
  44.  
  45.  
  46. draw[arrow] (reg1.east) -- (c1.west);
  47. draw[arrow] (c1.east) -- (reg2.west);
  48. draw[arrow] (reg1.east) -- (s1.north);
  49. draw[arrow] (reg2.west) -- (s1.north);
  50. end{tikzpicture}
  51. caption[work-flow prepossess-0]{Prepossessing part-0} label{fig:pre2inout}
  52. end{figure}
  53. end{document}'''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement