I would like to be able to make a one-time adjustment to the textwidth in order to have a title (or subtitle) appear entirely on one line.
Consider the MWE
\documentclass[12pt]{article}
\usepackage{amsthm,latexsym,amssymb,amsmath,verbatim}
\oddsidemargin -8pt \evensidemargin -15pt \topmargin -25pt
\headheight -5pt \headsep 0pt \textheight 9.5in \textwidth 5.25in
\parskip 10pt
\usepackage{scalefnt}
\usepackage{xcolor}
\usepackage{lipsum}
\begin{document}
\thispagestyle{empty}
\begin{LARGE}
\noindent{\textcolor{red}{\textbf{\textsl{Title, Whose Length is Fine}}}}
\vspace{5pt}
\noindent{\textcolor{red}{\textbf{\textsl{Subtitle Whose Length is a Little Too Long}}}}
\end{LARGE}
\large
\vspace*{15pt}
\lipsum[13]
\end{document}
with the output
QUESTION: How would I be able to force the statement "Subtitle Whose Length is a Little Too Long" to appear all on the same line---while not affecting the textwidth of 5.25in for the rest of the document?
Thank you.




\rlap{...}, which sets text in a zero width box and allows it to overlap to the right. – David Purton Oct 25 '21 at 05:37geometrypackage useful for setting page margins. And thetitlingpackage for customising a document title pae (e.g., https://tex.stackexchange.com/a/50186/87678) – David Purton Oct 25 '21 at 06:02\mboxwill work. However, titles should usually be set via the markup for the given class. – Andrew Swann Oct 25 '21 at 06:29\mbox. It works very nicely. Perhaps you will consider posting this as an answer. – DDS Oct 25 '21 at 13:01