|
|
|
|
|
by svat
3219 days ago
|
|
That one simply inserts Lua code into TeX, and it's definitely a benefit (alternative to complicated macros). IMO an even bigger benefit (not yet widely used) are the various hooks and callbacks that LuaTeX provides -- you can influence the operation of TeX by writing some callback code in Lua at the right layer, instead of having to write everything in the input layer as macros to be expanded so that things are set up for later when TeX rolls around to do the thing you care about. This also results in cleaner code (even beyond Lua being more readable than TeX macros), and smaller/faster code as you don't have to account for as many different kinds of things in your "input". The "fade lines" callback example in the linked article is a good one. Here's another example of mine (not a great one) where you can influence TeX's linebreaking algorithm to avoid short words at line boundaries: https://tex.stackexchange.com/questions/378704/how-to-avoid-... -- the solution with macros is not so great. |
|