I'd like to draw a turnstile with an arrow. It looks like what is shown in the picture. Is there any command for it?
Asked
Active
Viewed 241 times
1
1 Answers
2
You could build one from a regular \vdash turnstile.
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\newcommand{\turnstile}{%
\mathrel{%
\vdash\hspace*{-5pt}%
\raisebox{2.65pt}{\scalebox{.33}{\(\blacktriangleright\)}}%
}%
}
\begin{document}
\( \Gamma \turnstile t : T \)
\end{document}
Vincent
- 20,157


\mapsto? – barbara beeton Apr 15 '20 at 14:36