Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. documentclass[border=3mm]{standalone}
  2.  
  3. usepackage{tikz}
  4.  
  5.  
  6. begin{document}
  7.  
  8. begin{tikzpicture}[xscale=1.2,font=footnotesize]
  9. draw (0,0) -- (12,0);
  10. %
  11. foreachm/n in {0/1,3/N,4/N+1,7/2N,8/2N+1,11/3N}
  12. {node[scale=.7] at (m,0) {$|$};
  13. node[below,yshift=-5pt] at (m,0) {$n$};}
  14. %
  15. path
  16. node[above] at (1.5,0) {$B_1$}
  17. node[above] at (5.5,0) {$B_2$}
  18. node[above] at (9.5,0) {$B_3$};
  19. end{tikzpicture}
  20.  
  21. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement