cseappto 中的 Unicode 字符错误

cseappto 中的 Unicode 字符错误
\documentclass[a4paper,10pt]{book}
\usepackage[utf8]{inputenc}
\usepackage{etoolbox}

\begin{document}

     \cseappto{myList}{entry1}
     \cseappto{myList}{entry2}
     \cseappto{myList}{{\'e}ntry3}
     \cseappto{myList}{entry4}

     \csuse{myList}

\end{document}

我正在使用 Ubuntu 20.04。上面的代码可以使用 apt 的默认 texlive 编译(有点过时,自 2019 年以来)。

上述代码在使用 perl 脚本安装的 texlive 2021(完整安装)中无法编译install-tl。错误如下:

! Missing } inserted.
<inserted text>
            }
l.12 \csuse{myList}

这种行为是已知的吗?我该如何解决这个问题?

相关内容