|
|
|
import defineFunction, {ordargument} from "../defineFunction"; |
|
import buildCommon from "../buildCommon"; |
|
import mathMLTree from "../mathMLTree"; |
|
|
|
import * as html from "../buildHTML"; |
|
import * as mml from "../buildMathML"; |
|
|
|
defineFunction({ |
|
type: "phantom", |
|
names: ["\\phantom"], |
|
props: { |
|
numArgs: 1, |
|
allowedInText: true, |
|
}, |
|
handler: ({parser}, args) => { |
|
const body = args[0]; |
|
return { |
|
type: "phantom", |
|
mode: parser.mode, |
|
body: ordargument(body), |
|
}; |
|
}, |
|
htmlBuilder: (group, options) => { |
|
const elements = html.buildExpression( |
|
group.body, |
|
options.withPhantom(), |
|
false |
|
); |
|
|
|
|
|
|
|
return buildCommon.makeFragment(elements); |
|
}, |
|
mathmlBuilder: (group, options) => { |
|
const inner = mml.buildExpression(group.body, options); |
|
return new mathMLTree.MathNode("mphantom", inner); |
|
}, |
|
}); |
|
|
|
defineFunction({ |
|
type: "hphantom", |
|
names: ["\\hphantom"], |
|
props: { |
|
numArgs: 1, |
|
allowedInText: true, |
|
}, |
|
handler: ({parser}, args) => { |
|
const body = args[0]; |
|
return { |
|
type: "hphantom", |
|
mode: parser.mode, |
|
body, |
|
}; |
|
}, |
|
htmlBuilder: (group, options) => { |
|
let node = buildCommon.makeSpan( |
|
[], [html.buildGroup(group.body, options.withPhantom())]); |
|
node.height = 0; |
|
node.depth = 0; |
|
if (node.children) { |
|
for (let i = 0; i < node.children.length; i++) { |
|
node.children[i].height = 0; |
|
node.children[i].depth = 0; |
|
} |
|
} |
|
|
|
|
|
node = buildCommon.makeVList({ |
|
positionType: "firstBaseline", |
|
children: [{type: "elem", elem: node}], |
|
}, options); |
|
|
|
|
|
return buildCommon.makeSpan(["mord"], [node], options); |
|
}, |
|
mathmlBuilder: (group, options) => { |
|
const inner = mml.buildExpression(ordargument(group.body), options); |
|
const phantom = new mathMLTree.MathNode("mphantom", inner); |
|
const node = new mathMLTree.MathNode("mpadded", [phantom]); |
|
node.setAttribute("height", "0px"); |
|
node.setAttribute("depth", "0px"); |
|
return node; |
|
}, |
|
}); |
|
|
|
defineFunction({ |
|
type: "vphantom", |
|
names: ["\\vphantom"], |
|
props: { |
|
numArgs: 1, |
|
allowedInText: true, |
|
}, |
|
handler: ({parser}, args) => { |
|
const body = args[0]; |
|
return { |
|
type: "vphantom", |
|
mode: parser.mode, |
|
body, |
|
}; |
|
}, |
|
htmlBuilder: (group, options) => { |
|
const inner = buildCommon.makeSpan( |
|
["inner"], |
|
[html.buildGroup(group.body, options.withPhantom())]); |
|
const fix = buildCommon.makeSpan(["fix"], []); |
|
return buildCommon.makeSpan( |
|
["mord", "rlap"], [inner, fix], options); |
|
}, |
|
mathmlBuilder: (group, options) => { |
|
const inner = mml.buildExpression(ordargument(group.body), options); |
|
const phantom = new mathMLTree.MathNode("mphantom", inner); |
|
const node = new mathMLTree.MathNode("mpadded", [phantom]); |
|
node.setAttribute("width", "0px"); |
|
return node; |
|
}, |
|
}); |
|
|