How To Write The Percent Symbol In LaTeX?

How To Write The Percent Symbol 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 the percent symbol in LaTeX.

The percent symbol is very common nowadays, either in science, economics, business, or everyday life. That is why today you will learn a little bit about it and how to write it in your LaTeX documents.

Percent Sign/Symbol

The percent sign or percent symbol, is used to indicate the percentage which is a ratio as a fraction of 100; in plain english it indicates that a number is divided by 100. 

Percent Symbol In Latex :

I can assure you that this special character is used more than you can actually notice, and learning how to write it in LaTeX will be helpful in the long term.

Percent Symbol in LaTeX

In LaTeX to write the percent symbol, we do not need any package (at least for now), it is built-in by default. 

Likewise, this symbol is allowed either in math or text mode.

To write percent in the document you would probably be tempted to use the “%” key on your keyboard, but it would not work. In LaTeX the character “%” is used for comments, everything written following it would be a comment in your code.

\documentclass{article}
\begin{document}
Using \verb|\%|: \% \\
Using \verb|%|:   % which do not create any output, meaning it is a comment    
\end{document}
Percent Symbol In Latex : Special characters
Special characters

That is why we first use a backslash “\” and then the percentage symbol “%”, the LaTeX command would look like “\%”. As you can see it does not have any value as an argument (lucky us!), for example

\documentclass{article}
\begin{document}
    Text mode: 4 is the 20\% of 20 \\
    Math mode: $10$ is the $50\%$ of $20$
\end{document}
Percent Symbol In Latex : The symbol works in both modes
The symbol works in both modes

Usually, LaTeX has many special characters or symbols already but if you feel unsatisfied, you can always check packages on the internet for more symbols and possibilities. Although we do not recommend it if it’s already there, why reinvent the wheel?

I hope this tutorial was helpful in guiding you, and as always keep writing in LaTeX.

All 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 Dots Symbols In LaTeX?
  21. How to write the arrow symbols in LaTeX
  22. How to write the Degree celsius symbol in LaTeX?
  23. How to write the equal or not equal symbol in LaTeX?
  24. How to write the Euro symbol in LaTeX?
  25. How to write the floor symbol in LaTeX?
  26. How to write the gradient operator symbol in LaTeX
  27. How To Write The Greater Than Or Equal To Symbol In LaTeX?
  28. How to write the integer number symbol in LaTeX?
  29. How to write the less than symbol in LaTeX?
  30. How to write the Natural numbers symbol in LaTeX?
  31. How to write the parallel 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