1

I am looking for ways to put tilde over regular text. In math mode, we can put tilde above letters by $\widetilde{ASK}$. Is there a way to do the same thing for regular text longer than three letters? I mean: not in math mode, how to do big tilde over texts? The questions being answered all require math mode.

egreg
  • 1,121,712

1 Answers1

2

The brute force method is to scale and position things. The primary advantage of brute force is that is is readily adjustable. Uses package graphicx for \scalebox. Note that this code DOES NOT REQUIRE MATH MODE, as requested.

This line of text sits above the tilde, and may clash without
using the raised strut, so you need to look closely at the result.\par
This line of text
\raisebox{0.5em}{\strut}\raisebox{0.2em}{\scalebox{3}{\char`\~}}\hspace{-1.3em}
has a big tilde.\par

Result:

result of code