I'm embarking on a journey to create a conference abstract book using XeTeX and got stuck within five minutes:
The missing 'g' in 'somethin' influences the line height of the following line. How can I correct this?
At the end I want to be able to include the abstracts and corresponding information through our online registration system, so this should be a global setting.
My MWE:
\documentclass[10pt, a5paper]{article}
\usepackage{fontspec}
%% GEOMETRY
\usepackage[left=2cm, right=1.5cm]{geometry} % to change the page dimensions
\newenvironment{AbsHead}
{
\fontsize{16}{22}\headfont\noindent
}%
{
\vspace{0.5 cm}
}
\newenvironment{AbsAuthors}
{
\fontsize{12}{14}\authorfont\noindent
}%
{
\vspace{0.5 cm}
}
\begin{document}
\setmainfont{Minion Pro}
\newfontfamily\authorfont{Helvetica Neue Light}
\newfontfamily\headfont{Helvetica Neue Condensed Bold}
\begin{AbsHead}The XIAP something something something somethin somethin somethin somethin somethin somethin somethin something something\end{AbsHead}
\begin{AbsAuthors}Somebody Someone\end{AbsAuthors}
\noindent Purpose: Lorem ipsum
\end{document}
