Guest User

Untitled

a guest
Dec 14th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.00 KB | None | 0 0
  1. documentclass[12pt]{article}
  2. usepackage{setspace,amsmath,graphicx,float}
  3. usepackage[english]{babel}
  4. usepackage[natbibapa]{apacite}
  5. usepackage{times}
  6. usepackage{tikz}
  7. usetikzlibrary{shapes,arrows,arrows.meta,positioning,calc}
  8. begin{document}
  9. begin{figure}[H]
  10. centering
  11. tikzstyle{block} = [draw, rectangle, minimum height=5.5em, minimum width=19em]
  12. tikzstyle{smallblock} = [draw, rectangle, minimum height=5.5em, minimum width=9em]
  13. tikzstyle{input} = [coordinate]
  14. tikzstyle{output} = [coordinate]
  15. tikzstyle{pinstyle} = [pin edge={to-,thin,black}]
  16. begin{tikzpicture}[auto,node distance=7cm,>=latex',align=center]
  17. node [input, name=input] {};
  18. node [block, rounded corners=5pt, right of=input] (A) {Start with the narrowest product\ or geographic market definition.};
  19. node [block, rounded corners=5pt, below of=A, node distance=3.5cm] (B) {Is it profitable for a monopoly producer of\ that product to increase prices in a small but\ significant and nontransitory way?};
  20. node [block, rounded corners=5pt, below of=B, node distance=3.5cm] (C) {There must be at least one good substitute\ excluded from the current market definition.\ Expand the market to include it.};
  21. node [block, rounded corners=5pt, below of=C, node distance=3.5cm] (D) {Now have a multiproduct monopolist.\ Could he profitably raise prices?};
  22. node [smallblock, rounded corners=5pt, right of=D, node distance=8cm] (E) {Stop.\ Market definition\ is wide enough.};
  23. draw [-{Latex[length=3mm]}] (A) -- node[auto][name=1] [right]{} (B);
  24. draw [-{Latex[length=3mm]}] (B) -- node[auto][name=2] [right]{No} (C);
  25. draw [-{Latex[length=3mm]}] (C) -- node[auto][name=3] [right]{} (D);
  26. draw [-{Latex[length=3mm]}] (D) -- node[auto][name=4] [above]{Yes} (E);
  27. draw [-{Latex[length=3mm]}] (B) -| node[near start][name=5] [above]{Yes} (E);
  28. draw [-{Latex[length=3mm]}] (D) -- +(0,1)|- node[auto][name=6] [left]{No} (C);
  29. end{tikzpicture}
  30. caption[Illustration of an HMT decision tree]{Illustration of an HMT decision tree citep{QuantTech}.}label{AlgorithmHMT}
  31. end{figure}
  32. end{document}
  33.  
  34. documentclass[12pt]{article}
  35. usepackage{setspace,amsmath,graphicx,float}
  36. usepackage[english]{babel}
  37. usepackage[natbibapa]{apacite}
  38. usepackage{times}
  39. usepackage{tikz}
  40. usetikzlibrary{arrows, arrows.meta, calc, positioning, quotes, shapes}
  41.  
  42. begin{document}
  43. begin{figure}
  44. centering
  45. begin{tikzpicture}[
  46. auto,
  47. node distance = 11mm and 22mm,
  48. base/.style = {draw, rounded corners=5pt, minimum height=5.5em,
  49. align=center},
  50. block/.style = {base, minimum width=19em},
  51. smallblock/.style = {base, minimum width=9em},
  52. ]
  53. coordinate (in);
  54. node [block,right=of in] (A) {Start with the narrowest product\
  55. or geographic market definition.};
  56. node [block,below=of A ] (B) {Is it profitable for a monopoly producer of\
  57. that product to increase prices in a small but\
  58. significant and nontransitory way?};
  59. node [block,below=of B ] (C) {There must be at least one good substitute\
  60. excluded from the current market definition.\
  61. Expand the market to include it.};
  62. node [block,below=of C ] (D) {Now have a multiproduct monopolist.\
  63. Could he profitably raise prices?};
  64. node [smallblock,right=of D] (E) {Stop.\
  65. Market definition\
  66. is wide enough.};
  67. draw [-{Latex[length=3mm]}]
  68. (A) edge (B)
  69. (B) edge ["No"] (C)
  70. (C) edge (D)
  71. (D) edge ["Yes"] (E);
  72. draw [-{Latex[length=3mm]}]
  73. (B) -| node[pos=0.25,name=5] {Yes} (E);
  74. draw [-{Latex[length=3mm]}]
  75. (D.west) -- +(-1,0) |- node[pos=0.25] {No} (C);
  76. end{tikzpicture}
  77. caption[Illustration of an HMT decision tree]
  78. {Illustration of an HMT decision tree citep{QuantTech}.}
  79. label{AlgorithmHMT}
  80. end{figure}
  81. end{document}
Add Comment
Please, Sign In to add comment