古希腊语变体在多语包中不起作用

古希腊语变体在多语包中不起作用

我正在使用 polyglossia 包将古希腊语设置为第二语言。
当我输入以下代码时,代码运行正常
\setotherlanguages{greek}

但是当我将其更改为时出现错误

\setotherlanguages[variant=ancient]{greek}

这是错误:(在我的 PC 和 Overleaf 上都出现):

! LaTeX3 Error: The key 'polyglossia/[/hyphenmins' requires a value.

这是我的代码:

\documentclass [11pt,a4paper,oneside]{book}


\usepackage{fontspec}                           % Customizzazione dei font
\setmainfont[                                   % Computer Modern
  Ligatures=TeX,
  Extension=.otf,
  BoldFont=cmunbx,
  ItalicFont=cmunti,
  BoldItalicFont=cmunbi,
]{cmunrm}
%\setmainfont{Times New Roman}                  % Times New Roman
\setsansfont{CMU Sans Serif}                    % Font sans-serif
\setmonofont{CMU Typewriter Text}               % Font monospazio
\usepackage{polyglossia}                        % Linguaggi multipli
\setdefaultlanguage{italian}                    % Lingua principale: italiano
\setotherlanguages[variant=ancient]{greek}      % Lingua secondaria: greco antico

\begin{document}

Testo di esempio:
Θουκυδίδης Ἀθηναῖος ξυνέγραψε τὸν πόλεμον τῶν Πελοποννησίων καὶ Ἀθηναίων

\end{document}

先感谢您

相关内容