我正在使用arabtex
、 与latex
或pdflatex
。
在我的文档中我只使用阿拉伯数字:1 2 3 ...
但arabtex
以印度语言(而非阿拉伯语言)显示数字。
我曾经用它\textLR{}
来获得我想要的编号,但是当我处理包含大量数字的大型文档时,这种方法变得很累。
问题是:有没有办法为所有文档明确设置阿拉伯数字?
以下是一个例子:
\documentclass[12pt]{book}
\usepackage{arabtex}
\usepackage[utf8]{inputenc}
\usepackage[LFE,LAE]{fontenc}
\usepackage[english,arabic]{babel}
\begin{document}
الأرقام الهندية:
0 1 2 3 4 5 6 7 8 9
\textLR{ These are indian digits.}
الأرقام العربية :
\textLR{
0 1 2 3 4 5 6 7 8 9
}\\
\textLR{These are arab digits that I want but without the cmd textLR.}
\end{document}