expl3:带换行符的小写序列元素

expl3:带换行符的小写序列元素

我有一些按序列存储的短文本(书籍作者姓名)。有些作者姓名很长,因此我必须手动插入换行符 ( \\)。在特定情况下,我必须将这些姓名完全小写。

感谢约瑟夫·赖特, 这小写字母适用于包含段落分隔符的文本\\)。

但是现在,我将文本存储在一个序列中,然后使用\g_sbmcpm_listofauthors_seq创建包含小写文本的新序列。\g_sbmcpm_listofauthors_lowercase_seq\seq_map_function:NN

当我尝试使用 打印名称时,\seq_use:Nn会出现编译错误。如果名称中没有 , \\则它可以正常工作。但如果有一些 \; ,则只有当包含标记的字符串位于序列的最后一个位置时,它才有效。(无论我使用、还是\\,都没关系)。我收到一条错误消息,如下所示\\\par\newline

! Undefined control sequence.
<inserted text> ... }{Author NameOne \\ TooLong}\\
                                                  \__xparse_start_expandable...
l.54     \printauthorslowercase

如果我使用字符而不是\\字符,则错误如下所示:\seq_use:Nn;

! Undefined control sequence.
<argument> \\

l.54     \printauthorslowercase

以下是完整代码:

\documentclass{article}

\usepackage{xparse}
\usepackage{tikz}

\ExplSyntaxOn
\NewDocumentCommand \LowerCase { m }
  {
    \cs_set_eq:NN \__texnik_newline: \\
    \cs_set_protected:Npx \\ { \exp_not:o \\ }
    \tl_lower_case:n {#1}
    \cs_set_eq:NN \\ \__texnik_newline:
  }

\cs_new:Npn \add_lowerauthor #1
{
  \tl_set:No \l_tmpa_tl {\LowerCase{#1}}
  \seq_gput_right:No \g_sbmcpm_listofauthors_lowercase_seq {\l_tmpa_tl}
  \seq_log:N \g_sbmcpm_listofauthors_lowercase_seq
}


\seq_new:N \g_sbmcpm_listofauthors_seq
\DeclareDocumentCommand{\mainauthor} {m} {%
  \seq_put_right:Nn \g_sbmcpm_listofauthors_seq {#1}
}


\seq_new:N \g_sbmcpm_listofauthors_lowercase_seq
\NewDocumentCommand \printauthorslowercase { }
  {
    \seq_map_function:NN \g_sbmcpm_listofauthors_seq \add_lowerauthor
    \seq_use:Nn \g_sbmcpm_listofauthors_lowercase_seq  {;}
  }

\ExplSyntaxOff

%% This works
% \mainauthor{Author NameOne}
% \mainauthor{Author NameTwo}

%%% This also works
% \mainauthor{Author NameOne}
% \mainauthor{Author NameTwo \\ TooLong}

%%% This doesn't works
\mainauthor{Author NameOne \\ TooLong}
\mainauthor{Author NameTwo}

\begin{document}
\begin{tikzpicture}[overlay, remember picture]
  \node[align=left] (text1)
  {%
    \printauthorslowercase
  };
\end{tikzpicture}

\end{document}

答案1

我不确定我是否理解,但我认为传递\\给没有任何问题\text_lowercase:n

\documentclass{article}

\usepackage{xparse}
\usepackage{tikz}

\ExplSyntaxOn

\NewDocumentCommand{\mainauthor} {m}
 {
  \seq_put_right:Nn \g_sbmcpm_listofauthors_seq {#1}
 }

\NewDocumentCommand \printauthorslowercase { }
 {
  \seq_map_function:NN \g_sbmcpm_listofauthors_seq \sbmcpm_add_lowerauthor:n
  \seq_use:Nn \l_sbmcpm_listofauthors_lowercase_seq  {;}
 }

\seq_new:N \g_sbmcpm_listofauthors_seq
\seq_new:N \l_sbmcpm_listofauthors_lowercase_seq

\cs_new_protected:Npn \sbmcpm_add_lowerauthor:n #1
 {
  \seq_put_right:Nn \l_sbmcpm_listofauthors_lowercase_seq { \text_lowercase:n {#1} }
 }

\ExplSyntaxOff

\mainauthor{Author NameOne \\ TooLong}
\mainauthor{Author NameTwo}

\begin{document}

\begin{tikzpicture}[overlay, remember picture]
  \node[align=left] (text1)
  {%
    \printauthorslowercase
  };
\end{tikzpicture}

\end{document}

相关内容