How do I type this symbol on LaTex?. Is a \vee, but with a floor. I've tried using \lhat and \bhat it doesn't work. Thank you very much.
Asked
Active
Viewed 781 times
0
Troy
- 13,741
2 Answers
1
\documentclass[12pt]{article}
\usepackage{amssymb}
\begin{document}
$\veebar$
\end{document}
José Carlos Santos
- 4,803
0
This should probably work:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$\underline{V}$
$\underline{\mathbf{V}}$
\end{document}
Changing V to \vee,
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$\underline{\vee}$
$\underline{\mathbf{\vee}}$
\end{document}
subham soni
- 9,673



\veebarfromamssymbshould do. – egreg Dec 05 '17 at 07:22