Mathematical expressions
The feature that makes LaTeX the right editing tool for scientific documents is the ability to render complex mathematical expressions. This article explains the basic commands to display equations.
Introduction
Basic equations in LaTeX can be easily "programmed", for example:
The well known Pythagorean theorem \(x^2 + y^2 = z^2\) was
proved to be invalid for other exponents.
Meaning the next equation has no integer solutions:
\[ x^n + y^n = z^n \]
As you see, the way the equations are displayed depends on the delimiter, in this case \[ \]
and \( \)
.
Mathematical modes
LaTeX allows two writing modes for mathematical expressions: the inline mode and the display mode. The first one is used to write formulas that are part of a text. The second one is used to write expressions that are not part of a text or paragraph, and are therefore put on separate lines.
Let's see an example of the inline mode:
In physics, the mass-energy equivalence is stated
by the equation $E=mc^2$, discovered in 1905 by Albert Einstein.
To put your equations in inline mode use one of these delimiters: \( \)
, $ $
or \begin{math} \end{math}
. They all work and the choice is a matter of taste.
The displayed mode has two versions: numbered and unnumbered.
The mass-energy equivalence is described by the famous equation
$$E=mc^2$$
discovered in 1905 by Albert Einstein.
In natural units ($c$ = 1), the formula expresses the identity
\begin{equation}
E=m
\end{equation}
To print your equations in display mode use one of these delimiters: \[ \]
, $$ $$
, \begin{displaymath} \end{displaymath}
or \begin{equation} \end{equation}
Important Note: equation*
environment is provided by an external package, consult the amsmath article.
Reference guide
Below is a table with some common maths symbols. For a more complete list see the List of Greek letters and math symbols:
description | code | examples |
---|---|---|
Greek letters | \alpha \beta \gamma \rho \sigma \delta \epsilon |
$$ \alpha \ \beta \ \gamma \ \rho \ \sigma \ \delta \ \epsilon $$ |
Binary operators | \times \otimes \oplus \cup \cap |
|
Relation operators | < > \subset \supset \subseteq \supseteq |
|
Others | \int \oint \sum \prod |
Different classes of mathematical symbols are characterized by different formatting (for example, variables are italicized, but operators are not) and different spacing.
Further Reading
The mathematics mode in LaTeX is very flexible and powerful, there is much more that can be done with it:
Overleaf guides
- Creating a document in Overleaf
- Uploading a project
- Copying a project
- Creating a project from a template
- Including images in Overleaf
- Exporting your work from Overleaf
- Working offline in Overleaf
- Using Track Changes in Overleaf
- Using bibliographies in Overleaf
- Sharing your work with others
- Debugging Compilation timeout errors
- How-to guides
LaTeX Basics
- Creating your first LaTeX document
- Choosing a LaTeX Compiler
- Paragraphs and new lines
- Bold, italics and underlining
- Lists
- Errors
Mathematics
- Mathematical expressions
- Subscripts and superscripts
- Brackets and Parentheses
- Fractions and Binomials
- Aligning Equations
- Operators
- Spacing in math mode
- Integrals, sums and limits
- Display style in math mode
- List of Greek letters and math symbols
- Mathematical fonts
Figures and tables
- Inserting Images
- Tables
- Positioning Images and Tables
- Lists of Tables and Figures
- Drawing Diagrams Directly in LaTeX
- TikZ package
References and Citations
- Bibliography management in LaTeX
- Bibliography management with biblatex
- Biblatex bibliography styles
- Biblatex citation styles
- Bibliography management with natbib
- Natbib bibliography styles
- Natbib citation styles
- Bibliography management with bibtex
- Bibtex bibliography styles
Languages
- Multilingual typesetting on Overleaf using polyglossia and fontspec
- International language support
- Quotations and quotation marks
- Arabic
- Chinese
- French
- German
- Greek
- Italian
- Japanese
- Korean
- Portuguese
- Russian
- Spanish
Document structure
- Sections and chapters
- Table of contents
- Cross referencing sections and equations
- Indices
- Glossaries
- Nomenclatures
- Management in a large project
- Multi-file LaTeX projects
- Hyperlinks
Formatting
- Lengths in LaTeX
- Headers and footers
- Page numbering
- Paragraph formatting
- Line breaks and blank spaces
- Text alignment
- Page size and margins
- Single sided and double sided documents
- Multiple columns
- Counters
- Code listing
- Code Highlighting with minted
- Using colours in LaTeX
- Footnotes
- Margin notes
Fonts
Presentations
Commands
Field specific
- Theorems and proofs
- Chemistry formulae
- Feynman diagrams
- Molecular orbital diagrams
- Chess notation
- Knitting patterns
- CircuiTikz package
- Pgfplots package
- Typing exams in LaTeX
- Knitr
- Attribute Value Matrices
Class files
- Understanding packages and class files
- List of packages and class files
- Writing your own package
- Writing your own class
- Tips