[Tex/LaTex] Typesetting arabic with LuaLaTeX

arabicluatex

For typesetting arabic with LaTeX there are arabtex and arabi;
for typesetting arabic with XeLaTeX there are arabxetex and polyglossia;
but how to typeset arabic with LuaLaTeX, since neither of these packages/methods does not work? And there is definitely a way (with very nice results) as demonstrated in "Fonts" papers (PDF) from LuaTeX web page.

I've also found Khaled's lualatex-package package, but still no go.

Any suggestions?

Best Answer

It is because some works is in progress specially for the bidi package, on the other hand I am waiting for some of luatex bidi bugs getting fixed. you can test things if you want:

\documentclass{article}
\usepackage{fontspec}
\setmainfont[Script=Arabic]{font-name}
\usepackage{bidi}
\pagedir TRT\pardir TRT\bodydir TRT\textdir TRT
\begin{document}
%your Arabic text
\end{document}
Related Question