With tracking activated for small caps, it can be a little bit hard to detect interword spaces. Cf. below.
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Libertine Serif}[
SmallCapsFeatures = {Letters = SmallCaps, LetterSpace = 5}]
\begin{document}
The title of my article is \textsc{This is the moment your life changed forever}.
\end{document}
I'd like to increase the space between words in small caps, therefore, but only when words on either side are in small caps (i.e. there should be no extra space before the first word written in small caps or after the last word).
I would've thought I could do this by adding WordSpace = <> to SmallCapsFeatures, but this will change the interword space everywhere.
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Libertine Serif}[
SmallCapsFeatures = {Letters = SmallCaps, LetterSpace = 5, WordSpace = 5}]
\begin{document}
The title of my article is \textsc{This is the moment your life changed forever}.
\end{document}





\setmainfont{Linux Libertine O}too, you'd have to install the font on your system, right? (It being included in texlive doesn't mean it's a system font). So it doesn't require that much more to install Khaled Hosny's libertine fork than to install a font found in TeX? – Sverre Sep 01 '15 at 18:34\setmainfontlooked for system fonts. It also searches through the fonts in your TeX distribution? That's news to me, then, and would surely make @egreg's point even more pertinent. – Sverre Sep 01 '15 at 18:46luaotfload-toolmanages to locate and index -- from the man page: "luaotfload-tool: generate and query the Luaotfload font names database" -- can be handled with\set[main,sans,mono,*]font. – Mico Sep 01 '15 at 18:51fontspec. That's why I couldn't see the big difference between installing font x that comes with tex and installing font y that doesn't come with tex. – Sverre Sep 02 '15 at 09:03\setmainfont{<font name>}for a font that comes with tex live that I haven't manually installed as a system font won't compile for me. – Sverre Sep 03 '15 at 05:34/usr/share/fontsalso. If they are not already installed, they are almost certainly pre-packaged. The same is not true for the forked fonts. To use those I have to track them down and then create a package and then install it. – cfr Jul 02 '16 at 16:30