LuaTeX - 打印字符串文字产生奇怪的点

LuaTeX - 打印字符串文字产生奇怪的点

当我尝试使用 LuaTeX 打印文字字符串时,会出现这些奇怪的点。有人知道为什么吗?有什么建议可以解决这个问题吗?

我正在考虑逐行解析文字字符串并打印,类似于下面这样,但我很好奇为什么会出现这些点。

function printLines(str)
    for line in str:gmatch"[^\n]*" do
        tex.sprint(line)
    end
end

在此处输入图片描述

主要.tex:

\documentclass{article}
\usepackage[utf8]{luainputenc}
\usepackage{t1enc}
\usepackage{luacode}

\directlua{dofile("code.lua")} 

\begin{document}
\luaexec{
tex.sprint(tab)
}

\luaexec{
tex.sprint(tabBeg)
tex.sprint(tabMid)
tex.sprint(tabEnd)
}

\end{document}

代码.lua:

tab = [[
            \begin{tabular}{|l|l|}
                test & table \\
                \end{tabular}
                
]]

tabBeg = [[\begin{tabular}{|l|l|}]]
tabMid = [[test & table \\]]
tabEnd = [[\end{tabular}]]

相关内容