Get succeeds (≻) and precedes (≺) symbol in LaTeX
In this tutorial, you will learn how to get succeeds (≻) and precedes (≺) symbol in LaTeX. Also, get not succeeds and not precedes symbol in LaTeX.
Print succeeds (≻) and precedes (≺) symbol
In order to print the succeeds and precedes symbol in LaTeX you can use the \prec
(≻) and \succ
(≺) command. Take a look.
\documentclass{article} \begin{document} $$ \prec A \succ $$ \end{document}
Output:
Print not succeeds (⊁) and not precedes (⊀) symbol
To print the not succeeds and not precedes symbol in a LaTeX document, you can use the \nprec
(⊁) and \nsucc
(⊀) commands provided by the amssymb
package.
Also, you can use \not\prec
(⊁) and \not\succ
(⊀) command without any package, this will generate a similar output.
\documentclass{article} \usepackage{amssymb} \begin{document} $$ \nprec A \nsucc $$ $$ \not\prec A \not\succ $$ \end{document}
Output:
Leave a Reply