Stellen Sie sich den folgenden Code vor:
\documentclass{book}
\usepackage{luacode}
\usepackage{xparse}
\NewDocumentCommand{\HelloWorld}{}{Hello World}
\newcommand{\DefaultHelloWorld}{Hello World}
\begin{luacode}
luatexbase.add_to_callback("wrapup_run", function()
io.write("\HelloWorld")
-- io.write("\DefaultHelloWorld")
end, "Post-process pdf")
\end{luacode}
\begin{document}
Hello World!
\end{document}
Warum funktioniert die Verwendung von \newcommand
zwar einwandfrei und wird in erweitert io.write("Hello World")
, aber sobald ich zu wechsle, \NewDocumentCommand
erhalte ich den folgenden Fehler (Auszug aus der Protokolldatei):
Package: xparse 2023-10-10 L3 Experimental document command parser
)[\directlua]:2: invalid escape sequence near '"\H'.
\luacode@dbg@exec ...code@maybe@printdbg {#1} #1 }
l.14 \end{luacode}
The lua interpreter ran into a problem, so the
remainder of this lua chunk will be ignored.
Antwort1
DankeUlrike Fischer
Musste einfach wechseln zu \NewExpandableDocumentCommand
:
\documentclass{book}
\usepackage{luacode}
% \usepackage{xparse} % REMOVED -- see @David Carlisle's comment
\NewDocumentCommand{\OldHelloWorld}{}{Hello World} % OLD
\NewExpandableDocumentCommand{\HelloWorld}{}{Hello World} % NEW -- working
\newcommand{\DefaultHelloWorld}{Hello World}
\begin{luacode}
luatexbase.add_to_callback("wrapup_run", function()
io.write("\HelloWorld")
-- io.write("\DefaultHelloWorld")
end, "Post-process pdf")
\end{luacode}
\begin{document}
Hello World!
\end{document}