2 Answers
As noted in the comments the standard slanted font has a g of this form. You can use it as \textsl{g}:
\documentclass{article}
\usepackage{amstext}
\begin{document}
\( g_{\alpha,\beta,\gamma} \) vs. \( \textsl{g}_{\alpha,\beta,\gamma} \)
\end{document}
The package amstext is automatically loaded if you use amsmath or mathtools. In the above example the package is not needed, but without it you will not get good results if you use the symbol as a superscript or subscript.
Another caveat is that in the above code the symbol \textsl{g} will change with the surrounding text, for example \textbf{A bold sentence containing $\textsl{g}$ will have the symbol bold. That may or may not be what you want. If you need the symbol to be exactly the same regardless define a macro
\newcommand{\cg}{\textnormal{\textsl{g}}}
and use \cg instead.
- 95,762
The question is old but I like to add my answer. Looking the image I think that with the combination of newtxtext and newtxmath it is possible to have the similar output that it is request of the user.
\documentclass[a4paper,12pt]{article}
\usepackage{mathtools,amssymb}
\usepackage{newtxtext,newtxmath}
\begin{document}
\[g_{\alpha\beta,\gamma}\]
\end{document}
- 54,118




\usepackage{mathptmx}– Steven B. Segletes Feb 09 '16 at 19:07\mathrm{g}– Elad Den Feb 10 '16 at 11:48