回想録で複数の単語を区切る場合の文字間隔は?

回想録で複数の単語を区切る場合の文字間隔は?

文字間隔は機能していますが、スペースは機能しません。スペースを認識させるにはどうすればよいですか?

\documentclass{memoir}
\usepackage{fontspec}
\setmainfont{Times New Roman}

\begin{document}
\Large\addfontfeatures{LetterSpace=100}{Three separate words}
\end{document}

ここに画像の説明を入力してください

答え1

\Large議論の余地がないことに注意してください。

\documentclass{memoir}
\usepackage{fontspec}
\setmainfont{Times New Roman}[
  SmallCapsFont=TeX Gyre Termes,
  SmallCapsFeatures={Letters=SmallCaps},
]

\NewDocumentCommand{\spacedscshape}{}{%
  \scshape
  \setlength{\spaceskip}{5\fontdimen2\font plus 5\fontdimen3\font minus \fontdimen3\font}%
  \addfontfeatures{LetterSpace=50}%
}
\DeclareTextFontCommand{\textspacedsc}{\spacedscshape}

\begin{document}

\textspacedsc{Three separate words}

{\Large\spacedscshape Three separate words}

\end{document}

私は羊泥棒の罪で起訴されるのを避けるために小文字の大文字を使いました。

ここに画像の説明を入力してください

関連情報