`xparse` 指令和 `enumitem` 格式似乎在 `pandoc` 上丢失

`xparse` 指令和 `enumitem` 格式似乎在 `pandoc` 上丢失

xparse说明和enumitem格式似乎丢失了pandoc{{; }}在本例中是内联的)。有人指出无法从 LaTeX 转换为 TeX,那么有哪些选择?

\documentclass{article}
\usepackage{enumitem}
\usepackage{xparse}

\newlist{foo}{enumerate*}{1}
\setlist[foo]{label=\arabic*), itemjoin={{; }}}

\ExplSyntaxOn
\tl_set:Nn\g__erw_foo_tl{\item \textbf{a}\item b} % 

\NewDocumentCommand\Foo{}{\tl_use:N\g__erw_foo_tl}
\NewDocumentCommand\Bar{}{\item \textbf{c}\item d}
\def\Qux{\item \textbf{e}\item f}

\ExplSyntaxOff

\begin{document}

\begin{foo}
  \Foo\Bar\Qux
\end{foo}

\end{document}

命令行界面

$ pandoc -f latex -t plain jobname.tex
E

f

在此处输入图片描述

相关内容