How to write a proportional to symbol in LaTeX?

How to write a proportional to 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 a simple way to create a proportional to symbol in LaTeX.

In mathematics, physics, and even chemistry, the proportional to symbol is not a foreigner, it is used on many occasions, and today you will learn how to insert such a symbol in your LaTeX document.  

Proportional to 

It belongs to the relational operator’s symbols, this symbol adapts to many escenarios and is used usually in experimental data to create a relationship between two quantities. It is built-in LaTeX, it takes no value as an argument, and it requires the math mode. 

The command is very simple \propto, for example, a simple relation. 

\begin{document}
$$a \propto b$$
\end{document}

(We use all this box stuff in grey like the above for illustration.)

proportional to symbol in LaTeX
Standard proportional to symbol

“Not proportional to” Symbol

\propto with packages

Just a quick hack, you can actually achieve the same output using packages such as the amssymb package, using \varpropto. As you can see the symbol has slight variations in symbol size and form.

\documentclass{article}
\usepackage{amssymb}
\begin{document}
$$x \varpropto y$$
\end{document}
proportional to symbol in LaTeX
Amssymb output

As a plus maybe you will want to use the “not proportional to” symbol, it can be created using the \not before the \propto. For example

\documentclass{article}
\usepackage{amssymb}
\begin{document}
$$a \not\propto b$$
$$x \not\varpropto y$$ %different fonts for the symbols
\end{document}

Variations of the proportional to symbols

proportional to symbol in LaTeX
Variations of the proportional to symbols

There are a few variations for these two symbols that you can use in your LaTeX document. The first is the standard \propto, and the second is using the \varpropto command with the amssymb package. As you can see, the output for these symbols is slightly different in size and form.

Also included a \notpropto symbol and a \sim command for “similar to”. These variations can be helpful in your LaTeX documents, especially if you are working with data or creating equations.

It is up to you to decide which easier ways you prefer. You can see that it is not complicated to create this symbol even with packages, but personally, I prefer the built-in command. 

Final Thoughts

Now you know about this symbol’s definitions and how to use it.

I hope you find this post useful and helpful, and as always keep writing in LaTeX.

FAQ

What does Propto symbol mean?

Nomenclature. Propo. The proto-type is a binary mathematics operator indicating that left values are proportional. Therefore “x” y implies a nonzero constant ” c ” x = ” b “.


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 real number symbol in LaTeX?
  14. How to write a tilde symbol in LaTeX?
  15. How to write a union symbol in LaTeX?
  16. How to write a vector in LaTeX?
  17. How to write an infinity symbol in LaTeX?
  18. How to write bold text in LaTeX?
  19. How To Write Dots Symbols 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