[Tex/LaTex] How to make a blank underline?

formatting

I'm looking to produce something like this:

blah blah ____ blah blah

But with a solid line.

Thanks in advance.

Best Answer

There is a very simple way to do it. Using \rule[depth]{width}{height}, I know you didn't provided a Minimal Working Example, but here it is a very simple example:

    \documentclass{article}
    \begin{document}
    blah blah \rule{1cm}{0.15mm} blah blah
    \end{document}

The code produces the following output blank underline