Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{gensymb}
  3. usepackage{amsfonts}
  4. usepackage{amsmath}
  5. begin{document}
  6. title{Algebra}
  7. maketitle
  8.  
  9. section{Like Terms}
  10.  
  11.  
  12.  
  13. begin{flushleft}
  14. textbf{Examples of like terms:} \
  15. $3x$ and $5x$ \
  16. $4y^2$ and $9y^2$ \
  17. $7xy$ and $3xy$ \
  18. $6$ and $15$
  19. end{flushleft}
  20.  
  21. begin{flushright}
  22. textbf{Examples of unlike terms:} \
  23. $2x$ and $8y$ \
  24. $4t^2$ and $4t^3$ \
  25. $x^2y$ and $xy^2$ \
  26. $12$ and $12x$
  27. end{flushright}
  28.  
  29.  
  30. end{document}
  31.  
  32. begin{minipage}{.45linewidth}
  33. begin{flushleft}
  34. textbf{Examples of like terms:} \
  35. $3x$ and $5x$ \
  36. $4y^2$ and $9y^2$ \
  37. $7xy$ and $3xy$ \
  38. $6$ and $15$
  39. end{flushleft}
  40. end{minipage}
  41. hfill
  42. begin{minipage}{.45linewidth}
  43. begin{flushright}
  44. textbf{Examples of unlike terms:} \
  45. $2x$ and $8y$ \
  46. $4t^2$ and $4t^3$ \
  47. $x^2y$ and $xy^2$ \
  48. $12$ and $12x$
  49. end{flushright}
  50. end{minipage}
  51.  
  52. documentclass{article}
  53. begin{document}
  54.  
  55. section{Like Terms}
  56.  
  57. begin{center} % just for vertical spacing and killing indent
  58. begin{tabular*}{textwidth}{@{}l@{extracolsep{fill}}r@{}}
  59. textbf{Examples of like terms:} & textbf{Examples of unlike terms:} \
  60. $3x$ and $5x$ & $2x$ and $8y$ \
  61. $4y^2$ and $9y^2$ & $4t^2$ and $4t^3$ \
  62. $7xy$ and $3xy$ & $x^2y$ and $xy^2$ \
  63. $6$ and $15$ & $12$ and $12x$
  64. end{tabular*}
  65. end{center}
  66.  
  67.  
  68. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement