LaTeX 中的一组实现?

发布于 2024-08-18 10:36:03 字数 194 浏览 4 评论 0原文

考虑一下乳胶中列表的以下简单实现:

\newcommand{\add@to@list}[2]{%
  \ifx#2\@empty%
    \xdef#2{#1}%
  \else%
    \xdef#2{#2,#1}%
  \fi%
}%

我想知道是否有一种简单的方法来实现集合(没有重复元素的列表)?

Consider the following straightforward implementation of a list in latex:

\newcommand{\add@to@list}[2]{%
  \ifx#2\@empty%
    \xdef#2{#1}%
  \else%
    \xdef#2{#2,#1}%
  \fi%
}%

I wonder if there is a simple way to implement a set (list with no repeated elements) ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烦人精 2024-08-25 10:36:03

这似乎有效:

\newcommand{\add@to@set}[2]{%
   \ifx#2\@empty%
      \xdef#2{#1}%
   \else%
      \@expandtwoargs\@removeelement{#1}{#2}{#2}%
      \xdef#2{#2,#1}%
   \fi%
}%

This seems to work:

\newcommand{\add@to@set}[2]{%
   \ifx#2\@empty%
      \xdef#2{#1}%
   \else%
      \@expandtwoargs\@removeelement{#1}{#2}{#2}%
      \xdef#2{#2,#1}%
   \fi%
}%
城歌 2024-08-25 10:36:03

尝试查看 expl3 包中的 l3clist 模块。它为逗号分隔列表提供了基本的编程接口。


现在我回到了真实的机器上,下面是一个例子:

\documentclass{article}
\usepackage{expl3}
\begin{document}
\ExplSyntaxOn
\clist_new:N \l_my_clist
\clist_put_right:Nn \l_my_clist {hello}
\clist_put_right:Nn \l_my_clist {\unknown}
\clist_put_right:Nn \l_my_clist {hello}
\clist_remove_duplicates:N \l_my_clist
\clist_show:N \l_my_clist
\ExplSyntaxOff
\end{document}

Try taking a look at the l3clist module in the expl3 bundle. It provides a basic programming interface to comma-separated lists.


Now that I'm back on a real machine, here's an example:

\documentclass{article}
\usepackage{expl3}
\begin{document}
\ExplSyntaxOn
\clist_new:N \l_my_clist
\clist_put_right:Nn \l_my_clist {hello}
\clist_put_right:Nn \l_my_clist {\unknown}
\clist_put_right:Nn \l_my_clist {hello}
\clist_remove_duplicates:N \l_my_clist
\clist_show:N \l_my_clist
\ExplSyntaxOff
\end{document}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文