Skip to content

Instantly share code, notes, and snippets.

@shelepuginivan
Last active September 28, 2025 00:31
Show Gist options
  • Select an option

  • Save shelepuginivan/abf7157e7d7c661c53ed12833e3c753c to your computer and use it in GitHub Desktop.

Select an option

Save shelepuginivan/abf7157e7d7c661c53ed12833e3c753c to your computer and use it in GitHub Desktop.
A collection of maths symbols for quick access

Maths symbols

A collection of maths symbols for quick access:

LaTeX

These symbols can be used as is.

\mathbb{Q}

\varnothing

Tip

LaTeX symbols are supported by a number of math engines, such as MathJax.

Typst

These symbols can be used in text mode with #sym. prefix, or in math mode as follows:

#sym.QQ

$ forall k in ZZ $

Algebraic logic

Meaning/Description LaTeX Typst Preview
Quantifier of generality (for all) \forall forall $\forall$
Quantifier of existance (there exists) \exists exists $\exists$
Negation (NOT) \neg not $\neg$
Conjunction (AND) \wedge and $\wedge$
Disjunction (OR) \vee or $\vee$
Implication (IF ..., THEN ...) \Rightarrow => $\Rightarrow$
Equivalence (IF AND ONLY IF) \Leftrightarrow <=> $\Leftrightarrow$
Exclusive or (XOR) \bigoplus xor.big $\bigoplus$

Sets, set operations and relations

Meaning/Description LaTeX Typst Preview
Natural numbers \mathbb{N} NN $\mathbb{N}$
Integers \mathbb{Z} ZZ $\mathbb{Z}$
Rational numbers \mathbb{Q} QQ $\mathbb{Q}$
Real numbers \mathbb{R} RR $\mathbb{R}$
Complex numbers \mathbb{C} CC $\mathbb{C}$
Empty set (nothing) \varnothing nothing $\varnothing$
Union \cup union $\cup$
Intersection \cap sect $\cap$
Set difference \setminus without $\setminus$
Symmetric difference \vartriangle triangle.stroked.small.t $\vartriangle$
Membership (in) \in in $\in$
Membership (not in) \notin in.not $\notin$
Subset \subset subset $\subset$
Subset (strict) \subsetneq subset.neq $\subsetneq$
@burukut
Copy link

burukut commented Mar 3, 2025

Mathematics is full of symbols that help simplify complex concepts, making calculations and problem-solving more efficient. Whether you're working with algebra, calculus, or geometry, having a quick reference to common math symbols can save time and reduce errors. From basic operators like + and − to advanced notations such as ∫ for integration and Σ for summation, these symbols are essential tools for students and professionals alike. If you're looking for more educational resources, check out this website: https://learnerstv.org/Free-Chemistry-video-lecture-courses.htm a well-organized collection of symbols can greatly enhance mathematical understanding!

@thenumbernine
Copy link

The number sets don't seem to match with MathJax. For \mathbb{R}, in github I see R, while in MathJax I see ℝ.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment