latex.tex 875 B

12345678910111213141516171819202122
  1. \usepackage{amsmath}
  2. \title{\LaTeX}
  3. \date{}
  4. \begin{document}
  5. \maketitle
  6. \LaTeX{} is a document preparation system for the \TeX{}
  7. typesetting program. It offers programmable desktop publishing
  8. features and extensive facilities for automating most aspects of
  9. typesetting and desktop publishing, including numbering and
  10. cross-referencing, tables and figures, page layout, bibliographies,
  11. and much more. \LaTeX{} was originally written in 1984 by Leslie
  12. Lamport and has become the dominant method for using \TeX; few
  13. people write in plain \TeX{} anymore. The current version is
  14. \LaTeXe.
  15. % This is a comment; it will not be shown in the final output.
  16. % The following shows a little of the typesetting power of LaTeX:
  17. \begin{align}
  18. E &= mc^2 \\
  19. m &= \frac{m_0}{\sqrt{1-\frac{v^2}{c^2}}}
  20. \end{align}
  21. \end{document}