使用 Babel 处理泰语时图片标题行为异常

使用 Babel 处理泰语时图片标题行为异常

我尝试使用 LuaTeX 和 Babel 插入一个图形。但是,图形名称出现了一个问题。

当我运行此代码时,问题出现了:

\documentclass[a4paper]{article}
\usepackage[english]{babel}
\babelprovide[main, import]{thai}

\usepackage[no-math]{fontspec}
\setmainfont[%
    ItalicFont={Laksaman-Italic.otf},%
    BoldFont={Laksaman-Bold.otf},%
    BoldItalicFont={Laksaman-BoldItalic.otf},%
    Script=Thai,%
    WordSpace=1.25,%
    Ligatures=TeX%
]{Laksaman.otf}

\usepackage{setspace}
\onehalfspacing

\usepackage{graphicx}
\usepackage{caption}
\usepackage{float}

\begin{document}

พิจารณารูปตัวอย่าง \ref{fig: example_image_a} ข้างล่างนี้
\begin{figure}[H]
    \centering
    \includegraphics[width=3cm]{example-image-a}
    \caption{รูปที่ 1}
    \label{fig: example_image_a}
\end{figure}

\end{document}

结果如下所示。 渲染的文件

如您所见,标题名称中的单词“รูปที่”呈现错误(红色框),而绿色框中的正确单词“รูปที่”呈现错误。

那么,有人可以告诉我为什么会出现这个问题以及如何解决这个问题吗?

相关内容