Symbol/Unicode | Divides/U+2223 |
---|---|
Type of symbol | Mathematical operator |
Package (requirement) | No |
Argument | No |
Latex command | \vert |
Example | \vert → ∣ |
You can use the \vert
command to print the Divide symbol in a latex document. You can also use the pipe key Shift
+ |
on the keyboard.
\documentclass{article}
\begin{document}
$$ c\;\; \vert \;\;d $$
$$ \frac{a}{b}\; \vert \;\;c $$
$$ a\;\; \vert \;\;b $$
\end{document}
Output :