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}