\documentclass[12pt]{article}
\usepackage[paperwidth=8.5in,paperheight=14in,left=1cm,right=1.5cm,top=1cm,bottom=0cm]{geometry} %margins
\usepackage{amsmath,polyglossia,fontspec}
\setmainlanguage{english}
\setotherlanguage[numerals=western]{urdu}
\setotherlanguage[numerals=western]{arabic}
\setmainfont{Times New Roman}
\newfontfamily\urdufont[Script=Arabic,Scale=1.2]{Jameel Noori Nastaleeq}
\newfontfamily\arabicfont[Script=Arabic,Scale=1.2]{Scheherazade}
\parindent=0in % no spacing at the start of paragraphs
\begin{document}
Here is some text in arabic
\\
\hfill
\textarabic{
اَللَّھُمَّ إِنِّیْ
}
\end{document}
我試圖從右到左開始阿拉伯語,但似乎 \hfill 不起作用。因此,如果有其他方法可以做到這一點,請告訴我。
答案1
此\text⟨lang⟩
巨集僅用於短插入。代替使用\begin{⟨lang⟩} … \end{⟨lang⟩}
。它將排版一個新段落。在您使用的情況下,Arabic
該段落是從右到左排版的。
\documentclass[12pt]{article}
\usepackage[paperwidth=8.5in,paperheight=14in,left=1cm,right=1.5cm,top=1cm,bottom=0cm]{geometry} %margins
\usepackage{amsmath,polyglossia,fontspec}
\setmainlanguage{english}
\setotherlanguage[numerals=western]{urdu}
\setotherlanguage[numerals=western]{arabic}
\setmainfont{Times New Roman}
\newfontfamily\urdufont[Script=Arabic,Scale=1.2]{Jameel Noori Nastaleeq}
\newfontfamily\arabicfont[Script=Arabic,Scale=1.2]{Scheherazade}
\parindent=0in % no spacing at the start of paragraphs
\begin{document}
Here is some text in arabic
\begin{Arabic}
اَللَّھُمَّ إِنِّیْ
\end{Arabic}
\end{document}
請注意,您不能使用LaTeX 內部定義的arabic
環境。\arabic
您需要使用環境Arabic
來代替。