Advertisement
kokokozhina

latex

Apr 6th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.72 KB | None | 0 0
  1. \usepackage{amsmath}
  2. \usepackage{amssymb}
  3.  
  4. %in document
  5. \[
  6. F(x) = \left\{
  7. \begin{array}{ll}
  8. x^2 + y - 25x, & \text{if } x > 0;\\
  9. x^3 - 3y + 7, & \text{if } {-25}\leqslant x \leqslant 0;\\
  10. x + 2y^2, & \text{if } x<{-25};
  11. \end{array}
  12. \right\}
  13. \]
  14.  
  15. \[
  16. F(x) =
  17. \begin{cases}
  18. x^2 + y - 25x, & \text{if } x > 0;\\
  19. x^3 - 3y + 7, & \text{if } {-25}\leqslant x \leqslant 0;\\
  20. x + 2y^2, & \text{if } x<{-25};
  21. \end{cases}
  22. ,\qquad \text{where } y = \alpha ^ {\gamma}
  23. \]
  24.  
  25. \begin{gather}
  26. x(t) = x_A + (x_B - x_A)\cdot t \\
  27. y(t) = y_A + (y_B - y_A)\cdot t \\
  28. z(t) = z_A + (z_B - z_A)\cdot t
  29. \end{gather}
  30.  
  31. \begin{gather*}
  32. x(t) = x_A + (x_B - x_A)\cdot t \\
  33. y(t) = y_A + (y_B - y_A)\cdot t \\
  34. z(t) = z_A + (z_B - z_A)\cdot t
  35. \end{gather*}
  36.  
  37. \begin{gather}
  38. x(t) = x_A + (x_B - x_A)\cdot t \label{eq:1} \\
  39. y(t) = y_A + (y_B - y_A)\cdot t \label{eq:2} \\
  40. z(t) = z_A + (z_B - z_A)\cdot \label{eq:3}t
  41. \end{gather}
  42.  
  43.  %\eqref{eq:3}
  44.  
  45. \begin{equation} \left\{
  46. \begin{gathered}
  47. x(t) = x_A + (x_B - x_A)\cdot t \\
  48. y(t) = y_A + (y_B - y_A)\cdot t
  49. \end{gathered}
  50. \right.
  51. \end{equation}
  52.  
  53. \begin{align}
  54. a = & 25, & b = & 38, & c = & 56, \\
  55. d = & 325, & f = & 238, & e = & 156
  56. \end{align}
  57.  
  58. \begin{align*}
  59. a ={}& 25, & b ={}& 38, & c ={}& 56, \\
  60. & & f &= 238, & e &= 156
  61. \end{align*}
  62.  
  63. \begin{equation}
  64. \begin{aligned}
  65. a ={}& 25, & b ={}& 38, & c ={}& 56, \\
  66. & & f &= 238, & e &= 156
  67. \end{aligned}
  68. \end{equation}
  69.  
  70. \begin{multline}
  71. Tran(a,b,c,d) = a^b + \cos \frac ba - \sin \frac c d + \|a^2 + b^3 - c^4 \| + \\ + lim_{x \to \infty}{\frac {a^x + \log b}{b! + x!}} - trop(b, a, d)^{tr(b,a,c)} + \sum_{i = 1}^{\infty} \frac{a^{}}{a!+b!} = \\= \Gamma(a, b) + \psi(a, b^d) - \prod_{j = 1}^{\infty}\sum_{k = 0}^{i^k}
  72. \end{multline}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement