Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. documentclass[11pt]{article}
  2.  
  3. usepackage[margin=1in]{geometry}
  4. usepackage{graphicx}
  5. usepackage{mathrsfs}
  6. usepackage[english]{babel}
  7. usepackage{circuitikz}
  8. usepackage{color}
  9. usepackage{listings} % for codes
  10. usepackage{amsmath,indentfirst} % for matrices
  11. usepackage{amssymb}
  12. usepackage{array}
  13. usepackage{tikz} % for flowcharts
  14. %usepackage[latin1]{inputenc}
  15. usetikzlibrary{shapes.geometric, arrows, shapes.arrows,decorations.pathmorphing, matrix,chains,scopes,positioning,fit,shapes.gates.logic.US, shapes.gates.logic.IEC, calc,
  16. decorations.markings,arrows.meta,bending}
  17. usepackage{tabu}
  18. usepackage{siunitx}
  19. usepackage{caption}
  20. usepackage{textcomp} % avoid the warning from gensymbol's package
  21. usepackage{gensymb} %for the degree symbol
  22. usepackage{pgfplots}
  23. usepackage{polynom}
  24. pgfplotsset{compat=1.11}
  25.  
  26. begin{document}
  27.  
  28. begin{center}
  29. begin{tikzpicture}[baseline=(current bounding box.center)]
  30. draw (0,0)
  31. to[short,o-] (1,0)
  32. to[R] (2.5,0)
  33. to[L] (4,0)
  34. to[short,-*] (5.5,0)
  35. -- (7,0)
  36. (8,0) node[transformer core] (T) {} (T.B1) -- (9.5,0)
  37. to[L] (11,0)
  38. to[R] (12.5,0)
  39. to [short,-o] (13.5,0)
  40. (5.5,0) -- (5.5,-0.4)
  41. -- (5.9, -0.4)
  42. to[L] (5.9,-1.9)
  43. -- (5.5,-1.9)
  44. -- (5.5,-2.3);
  45.  
  46. end{tikzpicture}
  47. end{center}
  48. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement