阿拉伯字体的字形问题

阿拉伯字体的字形问题

我正在用阿拉伯语撰写一份文档。我需要使用“简体阿拉伯语”字体。

https://www.wfonts.com/font/simplified-arabic

我正在使用 Lualatex。在向同一个单词添加字形时,字母会断开,中间有少量空白。如 MWE 中所示,带有字形的单词会断开,而没有字形的相同单词会正常显示。我该如何解决这个问题?


\documentclass[a4paper,12pt,twoside]{book}
\usepackage[a4paper,top=2.5cm,bottom=2.5cm,margin=2.5cm,bindingoffset=0.5cm]{geometry} 
\usepackage{pdflscape}
\usepackage[hidelinks,colorlinks=true,breaklinks,allcolors=blue]{hyperref} 


\usepackage[bidi=basic,layout=lists.tabular]{babel}
\babelprovide[import=ar,mapdigits,main]{arabic}
\babelprovide[import=en,language=Default]{english}


\babelfont{rm}{Latin Modern Roman}
\babelfont[arabic]{rm}{simplified arabic}
\babelfont[english]{rm}{Times New Roman}

\begin{document}

مُفَصَّلِ
:
مفصل
\newline
مُتَشَدِدَ
:
متشدد

\end{document}


在此处输入图片描述

相关内容