Compare commits
No commits in common. "8843b99ece457469259de29c72bad5a9356770e9" and "23c6714e97354255991075f89cb8e5010f405c84" have entirely different histories.
8843b99ece
...
23c6714e97
@ -13,7 +13,6 @@ lua.get_functions_table()[funcid] = function()
|
||||
assert(startmath.id == node.id"math")
|
||||
local props = assert(properties[startmath])
|
||||
local mml = assert(props.saved_mathml_table)
|
||||
props.saved_mathml_table = nil
|
||||
table.insert(mml, 1, {[0] = 'maligngroup'})
|
||||
if mml[0] == 'mstyle' and mml.displaystyle == true then
|
||||
mml[0], mml.displaystyle, mml.scriptlevel = 'mtd', nil, nil
|
||||
@ -47,7 +46,6 @@ lua.get_functions_table()[funcid] = function()
|
||||
if not props then return end
|
||||
if not props.mathml_row then return end
|
||||
mml_row = props.mathml_row
|
||||
props.mathml_row = nil
|
||||
props = properties[tex.lists.align_head]
|
||||
if not props then
|
||||
props = {}
|
||||
@ -68,9 +66,8 @@ lua.get_functions_table()[funcid] = function()
|
||||
local props = properties[tex.lists.align_head]
|
||||
if not props then return end
|
||||
local mml_table = props.mathml_table_node_table
|
||||
props.mathml_table_node_table = nil
|
||||
if not mml_table then return end
|
||||
print(write_xml(make_root(mml_table, 0)))
|
||||
print(write_xml(make_root(mml_table, 2)))
|
||||
end
|
||||
|
||||
funcid = luatexbase.new_luafunction'luamml_last_math_alignmark:'
|
||||
|
@ -106,45 +106,10 @@ local function do_sub_sup(t, core, n, cur_style)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
-- If we encounter a . or , after a number, test if it's followed by another number and in that case convert it into a mn
|
||||
local function maybe_to_mn(noad, core)
|
||||
if noad.sub or noad.sup then return end
|
||||
local after = noad.next
|
||||
if not after then return end
|
||||
if after.id ~= noad_t then return end
|
||||
if noad_sub[after.subtype] ~= 'ord' then return end
|
||||
after = after.nucleus
|
||||
if not after then return end
|
||||
if after.id ~= math_char_t then return end
|
||||
if not digit_map[remap_lookup[after.fam << 21 | after.char]] then return end
|
||||
core[0] = 'mn'
|
||||
end
|
||||
|
||||
local function noad_to_table(noad, sub, cur_style, mn)
|
||||
local function noad_to_table(noad, sub, cur_style)
|
||||
local class = noad_sub[sub]
|
||||
local nucleus, core = kernel_to_table(noad.nucleus, class == 'over' and cur_style//2*2+1 or cur_style)
|
||||
if class == 'ord' then
|
||||
if core and core[0] == 'mo' then
|
||||
core[0] = 'mi'
|
||||
core.stretchy, core.mathvariant = nil, #core == 1 and type(core[0]) == 'string' and utf8.len(core[0]) == 1 and utf8.codepoint(core[0]) < -0x10000 and 'normal' or nil
|
||||
core['tex:class'] = nil
|
||||
end
|
||||
if nucleus == core and #core == 1 then
|
||||
if mn and core[0] == 'mi' and (core[1] == '.' or core[1] == ',') and maybe_to_mn(noad, core) or core[0] == 'mn' then
|
||||
if mn then
|
||||
mn[#mn+1] = core[1]
|
||||
nucleus = do_sub_sup(mn, mn, noad, cur_style)
|
||||
if nucleus == mn then
|
||||
return nil, mn, mn
|
||||
else
|
||||
return nucleus, mn, false
|
||||
end
|
||||
elseif not noad.sub and not noad.sup then
|
||||
return core, core, core
|
||||
end
|
||||
end
|
||||
end
|
||||
elseif class == 'opdisplaylimits' or class == 'oplimits' or class == 'opnolimits' or class == 'bin' or class == 'rel' or class == 'open'
|
||||
or class == 'close' or class == 'punct' or class == 'inner' then
|
||||
if not core or not core[0] then
|
||||
@ -277,23 +242,17 @@ local function space_to_table(amount, sub, cur_style)
|
||||
end
|
||||
|
||||
function nodes_to_table(head, cur_style)
|
||||
local t = {[0] = 'mrow'}
|
||||
local t = {[0] = "mrow"}
|
||||
local result = t
|
||||
local nonscript
|
||||
local core, mn = space_like
|
||||
local core = space_like
|
||||
for n, id, sub in node.traverse(head) do
|
||||
local new_core, new_mn
|
||||
local new_core
|
||||
local props = properties[n] props = props and props.mathml_table
|
||||
if props then
|
||||
t[#t+1], new_core = props, user_provided
|
||||
elseif id == noad_t then
|
||||
local new_n
|
||||
new_n, new_core, new_mn = noad_to_table(n, sub, cur_style, mn)
|
||||
if new_mn == false then
|
||||
t[#t], new_mn = new_n, nil
|
||||
else
|
||||
t[#t+1] = new_n -- might be nil
|
||||
end
|
||||
t[#t+1], new_core = noad_to_table(n, sub, cur_style)
|
||||
elseif id == accent_t then
|
||||
t[#t+1], new_core = accent_to_table(n, sub, cur_style)
|
||||
elseif id == style_t then
|
||||
@ -346,11 +305,6 @@ function nodes_to_table(head, cur_style)
|
||||
if core and new_core ~= space_like then
|
||||
core = new_core
|
||||
end
|
||||
mn = new_mn
|
||||
end
|
||||
if t[0] == 'mrow' and #t == 1 then
|
||||
assert(t == result)
|
||||
result = t[1]
|
||||
end
|
||||
return result, core
|
||||
end
|
||||
|
@ -1,5 +1,5 @@
|
||||
\documentclass{article}
|
||||
% \usepackage{unicode-math}
|
||||
\usepackage{unicode-math}
|
||||
\usepackage{amsmath}
|
||||
\usepackage{luamml}
|
||||
\RegisterFamilyMapping\symsymbols{oms}
|
||||
|
Loading…
Reference in New Issue
Block a user