다음 코드에서는 오류가 발생합니다. Missing $ inserted.
이는 키 중 하나가 이기 때문입니다 c_a
. 사용할 루프를 수정하는 방법은 무엇입니까 c_a
?
% !TEX TS-program = lualatex
\documentclass{article}
\usepackage{luacode}
\begin{document}
\parindent = 0pt
\begin{luacode}
tp=tex.print
z = {}
ap = "a'"
bp = "b'"
z.a = {5,2}
z.b = {3,-2}
z.c_a = {3,2}
z[ap] = {99,0}
z.bp = {66,55}
tex.print("The stored coordinates are : "..'\\\\')
-- z.c_a = nil
for k,v in pairs(z) do
tp(k) tp(tostring(" represents :")) tp(tostring("(" .. v[1]..","..v[2]..")"))
tex.print('\\\\')
end
\end{luacode}
\end{document}
답변1
Lua와는 전혀 관련이 없으며 \verb|c_a|
밑줄이 필요하거나 유사합니다.
\documentclass{article}
\usepackage{luacode}
\begin{document}
\parindent = 0pt
\begin{luacode}
tp=tex.print
z = {}
ap = "a'"
bp = "b'" -- not used
z.a = {5,2}
z.b = {3,-2}
z.c_a = {3,2}
z[ap] = {99,0}
z.bp = {66,55}
tex.print("The stored coordinates are : "..'\\\\')
-- z.c_a = nil
for k,v in pairs(z) do
tp("\\verb|" .. k .."|") tp(" represents :") tp("(" .. v[1]..","..v[2]..")")
tex.print('\\\\')
end
\end{luacode}
\end{document}