Code: Select all
\documentclass{article}
\usepackage[utf8]{inputenc}
\newcommand{\entry}[4]{
#1&\parbox[t]{7.2cm}{
\textbf{#2}
\hfill
{\footnotesize\color{lightgray} #3}\\
#4\\}\\}
\begin{document}
\entry
{2010 - 2014}
{Bachelor of Science}
{University}
{
lorem ipsum\\
lorem ipsum\\
lorem ipsum\\
\textit{italic textpart}
}
\end{document}
Sorry for that. I thought this was enough as a sample. But with this snipped it actually compiled fine. Testing it out separately let me find the mistake.
Code: Select all
\setmainfont % font that's been used everywhere where not specifically defined otherwise
[Mapping=tex-text,
BoldFont=HelveticaNeue-Bold.ttf,
ItalicFont=HelveticaNeue-Italic.ttf%<-----------
{HelveticaNeue.ttf}
Forgot to define the font mapping initially.