Guest User

Untitled

a guest
Mar 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. begin{multline}
  2. %begin{center}
  3. dot{x}=x_1 \
  4. dot{x_1}=x_2 \
  5. vdots \
  6. dot{x_n}= -frac{f_0}{f_n}x_1 -frac{f_1}{f_n}x_2- cdots -frac{f_{n-1}}{f_n}x_n
  7. %end{center}
  8. end{multline}
  9.  
  10. documentclass{article}
  11. usepackage{tabstackengine}
  12. TABstackMath
  13. begin{document}
  14. begin{equation}
  15. setstacktabulargap{0pt}% Horz. gap between columns
  16. setstackgap{L}{1.2baselineskip}% vert gap between rows
  17. TABbinary% apply {} before and after each cell to set proper = spacing
  18. tabularCenterstack{rcl}{
  19. dot{x}&=&x_1 \
  20. dot{x_1}&=&x_2 \
  21. &vdots&}
  22. end{equation}
  23. end{document}
  24.  
  25. begin{equation}
  26. begin{array}{ccc}
  27. dot{x} &= & x_{1} \
  28. dot{x}_{1} &= & x_{2} \
  29. &vdots&
  30. end{array}
  31. end{equation}
  32.  
  33. documentclass[12pt]{article}
  34.  
  35. usepackage{mathtools} % loads amsmath
  36.  
  37. begin{document}
  38.  
  39. begin{align*}
  40. dot{x} &= x_1 \
  41. dot{x}_1 & =x_2 \
  42. &vdotswithin{=} \
  43. MTFlushSpaceAbove
  44. dot{x}_n& = -frac{f_0}{f_n} x_1 -frac{f_1}{f_n}x_2- cdots -frac{f_{n-1}}{f_n}x_n
  45. end{align*}
  46.  
  47. end{document}
Add Comment
Please, Sign In to add comment