[Tex/LaTex] How to prevent hyphenation in title (\maketitle)

hyphenationtitles

I want to have a \maketitle title page where every word in the title is not hyphenated. Elsewhere I wouldn't mind hyphenation of the title (e.g., in the Reference List), but on the title page it looks very bad!

I'm using the report class.

It seemed like an obvious question, but I haven't found answers on Stackexchange nor elsewhere no the web.

Best Answer

I'd be curious to see an actual example of a title with hyphenation, since my attempts to construct one failed. But if such a problem exists, you can selectively turn of hyphenation using the hyphenat package.

\usepackage{hyphenat}
\title{\nohyphens{Your title}}
...
\maketitle
Related Question