1

What is the code for the symbol used to represent the tangential part of a vector? For the normal part, one can use $v^{\perp}$, but how about the tangent part?

1 Answers1

2

Here is a \perp, upside down, called here \tang, and it obeys math styles.

\documentclass{article}
\usepackage{graphicx,stackengine,scalerel}
\def\tang{\ThisStyle{\abovebaseline[0pt]{\scalebox{-1}{$\SavedStyle\perp$}}}}
\begin{document}
$\perp$ versus $\tang$\par
$V_\perp$ versus $V_{\tang}$\par
$\scriptstyle V_\perp$ versus $\scriptstyle V_{\tang}$\par
\end{document}

enter image description here

As egreg points out, the symbol actually pre-exists as \top, but I didn't have my TeX references handy to find it at the time.