更改阿拉伯语中的新定理编号顺序:从右到左

更改阿拉伯语中的新定理编号顺序:从右到左

我可以使用 LuaLaTex 更改编号顺序吗

\setcounter{section}{3}
\setcounter{subsection}{2}      
\newtheorem{thm}{مبرهنة}[subsection]

结果应该是这样的

移动版 1.2.3

提前谢谢大家

答案1

您没有提供 MWE 或说明您正在使用哪些包。如果是babel,您可能需要以下选项layout=counters

\documentclass{article}

\usepackage[bidi=basic, layout=counters]{babel}
\babelprovide[import, main]{arabic}
\babelfont{rm}{FreeSerif}

\newtheorem{thm}{مبرهنة}[subsection]

\begin{document}

\setcounter{section}{3}
\setcounter{subsection}{2}    

\begin{thm}
   ABC.
\end{thm}

\begin{thm}
   DEF.
\end{thm}

\end{document}

在此处输入图片描述

相关内容