mathml/luamml-amsmath.lua

59 lines
2.0 KiB
Lua
Raw Normal View History

2021-04-24 16:53:50 +02:00
local write_xml = require'luamml-xmlwriter'
local make_root = require'luamml-convert'.make_root
2021-04-25 18:09:13 +02:00
local save_result = require'luamml-tex'.save_result
local store_column = require'luamml-table'.store_column
local store_tag = require'luamml-table'.store_tag
local get_table = require'luamml-table'.get_table
2021-04-30 19:52:32 +02:00
local to_text = require'luamml-lr'
2021-04-24 16:53:50 +02:00
local properties = node.get_properties_table()
2021-04-27 17:33:22 +02:00
local funcid = luatexbase.new_luafunction'__luamml_amsmath_add_box_to_row:'
token.set_lua('__luamml_amsmath_add_box_to_row:', funcid, 'protected')
2021-04-24 16:53:50 +02:00
lua.get_functions_table()[funcid] = function()
-- TODO: Error handling etc
-- local box = token.scan_int()
local boxnum = 0
local startmath = tex.box[boxnum].list
assert(startmath.id == node.id"math")
store_column(startmath, true)
2021-04-24 16:53:50 +02:00
end
2021-04-27 17:33:22 +02:00
funcid = luatexbase.new_luafunction'__luamml_amsmath_finalize_table:'
token.set_lua('__luamml_amsmath_finalize_table:', funcid)
2021-04-24 16:53:50 +02:00
lua.get_functions_table()[funcid] = function()
-- TODO: Error handling etc
local mml_table = get_table()
2021-04-24 16:53:50 +02:00
if not mml_table then return end
mml_table.displaystyle = true
2021-04-25 18:09:13 +02:00
local columns = node.count(node.id'align_record', tex.lists.align_head)//2
mml_table.columnalign = string.rep('right left', columns, ' ')
2021-04-27 03:30:08 +02:00
local spacing = {}
for n in node.traverse_id(node.id'glue', tex.lists.align_head) do
spacing[#spacing+1] = n.width == 0 and '0' or '.8em'
end
mml_table.columnspacing = table.concat(spacing, ' ', 2, #spacing-2)
2021-05-02 02:58:20 +02:00
save_result(mml_table, true)
2021-04-24 16:53:50 +02:00
end
2021-04-27 17:33:22 +02:00
local last_tag
funcid = luatexbase.new_luafunction'__luamml_amsmath_save_tag:'
token.set_lua('__luamml_amsmath_save_tag:', funcid, 'protected')
2021-04-24 16:53:50 +02:00
lua.get_functions_table()[funcid] = function()
2021-04-27 17:33:22 +02:00
local nest = tex.nest.top
local chars = {}
2021-05-01 08:03:21 +02:00
last_tag = to_text(nest.head)
2021-04-27 17:33:22 +02:00
end
funcid = luatexbase.new_luafunction'__luamml_amsmath_set_tag:'
token.set_lua('__luamml_amsmath_set_tag:', funcid, 'protected')
lua.get_functions_table()[funcid] = function()
if not last_tag then
texio.write_nl'WARNING: Tag extraction failed'
return
end
2021-05-01 08:00:29 +02:00
store_tag({[0] = 'mtd', last_tag})
2021-04-27 17:33:22 +02:00
last_tag = nil
2021-04-24 16:53:50 +02:00
end