Consider the following code:
\documentclass{book}
\usepackage{lipsum}
\begin{document}
\thispagestyle{empty}
\large
\begin{center}
{\scshape{H O W , T O , I N C R E A S E , T H E , S P A C E\linebreak A F T E R , T H E , L I N E B R E A K.}}
\end{center}
\lipsum[3]
\vspace{15pt}
\begin{center}
{\scshape{H O W , T O , I N C R E A S E , T H E , S P A C E\linebreak \vspace{10pt} A F T E R , T H E , L I N E B R E A K.}}
\end{center}
\lipsum[3]
\vspace{15pt}
\begin{center}
{\scshape{H O W , T O , I N C R E A S E , T H E , S P A C E\linebreak \[0pt] A F T E R , T H E , L I N E B R E A K.}}
\end{center}
\vspace{15pt}
\lipsum[3]
\end{document}
which produces
In the first title, I simply used S P A C E\linebreak and the result suggests that more vertical space is needed between the two title lines.
The second title was produced by using \linebreak followed by \vspace*{10pt} immediately after "S P A C E"; which alas, did not increase the vertical space between the title lines, but rather between the title and the paragraph.
The third title was produced using \\[0pt], which did increase the gap between the title lines---but surprisingly so, because of the 0pt specification. I do not understand why the vertical gap increased at all---it seems reasonable to have expected nothing.
It seems that in order to increase the default gap to something aesthetically agreeable, I would have to use a negative point value in place of 0pt, which again, seems contrary to reason.
Remark: The gap produced by \linebreak seems to be fine when used in a paragraph with ordinary text.
QUESTION: (i) Can someone suggest the best way to either specify or increase the vertical gap between two lines in a small caps title, such as the one given in the MWE? (ii) Also, as my actual document contains a fair number of such titles all using the same font size, how may I define a command, e.g., \linebreak1, which when invoked, would produce a vertical gap of some specified amount in lieu of the default for \linebreak, which works fine within paragraphs?
The code is compiled with lualatex.
Thank you.






\\not after. – David Carlisle Mar 02 '22 at 19:48microtype's\textlscommand instead of manually spacing out the titles – Robert Mar 02 '22 at 19:49