波斯语目录(数字从右至左)

波斯语目录(数字从右至左)

我使用代码

\titleformat{\chapter}[display]{ \bfseries   \filleft\Huge}{ \chaptername\  \arabic \LTR{ \thechapter} }{6pt}{\bfseries\filleft}

写一个目录。在表中有

在此处输入图片描述

但我喜欢

第 3 季

1.3

2.3

1.2.3

我使用 ubuntu 和 texlive 2019。我读过这个问题在此处输入链接描述

但不起作用。

答案1

使用这些代码:

\documentclass{book} 
\usepackage[pagebackref=false,colorlinks,linkcolor=blue,citecolor=magenta]{hyperref}
\usepackage{xepersian}
\settextfont{Yas}
\makeatletter
\renewcommand{\thechapter}{\arabic{chapter}}
\renewcommand{\thesection}{\thechapter\@SepMark\arabic{section}}
\renewcommand{\thesubsection}{\thechapter\@SepMark\arabic{section}\@SepMark\arabic{subsection}}
\renewcommand{\theparagraph}{\thesubsection\@SepMark\arabic{paragraph}\@SepMark}
\makeatother
%\SepMark{-}  
\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{4}
\begin{document}
\tableofcontents
\chapter{فصل}
\section{بخش دوم}
\section{بخش اول}
\subsection{زیر بخش اول}
\paragraph{پارگراف}
\chapter{فصل}
\section{بخش دوم}
\subsection{زیر بخش دوم}
\paragraph{پارگراف}
\end{document}

输出:

在此处输入图片描述

祝你好运。

相关内容