Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. begin{multline*}
  2. Time = a + b * h1(x) + c * h2(x) + d * h3(x) + e * h4(x) \
  3. where htextsubscript{1,2,3,4}(x) =
  4. Bigg{
  5. begin{tabular}{cc}
  6. x & x > 0 \
  7. 0 & x $leq$ 0
  8. end{tabular}
  9. end{multline*}
  10.  
  11. documentclass{article}
  12. usepackage{amsmath}
  13. begin{document}
  14. begin{multline*}
  15. mathrm{Time} = a + b times h_1(x) + c times h_2(x) + d times h_3(x) + e times h_4(x) \
  16. text{where} h_{1,2,3,4}(x) =
  17. begin{cases}
  18. x & x > 0 \
  19. 0 & x leq 0
  20. end{cases}
  21. end{multline*}
  22. end{document}
  23.  
  24. documentclass{article}
  25. usepackage{amsmath}
  26. begin{document}
  27. We have
  28. [mathrm{Time} = a + b times h_1(x) + c times h_2(x) + d times h_3(x) + e times h_4(x)]
  29. where
  30. [h_{1,2,3,4}(x) =
  31. begin{cases}
  32. x & x > 0 \
  33. 0 & x leq 0
  34. end{cases}]
  35. end{document}
  36.  
  37. documentclass{article}
  38. usepackage{amsmath}
  39. begin{document}
  40. We have
  41. [mathrm{Time} = a + b times h_1(x) + c times h_2(x) + d times h_3(x) + e times h_4(x)]
  42. where
  43. [h_{1,2,3,4}(x) =
  44. begin{cases}
  45. x & text{if $x > 0$} \
  46. 0 & text{otherwise}
  47. end{cases}]
  48. end{document}
  49.  
  50. documentclass[12pt]{article}
  51. usepackage{amsmath}
  52. begin{document}
  53.  
  54. begin{flalign}
  55. mathrm{Time} = & , a + b ast h1(x) + c ast h2(x) + d ast h3(x) + e ast h4(x) &nonumber\
  56. mathrm{where} & , h_{1,2,3,4}(x) =
  57. begin{cases}
  58. x & x > 0 \
  59. 0 & x leq 0
  60. end{cases}
  61. end{flalign}
  62.  
  63. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement