How to write dots symbols in LaTeX?

How to write dots symbols in LaTeX?

This post may contain affiliate links that allow us to earn a commission at no expense to you. Learn more

This article aims to show you the simplest and easiest way to write dots symbols in LaTeX.

Whether you use them for multiplication, or for denoted large numbers or any other use you imagine, dots symbols are part of LaTeX, and today you will learn how to write it in your documents

Dots Symbols

This symbol can be seen alone or in groups, depending on the use, maybe inside a matrix or between countable elements. Depending on the context you will use it for one thing or another. For example

dots symbols in LaTeX
Image source: scijournal Author

Dots in LaTeX

Now in LaTeX, all the dots symbols do not need external packages, they are built-in into LaTeX. Math mode is indeed required for all the LaTeX commands.

If we want to recreate the example above the code will look like,

\documentclass{article}
\begin{document}
\begin{center}
    $$\mathbf{A} = (a_1, a_2, \ldots, a_n)$$
    $$\mathbf{B} = \begin{pmatrix}
    b_{11} & b_{12} & \cdots & b_{1n} \\
    b_{21} & b_{22} & \cdots & b_{2n} \\
    \vdots & \vdots & \ddots & \vdots \\
    b_{m1} & b_{m2} & \cdots & b_{mn}
    \end{pmatrix}$$
    $$\vec{C} \cdot \vec{D}$$
\end{center}
\end{document}

If you pay attention you will see that the word \[letter]dots, this is the command for all the dots symbols you can create by default, where letter can be any of the following letters: l, c, v, and d.

Another important aspect is the difference between singular and plural, dots is for three dots following each other in a line, whereas dot is just for one simple dot.

Vertical/Horizontal/Diagonal Dots

Let’s start with the vertical dots, the command is \vdots. You can think of it as vertical dots, literally the abbreviation! You can use it if you are working with matrices or vectors in matrix form. For example

\begin{document}
    $$\vec{x} = \begin{bmatrix}
    x_1 \\
    x_2 \\
    \vdots \\
    x_n
    \end{bmatrix}$$
\end{document}
dots symbols in LaTeX
\vdots Vertical dots
Image source: scijournal Author

Moving on to the next orientation you have the horizontal dots, here we have two commands for the dots, the \cdots command, and the \ldots command. The latter is lowered dots and the former is centered dots. 

The \ldots is used for a set of numbers for example, and \cdots usually with functions with n terms. For example

\begin{document}
    $$Q = q_1, q_2, q_3, \ldots, q_{n}$$
    $$\sum_{i=1}^{n}R_{i} = r_1 + r_2 + \cdots + r_n$$
\end{document}
dots symbols in LaTeX
\ldots Lowered dots and \cdots Centered dots. 
Image source: scijournal Author

The last option available for the orientation of dots is the diagonal dots, the command is \ddots diagonal dots. 

These type of dots are most used in matrices, for example 

\begin{document}
    $$\delta = \begin{pmatrix}
    a_{11}  & \cdots & a_{1n} \\
    \vdots & \ddots & \vdots \\
    a_{m1} & \cdots & a_{mn}
    \end{pmatrix}$$
\end{document}
dots symbols in LaTeX
\ddots diagonal dots
Image source: scijournal Author

Simple Dot Symbol in LaTeX

In case you are wondering how to write a simple dot symbol the command would be \cdot center dot. The output would look like the dot product, and that’s the reason for using \cdot in the dot product.

\begin{document}
$$ \vec{X} \cdot \vec{Y}$$
\end{document
dots symbols in LaTeX
Image source: scijournal Author

You are now ready to start writing your dots symbols in LaTeX; maybe there are more options with packages for these symbols, but that is up to you to look for the answers.

I hope this tutorial was helpful.

As always, keep writing in LaTeX.

All the images were created in LaTeX by the author.

Further Reading

LaTex Tutorial on Symbols

  1. How To Create A Cross Product Symbol In LaTeX
  2. How to create a hat symbol in LaTeX?
  3. How to create a prime symbol in LaTeX?
  4. How to create an absolute value symbol in LaTeX?
  5. How to create an approximate symbol in LaTeX?
  6. How to create an intersection symbol in LaTeX?
  7. How to create the empty set symbol in LaTeX?
  8. How to write a degree symbol in LaTeX?
  9. How to write a dot product in LaTeX?
  10. How to Write a Greater Than Symbol in LaTeX?
  11. How to write a norm symbol in LaTeX?
  12. How to write A Plus-Minus Symbol in LaTeX
  13. How to write a proportional to symbol in LaTeX?
  14. How to write a real number symbol in LaTeX?
  15. How to write a tilde symbol in LaTeX?
  16. How to write a union symbol in LaTeX?
  17. How to write a vector in LaTeX?
  18. How to write an infinity symbol in LaTeX?
  19. How to write bold text in LaTeX?
  20. How to write the arrow symbols in LaTeX
  21. How to write the Degree celsius symbol in LaTeX?
  22. How to write the equal or not equal symbol in LaTeX?
  23. How to write the Euro symbol in LaTeX?
  24. How to write the floor symbol in LaTeX?
  25. How to write the gradient operator symbol in LaTeX
  26. How To Write The Greater Than Or Equal To Symbol In LaTeX?
  27. How to write the integer number symbol in LaTeX?
  28. How to write the less than symbol in LaTeX?
  29. How to write the Natural numbers symbol in LaTeX?
  30. How to write the parallel symbol in LaTeX?
  31. How to write the percent symbol in LaTeX?
  32. How to write the square root symbol in LaTeX?
  33. How To Write The Symbol For A Subset In LaTeX?
  34. How to write the symbol for therefore in LaTeX?
  35. How to write with the mathbb in LaTeX?

Photo of author
Author
SJ Tsai
Chief Editor. Writer wrangler. Research guru. Three years at scijournal. Hails from a family with five PhDs. When not shaping content, creates art. Peek at the collection on Etsy. For thoughts and updates, hit up Twitter.

Leave a Comment