This guide offers a comprehensive list of LaTeX math symbols commonly used in mathematical and scientific content. We've grouped the commands by category to make it easy to browse and see how each one will look in your documentation.

If you're using Confluence to create or manage technical content, our LaTeX Math for Confluence app will help insert clean, professional-looking equations into your pages. It supports standard LaTeX math notation as well as syntax for physics and chemistry so that you can visualize everything from integrals and vectors to chemical reactions and isotopes.

🔸 Operators

This is a group of common LaTeX math commands used to display mathematical operations such as addition, subtraction, division, and comparison.

SymbolLaTeX CodeDescription

+Plus

-Minus

\pmPlus-minus

\divDivision

\timesMultiplication

\neqNot equal

\proptoProportional to

\simSimilar to

\simeqAsymptotically equal to

\congCongruent to

\approxApproximately equal

\equivIdentical to

\not\equivNot identical to

\leqLess than or equal to

\geqGreater than or equal to

\llMuch less than

\ggMuch greater than

\perpPerpendicular

🔸 Fractions and roots

The section covers how to write simple and nested fractions, square roots, and n-th roots to express ratios and radicals. 

SymbolLaTeX CodeDescription

\frac{1}{2}Fraction

\frac{1+\frac{a}{b}}{1+\frac{1}{1+\frac{1}{a}}}
Nested fractions

\sqrt{x}Square root

\sqrt[n]{x}n-th root

🔸 Superscripts and subscripts

The list of LaTeX commands to format powers, indices, and combined notations using superscripts and subscripts in equations.

SymbolLaTeX CodeDescription

x^2Superscript

x_nSubscript

x^{2+2}Grouped superscript

x_2^5Combined subscript and superscript

{}_1^2\!X_3^4Preceding subscript and superscript

🔸 Sums, products, and limits

This part of the guide provides LaTeX syntax for summation, product notations, coproducts, and mathematical limits.

SymbolLaTeX CodeDescription

\sum_{k=1}^N k^2Summation

\prod_{i=1}^N x_iProduct

\coprod_{i=1}^N x_iCoproduct

\lim_{n \to \infty}x_nLimit

🔸 Integrals

LaTeX commands to express single, double, triple, and contour integrals, used frequently in calculus and advanced mathematics.

SymbolLaTeX CodeDescription

\int_{-N}^{N} e^x\, dxIntegral

\iint_{D}^{W} \, dx\,dyDouble integral

\iiint_{E}^{V} \, dx\,dy\,dzTriple integral

\oint_{C} x^3\, dx + 4y^2\, dyContour integral

🔸 Derivatives, arrows, and visual grouping

This group of LaTeX commands includes notation for derivatives, vectors, accents, arrows, and braces, which is helpful for organizing and emphasizing expressions.

SymbolLaTeX CodeDescription

x'Derivative

\dot{x}First derivative

\ddot{y}Second derivative

\tilde{x}Tilde accent

\vec{c}Vector notation

\overleftarrow{a b}Overleft arrow

\overrightarrow{a b}Overright arrow

\widehat{a b c}Wide hat

\overset{\frown}{XY}Arc

\overline{a b c}Overline

\underline{a b c}Underline

\overbrace{1+2+\cdots+1000}Overbrace

\underbrace{a+b+\cdots+z}Underbrace

🔸 Functions

This category focuses on LaTeX symbols for trigonometric, logarithmic, exponential, and other mathematical functions, including min/max and set operations.

FunctionLaTeX CodeDescription

\sin\thetaSine

\cos\thetaCosine

\tan\thetaTangent

\cot\thetaCotangent

\sec\thetaSecant

\csc\thetaCosecant

\arcsin\frac{L}{r}Arcsine (Inverse sine)

\arccos\frac{T}{r}Arccosine (Inverse cosine)

\arctan\frac{L}{T}Arctangent (Inverse tangent)

\sinh gHyperbolic sine

\cosh hHyperbolic cosine

\tanh iHyperbolic tangent

\exp\!tExponential function

\ln XNatural logarithm

\lg XBase-10 logarithm (common logarithm)

\log XGeneral logarithm

\log_{10}Logarithm base 10

\log_\alpha XLogarithm with an arbitrary base α

\min LMinimum value

\inf sInfimum – the greatest lower bound of a set

\sup tSupremum – the least upper bound of a set

\max HMaximum value

\deg xDegree of a polynomial

\arg xArgument (angle) of a complex number

\ker gKernel of a function

\lim_{t\to n}TLimit

\dim xDimension of a vector space or object

🔸  Matrix formatting in LaTeX

This symbol set illustrates how to build matrices using various delimiters, align elements, and use ellipses for generalized matrix notation.

SymbolLaTeX CodeDescription

