46

I'm looking to produce something like this:

blah blah ____ blah blah

But with a solid line.

Thanks in advance.

Mr.Young
  • 713

1 Answers1

63

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

Mauramz
  • 1,464