Difference between revisions of "LaTeX"

From Conservapedia
Jump to: navigation, search
(Examples: center to illustrate the effects of $$)
m (clean up)
Line 11: Line 11:
 
<center><math>\sqrt{\frac{1}{4}} = \frac{1}{2}</math></center>
 
<center><math>\sqrt{\frac{1}{4}} = \frac{1}{2}</math></center>
  
Highly complex mathematical expressions are also possible; for example, the following code<ref>[https://meta.wikimedia.org/wiki/Help:Displaying_a_formula Mediawiki Help:Displaying a Formula]</ref>:
+
Highly complex mathematical expressions are also possible; for example, the following code:<ref>[https://meta.wikimedia.org/wiki/Help:Displaying_a_formula Mediawiki Help:Displaying a Formula]</ref>
 
   \operatorname{erfc}(x) =
 
   \operatorname{erfc}(x) =
 
   \frac{2}{\sqrt{\pi}} \int_x^{\infty} e^{-t^2}\,dt =
 
   \frac{2}{\sqrt{\pi}} \int_x^{\infty} e^{-t^2}\,dt =
Line 29: Line 29:
 
<references/>
 
<references/>
  
==External Links==
+
==External links==
 
* [http://www.latex-project.org/ LaTeX – A document preparation system]
 
* [http://www.latex-project.org/ LaTeX – A document preparation system]
  

Revision as of 15:05, June 23, 2016

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