Guest User

Untitled

a guest
Jan 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. documentclass{standalone}
  2. usepackage{tikz}
  3. usetikzlibrary{calc, positioning}
  4. defd{0.7cm}
  5. tikzset{
  6. >=latex,
  7. font=sffamily,
  8. mybox/.style={rectangle, fill=white, thin, draw, outer sep=0, minimum width = d, minimum height = d, inner sep=0},
  9. }
  10. begin{document}
  11. begin{tikzpicture}
  12. foreachk/s in {
  13. 0/1, 3/{N-1}, 4/{N}
  14. }{
  15. node[mybox] (bck) at ($(-k*d, 0)$) {$S_{s}$};
  16. }
  17.  
  18. end{tikzpicture}
  19. end{document}
Add Comment
Please, Sign In to add comment