Hi Thomas, Thomas S. Dye writes:
> Yes, what I called Babel you call org-babel. I don't know if the Lua > handler of source blocks in Org might be useful for someone interested > to write Lua extensions to LaTeX. I'm writing a package for LuaLaTeX in Org[1] using lua code blocks, and everything works fine. But if you mean to evaluate these blocks from Org, it wouldn't really make sense because LuaTeX uses its own Lua interpreter and that's where the code should be evaluated. For example, in LuaTeX you should use tex.print or tex.sprint to print a result in LaTeX, instead of 'print'. A simple example to create a counter using Lua: \newcommand{\mydefcounter}[2]{{\directlua{#1 = #2}}} \newcommand{\mycounter}[2]{\directlua{% function count () #1 = #1 + #2 tex.print (#1) end count() }} \mydefcounter{foo}{0} \mycounter{foo}{1} \mycounter{foo}{1} \mycounter{foo}{1} You might want to take a look at the chickenize package, which includes loads of examples and is very instructive. https://www.ctan.org/pkg/chickenize [1] btw, I thought I was the only one to write a LaTeX package in Org, instead of the 'official' LaTeX docstrip suite (doing it in Org is infinitely more comfortable!), but I've seen that the wallcalendar package has also taken the unorthodox route, with all source code and documentation in Org :-): https://github.com/profound-labs/wallcalendar/blob/master/Makefile Best regards, Juan Manuel