Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. documentclass[tikz,border=2mm]{standalone}
  2. usepackage{bm}
  3.  
  4. begin{document}
  5.  
  6. begin{tikzpicture}
  7.  
  8. node[circle,draw] at (0,0) (n1) {A};
  9. node[circle,draw] at (5,0) (n2) {B};
  10.  
  11. draw[->] (n1) -- node[above]{$bm{w_1}$} (n2);
  12.  
  13. end{tikzpicture}
  14.  
  15. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement