I saw a lot of question related to the "widetilde" commands and the different ways to extend its definition to apply it to large strings of characters, but nothing precisely matching my problem. Please forgive me if this question was already asked.
If I to use the command \widetilde on the symbol \gamma, I obtain \widetilde{\gamma} with correct vertical spacing. However, if now I want to use it in an integral, I obtain if I want to integrate (say) some 1-form \alpha
\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{lmodern}
\usepackage{amsmath,amsfonts}
\begin{document}
$\widetilde{\gamma}$
\begin{align*}
\int_{\widetilde{\gamma}}^{}\alpha
\end{align*}
\end{document}
and the spacing between \gamma and the tilde is way too large.
Questions: Can I fix it, or should I avoid using this command?



'\documentclass[10pt,a4paper]{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage[english]{babel} \usepackage{lmodern} \usepackage{amsmath,amsfonts}
\begin{document} $\widetilde{\gamma}$, and \begin{align} \int_{\widetilde{\gamma}}^{}\alpha \end{align} \end{document}'
– Paul-Benjamin Nov 28 '16 at 13:04