Guest User

Untitled

a guest
Sep 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. documentclass[border=1pt, tikz]{standalone}
  2. usepackage{tikz}
  3.  
  4. usetikzlibrary{positioning,calc}
  5. usetikzlibrary{decorations.pathreplacing}
  6. usetikzlibrary{shapes.geometric,shapes.arrows,decorations.pathmorphing}
  7. usetikzlibrary{matrix,chains,scopes,positioning,arrows,fit}
  8.  
  9. begin{document}
  10. begin{tikzpicture}
  11. [mynode/.style = {rectangle, draw, align=center,
  12. inner xsep=6mm, inner ysep=3mm, rounded corners},
  13. -latex,
  14. ]
  15.  
  16. % nodes
  17. % node[mynode, label={[name=lab]Camera & Infrared Sensor}] (inner1);
  18. node[mynode, label={[name=lab]Camera & Infrared Sensor}] (inner1) {Time Synchronization};
  19. node[mynode, below=12mm of inner1] (justbelow) {Resampling};
  20. node[fit={(lab) (justbelow) (inner1)}, draw] (outer2) {};
  21.  
  22. end{tikzpicture}
  23. end{document}
Add Comment
Please, Sign In to add comment