Advertisement
Guest User

Trash 2

a guest
Dec 13th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.44 KB | None | 0 0
  1. \documentclass{article}
  2.  
  3. \usepackage{tikz}
  4. \tikzset{
  5.    axis/.style={{Latex[width=2mm]}-{Latex[width=2mm]}}
  6. }
  7. \usepackage{amsmath}
  8. \usepackage{amssymb}
  9.  
  10. \usetikzlibrary{arrows.meta}
  11. \begin{document}
  12.  
  13. \begin{center}
  14. \begin{tikzpicture}[every node/.style={scale=1.5}]
  15. \coordinate (y) at (0,12);
  16. \coordinate (x) at (12,0);
  17.  
  18. \coordinate (s0) at (0cm,6cm);
  19. \coordinate (s) at (12cm,12cm);
  20.  
  21. \coordinate (ssr0) at (0cm,4cm);
  22. \coordinate (ssr) at (12cm,10cm);
  23.  
  24. \coordinate (slr0) at (0cm,1cm);
  25. \coordinate (slr) at (12cm,6cm);
  26.  
  27. \coordinate (wagv) at (0cm,11cm);
  28. \coordinate (d) at (12cm,2cm);
  29. \draw[axis] (y) node[left] {Wage} -- (0,0) -- (x) node[below] {Employment};
  30. \draw (s0) -- (s) node[right] {$S$};
  31. \draw[style={dashed}] (ssr0) -- (ssr) node[right] {$S_{SR}$};
  32. \draw[style={densely dashed}] (0,8) node[left] {$W$} -| (4,8) -| (4,0)    node[below] {$E$};
  33. \draw[style={densely dashed}] (0,6.8) node[left] {$W_{SR}$} -| (5.6,6.8) -| (5.6,0) node[below] {$E_{SR}$};
  34. \draw[style={densely dashed}] (0,4.571) node[left] {$W_{LR}$} -| (8.571,4.571) -| (8.571,0) node[below] {$E_{LR}$};
  35. \draw[dash pattern = on 10pt off 10pt on 10pt off 10pt on 10pt off 10pt on 10pt off 10pt on 10pt off 10pt on 10pt off 10pt on 10pt off 10pt on 10pt off 10pt on 10pt off 10pt] (slr0) -- (slr) node[right] {$S_{LR}$};
  36. \draw (wagv) -- (d) node[below,right] {$D$};
  37. \end{tikzpicture}
  38. \end{center}
  39.  
  40. \begin{center}
  41. \begin{tikzpicture}[every node/.style={scale=1.5,color=black}]
  42. \coordinate (y) at (0,12);
  43. \coordinate (x) at (12,0);
  44.  
  45. \coordinate (s0) at (0cm,6cm);
  46. \coordinate (s) at (12cm,12cm);
  47.  
  48. \coordinate (ssr0) at (0cm,4cm);
  49. \coordinate (ssr) at (12cm,10cm);
  50.  
  51. \coordinate (slr0) at (0cm,1cm);
  52. \coordinate (slr) at (12cm,6cm);
  53.  
  54. \coordinate (wagv) at (0cm,11cm);
  55. \coordinate (d) at (12cm,2cm);
  56. \draw[axis] (y) node[left] {Wage} -- (0,0) -- (x) node[below] {Employment};
  57. \draw[color=blue] (s0) -- (s) node[right] {$S$};
  58. \draw[color=teal] (ssr0) -- (ssr) node[right] {$S_{SR}$};
  59. \draw[style={densely dashed}] (0,8) node[left] {$W$} -| (4,8) -| (4,0)    node[below] {$E$};
  60. \draw[style={densely dashed}] (0,6.8) node[left] {$W_{SR}$} -| (5.6,6.8) -| (5.6,0) node[below] {$E_{SR}$};
  61. \draw[style={densely dashed}] (0,4.571) node[left] {$W_{LR}$} -| (8.571,4.571) -| (8.571,0) node[below] {$E_{LR}$};
  62. \draw[color=green] (slr0) -- (slr) node[right] {$S_{LR}$};
  63. \draw[color=red] (wagv) -- (d) node[below,right] {$D$};
  64. \end{tikzpicture}
  65. \end{center}
  66.  
  67. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement