パッケージとを使用していますpolyglossia
がXepersian
、第3レベルの列挙に問題があり、\Alph
文書全体で番号付けができません。
\documentclass[12pt,a4paper]{book}
\usepackage[nonamebreak, square, comma, sort&compress]{natbib}
\usepackage{polyglossia}
\setmainlanguage[calendar=gregorian, numerals=maghrib]{arabic}
\newfontfamily\arabicfont[Script=Arabic, Scale=1.5]{Amiri}
\setotherlanguage{english}
\usepackage{xepersian}
\settextfont{Amiri}
\setlatintextfont[Scale=1.5]{Amiri}
\let\oldthebibliography=\thebibliography
\let\endoldthebibliography=\endthebibliography
\renewenvironment{thebibliography}[1]{%
\begin{oldthebibliography}{#1}%
\setlength{\parskip}{2ex}%vertical space between items
}%
{%
\end{oldthebibliography}%
}
\begin{document}
كز هنا في الحديث على نظام زيتك لأنه أحد أفضل الحلول المتاحة \citep{ماجدة2012تطوير}
نفترض هنا وجود معرفة مسبقة
\cite{kopka2004guide}
\begin{enumerate}
\item Test one
\item Test two
\begin{enumerate}%problem
\item Test one one
\item Test two two
\end{enumerate}%problem
\item Test three
\item Test four
\end{enumerate}
\bibliographystyle{asa-fa}
\bibliography{MyReferences}
\end{document}
答え1
MWE に少し変更を加えると、エラーは解決します。つまり、次のように変更します。
\setmainlanguage[calendar=gregorian, numerals=maghrib]{arabic}
に
\selectlanguage[calendar=gregorian, numerals=maghrib]{arabic}
これで問題は解決します。したがって、更新された MWE は次のようになります。
\documentclass[12pt,a4paper]{book}
\usepackage[nonamebreak, square, comma, sort&compress]{natbib}
\usepackage{polyglossia}
\selectlanguage[calendar=gregorian, numerals=maghrib]{arabic}
%\setmainlanguage[calendar=gregorian, numerals=maghrib]{arabic}
\newfontfamily\arabicfont[Script=Arabic, Scale=1.5]{Amiri}
\setotherlanguage{english}
\TOCLanguage{arabic}
\usepackage{xepersian}
\settextfont{Amiri}
\setlatintextfont[Scale=1.5]{Amiri}
\let\oldthebibliography=\thebibliography
\let\endoldthebibliography=\endthebibliography
\renewenvironment{thebibliography}[1]{%
\begin{oldthebibliography}{#1}%
\setlength{\parskip}{2ex}%vertical space between items
}%
{%
\end{oldthebibliography}%
}
\begin{document}
كز هنا في الحديث على نظام زيتك لأنه أحد أفضل الحلول المتاحة \citep{ماجدة2012تطوير}
نفترض هنا وجود معرفة مسبقة
\cite{kopka2004guide}
\begin{enumerate}
\item Test one
\item Test two
\begin{enumerate}%problem
\item Test one one
\item Test two two
\end{enumerate}%problem
\item Test three
\item Test four
\end{enumerate}
\bibliographystyle{asa-fa}
\bibliography{MyReferences}
\end{document}
お役に立てれば。