Facebook
From VANUR, 1 Month ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 116
  1. \usepackage{amsmath} % for the equation* environment
  2. \begin{document}
  3. This is a simple math expression \(\sqrt{x^2+1}\) inside text. And this is also the same:
  4. \begin{math}
  5. \sqrt{x^2+1}
  6. \end{math}
  7. but by using another command.This is a simple math expression without numbering
  8. \[\sqrt{x^2+1}\]  separated from text.
  9. This is also the same:
  10. \begin{displaymath}
  11. \sqrt{x^2+1}
  12. \end{displaymath}
  13. \ldots and this:
  14. \begin{equation*}
  15. \sqrt{x^2+1}
  16. \end{equation*}