Difference between revisions of "LaTeX"

From Conservapedia
Jump to: navigation, search
m (clean up)
m (top: HTTP --> HTTPS [#1], replaced: http://books.google.com → https://books.google.com)
 
Line 1: Line 1:
'''LaTeX''' is a [[computer language|computer typesetting language]] for [[mathematical]] [[markup]]. It was designed and developed by Leslie Lamport<ref>Gratzer, G. ''First Steps in LaTeX''. Birkhauser, Boston; p. xiv (1999) [http://books.google.com/books?id=mLdg5ZdDKToC&lpg=PP1&pg=PR14#v=onepage&q&f=false]</ref> as an extension of TeX, an existing typesetting language developed by [[Donald Knuth]]. LaTeX is used nearly universally by [[mathematician]]s, [[physicist]]s, [[engineer]]s, [[computer scientist]]s and other scientists in need of technical formatting in their publications.
+
'''LaTeX''' is a [[computer language|computer typesetting language]] for [[mathematical]] [[markup]]. It was designed and developed by Leslie Lamport<ref>Gratzer, G. ''First Steps in LaTeX''. Birkhauser, Boston; p. xiv (1999) [https://books.google.com/books?id=mLdg5ZdDKToC&lpg=PP1&pg=PR14#v=onepage&q&f=false]</ref> as an extension of TeX, an existing typesetting language developed by [[Donald Knuth]]. LaTeX is used nearly universally by [[mathematician]]s, [[physicist]]s, [[engineer]]s, [[computer scientist]]s and other scientists in need of technical formatting in their publications.
  
 
==Examples==
 
==Examples==

Latest revision as of 18:01, September 26, 2018

LaTeX is a computer typesetting language for mathematical markup. It was designed and developed by Leslie Lamport[1] as an extension of TeX, an existing typesetting language developed by Donald Knuth. LaTeX is used nearly universally by mathematicians, physicists, engineers, computer scientists and other scientists in need of technical formatting in their publications.

Examples

\documentclass[12pt]{article}        %Specifies the font size and the document style
\begin{document}                     %Begins the document
$$\sqrt{\frac{1}{4}} = \frac{1}{2}$$ %Dollar sign ($) delimits math expressions; $$ delimits math expressions displayed centered on their own line
\end{document}                       %Document closing tag

This LaTeX code would output:

Highly complex mathematical expressions are also possible; for example, the following code:[2]

 \operatorname{erfc}(x) =
 \frac{2}{\sqrt{\pi}} \int_x^{\infty} e^{-t^2}\,dt =
 \frac{e^{-x^2}}{x\sqrt{\pi}}\sum_{n=0}^\infty (-1)^n \frac{(2n)!}{n!(2x)^{2n}}

would output:

The style declaration, beginning and closing end tags are omitted for brevity.

References

  1. Gratzer, G. First Steps in LaTeX. Birkhauser, Boston; p. xiv (1999) [1]
  2. Mediawiki Help:Displaying a Formula

External links