0

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.

Troy
  • 13,741

2 Answers2

1
\documentclass[12pt]{article}
\usepackage{amssymb}
\begin{document}
$\veebar$
\end{document}
0

This should probably work:

\documentclass{article}
\usepackage{amsmath} 

\begin{document}
$\underline{V}$  

$\underline{\mathbf{V}}$ 
\end{document}

enter image description here

Changing V to \vee,

\documentclass{article}
\usepackage{amsmath} 

\begin{document}
$\underline{\vee}$  

$\underline{\mathbf{\vee}}$ 
\end{document}

enter image description here

subham soni
  • 9,673