How can I get a line of text spread across the entire line width? As shown; with letter spacing increased (not only word spacing).
from:
to:
Lastly, how could I set a line-to-line spacing that would most approximate to that shown in the previous illustrations?
PS. Here's the code for the first image output:
% methamatics
\documentclass{article}
\usepackage{unicode-math}
\usepackage{fontspec,xltxtra}
\usepackage{lipsum}
\emergencystretch 3em
% -------------------
\tolerance=1
\emergencystretch=\maxdimen
\hyphenpenalty=1000
\hbadness=1000
% -------------------
\renewcommand{\normalsize}{\fontsize{12}{7}\selectfont}
\setmathfont[]{STIX Two Math}
\setmainfont[Ligatures = {Historic}, Contextuals = Alternate, Kerning = On]{Hoefler Text Pro}
% \setmathrm
% [
% Style = Historic,
% Ligatures = Historic,
% ]
% {Hoefler Text Pro}
% \setmathsf
% [
% Style = Historic,
% Ligatures = Historic,
% ]
% {Hoefler Text Pro}
% \setboldmathrm
% [
% Style = Historic,
% Ligatures = Historic,
% ]
% {Hoefler Text Pro Bold}
%-CMDS
\newcommand{\tib}[1]{{\fontspec
[
Contextuals = LineFinal,
Kerning = On,
]
{Hoefler Text Pro Engraved One}
\fontsize{24}{12}
\selectfont #1 \normalfont \normalsize}}
\newcommand{\tisc}[1]{{\fontspec
[
Letters = SmallCaps,
Kerning = On,
]
{Hoefler Text Pro}
\fontsize{20}{12}
\selectfont #1 \normalfont \normalsize}}
%-DCMNT
\begin{document}
\begin{center}
\tib{VECTOR ANALYSIS}\\[\baselineskip]
\tisc{an introduction\\
to \\
vector methods} \\
$$ $$
\end{center}
\end{document}


