當我嘗試用 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}]]