\begin{matrix} a & b \\ c & d \end{matrix}A plain matrix with no delimiters.

\begin{pmatrix} a & b \\ c & d \end{pmatrix}A matrix enclosed in parentheses ( ).

\begin{bmatrix} a & b \\ c & d \end{bmatrix}A matrix enclosed in square brackets [ ]

\begin{Bmatrix} a & b \\ c & d \end{Bmatrix}A matrix enclosed in curly braces { }

\begin{vmatrix} a & b \\ c & d \end{vmatrix}A matrix enclosed in single vertical bars, used to denote determinants

\begin{Vmatrix} a & b \\ c & d \end{Vmatrix}A matrix enclosed in double vertical bars, often used for norms

\begin{bmatrix} a_{11} & a_{12} & \cdots & a_{1n} \\ a_{21} & a_{22} & \cdots & a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{bmatrix}General form of an m×nm \times nm×n matrix using ellipsis and diagonal dots

&Separates matrix columns

\\Ends the current matrix row

\cdotsHorizontal ellipsis (for continued values in a row)

\vdotsVertical ellipsis (for continued values in a column)

\ddotsDiagonal ellipsis (used in square matrices)

🔸 Multiline equations

This part of the guide shows how to align and format multi-line equations to break complex formulas across lines or show step-by-step solutions.

SymbolLaTeX CodeDescription

\begin{align}
a + b + c &= d + e \\
x + y &= z
\end{align}
Aligns the = signs vertically and numbers both equations

\begin{array}{lcl}
a + b + c & = & d \\
x + y & = & m + n
\end{array}
Left alignment

\begin{array}{lcr}
a + b + c & = & d \\
x + y & = & m + n
\end{array}
Right alignment

\[
\begin{cases}
x + 2y + 3z = 14 \\
2x - y + z = 3 \\
-x + y - 2z = -5
\end{cases}
\]
Simultaneous equations

🔸 Geometric symbols

This set features LaTeX math symbols used in geometry, such as angles or triangles, and relational positions like perpendicularity or parallelism.

SymbolLaTeX CodeDescription

\BoxBox

\DiamondDiamond

\triangleTriangle

\angleAngle

\perpPerpendicular

\midDivides

\nmidDoes not divide

\|

Parallel

🔸 Sets and relational symbols

The LaTeX commands that cover set theory notations, including membership, unions, intersections, subsets, and related relational symbols.

SymbolLaTeX CodeDescription

\forallFor all

\existsThere exists

\inElement of

\niContains as a member

\subsetSubset of

\subseteqSubset or equal to

\supsetSuperset of

\supseteqSuperset or equal to

\sqcapSquare intersection

\sqcupSquare union

\cupUnion

\bigcup_1^{k} pUnion over multiple indexed sets

\capIntersection

\bigcap_1^{n} pIntersection over multiple indexed sets

\emptysetEmpty set

\setminusSet difference

\notinNot an element of

\biguplusDisjoint union

🔸 Logical operators and arrows

LaTeX syntax for logical symbols and various directional arrows, which are often used in proofs, logic statements, and function mappings.

SymbolLaTeX CodeDescription
\landLogical AND
\lorLogical OR
¬\lnot or \negLogical NOT
\RightarrowImplies
\LeftrightarrowIf and only if
\leftarrow or \getsLeft arrow
\rightarrow or \toRight arrow
\leftrightarrowLeft-right arrow
\mapstoMaps to
\hookleftarrowHook left arrow
\hookrightarrowHook right arrow
\nearrowNortheast arrow
\searrowSoutheast arrow
\swarrowSouthwest arrow
\nwarrowNorthwest arrow
\uparrowUp arrow
\downarrowDown arrow

🔸 Special symbols

The group of LaTeX math symbols for number sets and calculus operators, such as partial derivatives and gradients. 

SymbolLaTeX CodeDescription
\mathbb{N}A set of natural numbers
\mathbb{Z}Integers
\mathbb{Q}Rationals
\mathbb{R}Reals
\mathbb{C}Complex numbers
\nablaNabla (gradient)
\partialPartial derivative

🔸 Greek letters

This section provides LaTeX math commands for lowercase Greek letters commonly used in mathematical notation, variables, and constants across various disciplines.

SymbolLaTeX Code

\alpha \beta \gamma \delta \epsilon \zeta 

\eta \theta \iota \kappa \lambda \mu

\nu \xi \pi \rho \sigma \tau 

\upsilon \phi \chi \psi \omega


This guide covers a wide range of LaTeX math commands for creating clear and professional-looking equations. If you have any questions, feel free to contact us. We're always glad to help you get the most out of LaTeX in Confluence and enhance the way you add formulas and equations in your documentation.