我在使用 LuaLatex 和 TikZ 时遇到了一些困难。有人能向我解释一下以下 MWE 出了什么问题吗:
\documentclass{amsart}
\usepackage{luacode} % read this somewhere, doesn't change anything.
\usepackage{tikz}
\begin{document}
\section{Some sections}
Some random text.
\directlua{ tex.print([=[
\begin{tikzpicture}[thick]
\draw (0,0) to (1,1);
\end{tikzpicture}]=])
}
\end{document}
同样的 Lua 代码在从外部脚本使用时也可以工作。但像这样
! Undefined control sequence.
\GTS@RemoveLeft ...{}{}\GTS@Nil }\edef \GTS@Token
答案1
另一种编码方式luacode
:
\documentclass{article}
\usepackage{luacode}
\usepackage{tikz}
\begin{document}
\luaexec{
tp=tex.print
tp("\\begin{tikzpicture}[thick]")
tp("\\draw (0,0) to (1,1);")
tp("\\end{tikzpicture}")
}
\end{document}