[Tex/LaTex] How to get a bold wide tilde

boldmath-modetilde

If I type

\boldmath $\widetilde T$\unboldmath

I get
widetilde T
where unfortunately the tilde above the T is a little flimsy for my taste.
Is there a better way to do this?
I found a paper that has something, that appears a little bolder, in it. bigger tilde

Best Answer

I'm afraid you hit on something that can't be easily solved. Here for comparison all possible solutions for making math stuff bold and then a handmade bold tilde T:

\documentclass{standalone}
\usepackage{amsbsy}
\usepackage{bm}
\usepackage{fixmath}
\usepackage{graphicx}
\begin{document}
% not bold
$\widetilde T$
% not bold enough either
$\mathbf{\widetilde T}$
$\pmb{\widetilde T}$
\boldmath$\widetilde T$
$\boldsymbol{\widetilde T}$
$\bm{\widetilde T}$
$\mathbold{\widetilde T}$
% maybe even crayons would be easier and prettier but well ...
\raisebox{.7em}{\resizebox{.6em}{!}{\ensuremath{\bm{\sim}}}}\hspace{-.7em}$T$
\end{document}

enter image description here

Using .8em in the raisebox will be about the same height as the other tildes but I personally liked it better this way. I'm not saying it's pretty and I'm not saying it's easy :/