Hello,
I'd like to report a little problem with fontspec and LuaLaTeX.
The following code works fine with XeLaTeX but with LuaLaTeX, the second
paragraph of the second column stays in roman whereas it should be in
italic :
\documentclass[12pt]{article}
\usepackage{fontspec,lipsum,multicol}
\usepackage[left=1cm,right=1cm,top=1cm,bottom=1cm]{geometry}
\pagestyle{empty}
\begin{document}
\begin{multicols}{2}
\lipsum[1]
\textit{\lipsum[1]}
\columnbreak
\fontspec{ModernMTStd-Extended}
\lipsum[1]
\textit{\lipsum[1]}
\end{multicols}
\end{document}
I use TL2010 up to date with TLContrib on Windows Seven : LuaTeX v0.65
Jack