Latex文件以阿拉伯语书写,但参考文献列表未以英语打印

Latex文件以阿拉伯语书写,但参考文献列表未以英语打印,latex,Latex,在Latex中,我使用的是biber,但它没有以正确的格式显示引用,可能是因为使用了第二语言阿拉伯语及其软件包arabtex。有许多双语软件包允许您使用另一种语言进行引用。然而,我是一个新手,在双语软件包中有LaTex和参考资料。 我的BibTex文件 % Encoding: UTF-8 @Article{Hammad2013, author = {Mansour Hammad}, date = {2013-04-01}, journaltitle

在Latex中,我使用的是biber,但它没有以正确的格式显示引用,可能是因为使用了第二语言阿拉伯语及其软件包arabtex。有许多双语软件包允许您使用另一种语言进行引用。然而,我是一个新手,在双语软件包中有LaTex和参考资料。

我的BibTex文件

% Encoding: UTF-8

@Article{Hammad2013,
  author       = {Mansour Hammad},
  date         = {2013-04-01},
  journaltitle = {Numerical and Analytical Methods in Engineering (IRENA)},
  title        = {If f(x) is a Function in g(x), what are the Coefficients of that Function? A New Expansion for Analytic Function in Standard Form f(x) = Segma k=0 to infinity = S k (g(x) – M) to the power of k},
}

@Misc{Lewin2002,
  author       = {Walter Lewin},
  title        = {8.02X Physics II: Electricity and Magnetism, Spring 2002. Massachusetts Institute of Technology: MIT OpenCourseWare.},
  howpublished = {https://www.youtube.com/channel/UCiEHVhv0SBMpP75JbzJShqw},
  note         = {Accessed on 2020-05-05},
  url          = {https://web.archive.org/web/20111229055249/http://ocw.mit.edu/courses/physics/8-02-electricity-and-magnetism-spring-2002},
  month        = mar,
  year         = {2002},
}
@Misc{GuntherRoland2005,
  author       = {Gunther Roland, and Peter Dourmashkin},
  title        = {8.02X Physics II: Electricity and Magnetism with an Experimental Focus, Spring 2005. Massachusetts Institute of Technology: MIT OpenCourseWare.},
  howpublished = {https://ocw.mit.edu/courses/physics/8-02x-physics-ii-electricity-magnetism-with-an-experimental-focus-spring-2005},
  note         = {Accessed on 2020-05-05},
  url          = {https://ocw.mit.edu/courses/physics/8-02x-physics-ii-electricity-magnetism-with-an-experimental-focus-spring-2005},
  month        = mar,
  year         = {2005},
}

@Book{Flint2012,
  author = {Flint, James and Hargreaves, Martin and Davison, Robert and Croft, Anthony},
  date   = {2012-12-04},
  title  = {Engineering Mathematics : A Foundation for Electronic, Electrical, Communications and Systems Engineers},
}

@Book{Kraus1999,
  author = {John Daniel Kraus and Daniel A. Fleisch},
  date   = {1999-01-01},
  title  = {Electromagnetics with Applications},
}

@Comment{jabref-meta: databaseType:biblatex;}
结果就是这个链接中的引用页面(第一个引用),因为第二个正在尝试不使用阿拉伯语的BibTex文件
工程数学你可以看到工程前的字母

这个问题来自于
arabtex
apacase
宏之间的交互作用。如果确保所有引用都已在正确的大小写中,则可以按如下方式关闭宏:

\documentclass{amsart}
\usepackage[T1]{fontenc}
\usepackage{arabtex}

\usepackage[style=apa]{biblatex}

\makeatletter
\DeclareFieldFormat{apacase}{#1}
\makeatother

\begin{filecontents*}[overwrite]{\jobname.bib}
@Book{Kraus1999,
  author = {John Daniel Kraus and Daniel A. Fleisch},
  date   = {1999-01-01},
  title  = {Electromagnetics with Applications},
}
\end{filecontents*}

\addbibresource{\jobname.bib}

\begin{document}

\autocite{Kraus1999}
\printbibliography

\end{document}

能否请您添加一个屏幕截图,直接显示您的问题(这样我们就不必关注第三方链接),并添加
.log
.blg
文件?我测试了你的代码,如果我删除了我没有的
boondox-cal
包,它可以找到并打印与你的问题无关的引用:你可能想在文档的英文部分运行拼写检查程序,当你删除这些行后运行上面的文档时,会出现一些拼写错误\graphicspath{./images/}在文档开头和文档结尾附近的\includegraphics{cables}。您是否获得了以英语呈现的参考资料,如打印和呈现的参考资料。这是包含日志、图像的文件,全部位于.zip文件中。请将所有信息添加到您的问题中。我不会关注可疑zip文件的外部链接,非常感谢。在正确编译后,我再次发布它及其所有内容。
\documentclass{amsart}
\usepackage[T1]{fontenc}
\usepackage{arabtex}

\usepackage[style=apa]{biblatex}

\makeatletter
\DeclareFieldFormat{apacase}{#1}
\makeatother

\begin{filecontents*}[overwrite]{\jobname.bib}
@Book{Kraus1999,
  author = {John Daniel Kraus and Daniel A. Fleisch},
  date   = {1999-01-01},
  title  = {Electromagnetics with Applications},
}
\end{filecontents*}

\addbibresource{\jobname.bib}

\begin{document}

\autocite{Kraus1999}
\printbibliography

\end{document}