I would like to span \textit{} in several line in \author{} tag.
So far I know I can do this ( but here \LARGE will only affect the Name) :
% title
\title{\textbf{Cool title}}
\author{\LARGE Name\\
\emph{University}\\
\emph{Faculty}\\
\emph{mail@mail.com}
}
\date{} % Do not print the date on the final paper!
\maketitle
But if I try to
\author{\LARGE{Name\\
\emph{University\\
Faculty\\
mail@mail.com}
}
}
I get the following error :
There were errors in your LaTeX source
./main.tex:60: Missing } inserted. [\maketitle]
./main.tex:60: Missing } inserted. [\maketitle]
./main.tex:60: Missing \cr inserted. [\maketitle]
./main.tex:60: Missing \cr inserted. [\maketitle]
./main.tex:60: Misplaced \cr. [\maketitle]
EDIT
\author{\itshape Name\\
University\\
Faculty\\
mail@mail.com
}
This would only affect Name also.
EDIT
I use following the documentclass
\documentclass[a4paper,11pt]{article}

