[Tex/LaTex] How to create this gamma symbol

blackboard;math-modesymbols

Kindly help me to create this Gamma symbol

How do I create this gamma symbol?

Best Answer

A Gamma is an upside down L:

\documentclass{article}
\usepackage{amssymb,graphicx}

\newcommand{\bbGamma}{{\mathpalette\makebbGamma\relax}}
\newcommand{\makebbGamma}[2]{%
  \raisebox{\depth}{\scalebox{1}[-1]{$\mathsurround=0pt#1\mathbb{L}$}}%
}

\begin{document}

$\Gamma\bbGamma \mathrm{L}\mathbb{L}$

\end{document}

enter image description here

Related Question