% Defines the rSection environment for the large sections within the CV
\newenvironment{rSection}[1]{ % 1 input argument - section name
\sectionskip
\hrule % Horizontal line
\MakeUppercase{\bf #1} % Section title <----
\sectionlineskip
\begin{list}{}{ % List for each individual item in the section
\setlength{\leftmargin}{0em} % Margin within the section
}
\item[]
}{
\end{list}
}
I would like to add some spacing between the letters of the section title. I have tried {\addfontfeature{LetterSpace=10.0}\MakeUppercase{\bf #1}} but this didn't work. What should I do? I am using XelaTex.
I have a lot of trouble finding documentation for stuff like this. Where should I be looking?
I have tried the solution at XeLaTeX: Space between letters but it didn't work.