Difference between revisions of "LaTeX:LaTeX on AoPS"

(LaTeX on the AoPSWiki and the AoPS Community)
Line 5: Line 5:
  
 
----
 
----
== LaTeX on the AoPSWiki and the AoPS Community ==
+
== Getting Started with LaTeX ==
  
 
LaTeX uses a special "math mode" to display mathematics. There are two types of this "math mode":
 
LaTeX uses a special "math mode" to display mathematics. There are two types of this "math mode":

Revision as of 20:49, 30 September 2015

LaTeX
About - Getting Started - Diagrams - Symbols - Downloads - Basics - Math - Examples - Pictures - Layout - Commands - Packages - Help

This article explains how to use LaTeX in the AoPSWiki, the AoPS Community, and the AoPS Classroom. See Packages to know which packages are prebuilt into the AoPS site.



Getting Started with LaTeX

LaTeX uses a special "math mode" to display mathematics. There are two types of this "math mode":

  • In-line math mode. In in-line math mode, we use $ signs to enclose the math we want to display, and it displays in-line with our text. For example, typing $ \sqrt{x} = 5 $ gives us $\sqrt{x} = 5.$
  • Display math mode. In display math mode, we enclose our code in double dollar signs, and it displays the math centered and on its own line. For example, $$ \sqrt{x} = 5 $$ gives us \[\sqrt{x} = 5.\]

Besides from display in-line vs. displaying centered and on a new line, the two modes render differently in other ways. Note that $ \sum_{k=1}^n k^2 $ gives us $\textstyle\sum_{k=1}^n k^2,$ whereas $$ \sum_{k=1}^n k^2 $$ gives us \[\sum_{k=1}^n k^2.\] If, for some reason, you want the display style in in-line mode, just place at the start of your code. For example, $ \sum_{k=1}^n k^2 $ gives $\textstyle \sum_{k=1}^n k^2,$ whereas $\sum_{k=1}^n k^2 $ gives $\sum_{k=1}^n k^2.$

LaTeX can also be used to draw figure and diagrams on the AoPS site using a language called Asymptote. See Asymptote to learn more.

That's all there is to invoking LaTeX on the AoPS site. Of course, you'll want to do more than square roots! You can read through the Symbols and Commands pages to learn how to render other symbols with LaTeX. You can also click on formulas created by others to see the code they've used.