1

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?

enter image description here

Vincent
  • 20,157
user707499
  • 13
  • 2

1 Answers1

2

You could build one from a regular \vdash turnstile.

enter image description here

\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