35

Like

Hello World 
...........    

or

Hello World
-----------

And not so

Hello World  // \underline{Hello World}
___________  //
lockstep
  • 250,273
caeycae
  • 525
  • 1
  • 4
  • 6

2 Answers2

70

(Disclaimer: It may be considered a typographically bad practice to underline text.)

I can think of two ways to do this.

ulem

This option is good if you want a fast solution. Use \dotuline or \dashuline from the package ulem.

\documentclass{article}

\usepackage[normalem]{ulem} % [normalem] prevents the package from changing the default behavior of `\emph` to underline.

\begin{document}

\dotuline{dotty}

\dashuline{dashing}

\end{document}

Dotted and dashed underline using ulem

TikZ

This option is good if you want control. You can create your own macro with TikZ. The following is an example of six macros. The first three produces dotted underlining and the last three dashed underlining.

\documentclass{article}

\usepackage{tikz}

\newcommand{\udot}[1]{%
    \tikz[baseline=(todotted.base)]{
        \node[inner sep=1pt,outer sep=0pt] (todotted) {#1};
        \draw[dotted] (todotted.south west) -- (todotted.south east);
    }%
}%

\newcommand{\udensdot}[1]{%
    \tikz[baseline=(todotted.base)]{
        \node[inner sep=1pt,outer sep=0pt] (todotted) {#1};
        \draw[densely dotted] (todotted.south west) -- (todotted.south east);
    }%
}%

\newcommand{\uloosdot}[1]{%
    \tikz[baseline=(todotted.base)]{
        \node[inner sep=1pt,outer sep=0pt] (todotted) {#1};
        \draw[loosely dotted] (todotted.south west) -- (todotted.south east);
    }%
}%

\newcommand{\udash}[1]{%
    \tikz[baseline=(todotted.base)]{
        \node[inner sep=1pt,outer sep=0pt] (todotted) {#1};
        \draw[dashed] (todotted.south west) -- (todotted.south east);
    }%
}%

\newcommand{\udensdash}[1]{%
    \tikz[baseline=(todotted.base)]{
        \node[inner sep=1pt,outer sep=0pt] (todotted) {#1};
        \draw[densely dashed] (todotted.south west) -- (todotted.south east);
    }%
}%

\newcommand{\uloosdash}[1]{%
    \tikz[baseline=(todotted.base)]{
        \node[inner sep=1pt,outer sep=0pt] (todotted) {#1};
        \draw[loosely dashed] (todotted.south west) -- (todotted.south east);
    }%
}%


\begin{document}

\uloosdot{dotty}

\udot{dotty}

\udensdot{dotty}

\uloosdash{dashing}

\udash{dashing}

\udensdash{dashing}

\end{document}

Six examples of underlinings done with TikZ

Note that you can modify these macros to fit your needs. For example you can change the thickness styles by adding thick as an option to \draw, e.g.

\draw[dotted, thick] (todotted.south west) -- (todotted.south east);

Other modification might be to change the color and opacity, e.g.

\draw[dotted, blue, opacity=0.25] (todotted.south west) -- (todotted.south east);

or to change the distance between the text and the decoration by editing the measures in [inner sep=1pt,outer sep=0pt], e.g.

\node[inner sep=0.8pt,outer sep=0pt] (todotted) {#1};

All TikZ code in this answer is a simple modification of \cancel draws under thing being canceled

Scz
  • 1,633
N.N.
  • 36,163
  • Thanks for the detailed answer! The TikZ code, however draws the underline below the bottom of a character, so lines below q and y are lower than other letters. – Jakob Sep 05 '12 at 18:40
  • 1
    @Jakob The ulem solution also draws the line lower for characters below the baseline. – N.N. Sep 05 '12 at 19:09
  • 2
    The downside of TikZ approach seems to be that it doesn't allow the text to break across multiple lines. Is there a way to fix that, or work around it? The flexibility and the styles are much more appealing in the second solution. – foxcub May 19 '13 at 16:08
  • ulem is somewhat fragile. for lualatex users, lua-ul.sty is a better solution. – ivo Welch Jan 25 '22 at 17:43
3

Support is provided via dashundergaps:

enter image description here

\documentclass{article}

\usepackage[dash,dot]{dashundergaps}

\begin{document}

\dotuline{dotty}

\dashuline{dashing}

\end{document}
Werner
  • 603,163