| import defineFunction, {ordargument} from "../defineFunction"; |
| import defineMacro from "../defineMacro"; |
| import {makeFragment, makeSpan} from "../buildCommon"; |
| import {MathNode} from "../mathMLTree"; |
|
|
| import * as html from "../buildHTML"; |
| import * as mml from "../buildMathML"; |
|
|
| defineFunction({ |
| type: "phantom", |
| names: ["\\phantom"], |
| 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 makeFragment(elements); |
| }, |
| mathmlBuilder: (group, options) => { |
| const inner = mml.buildExpression(group.body, options); |
| return new MathNode("mphantom", inner); |
| }, |
| }); |
|
|
| defineMacro("\\hphantom", "\\smash{\\phantom{#1}}"); |
|
|
| defineFunction({ |
| type: "vphantom", |
| names: ["\\vphantom"], |
| numArgs: 1, |
| allowedInText: true, |
|
|
| handler: ({parser}, args) => { |
| const body = args[0]; |
| return { |
| type: "vphantom", |
| mode: parser.mode, |
| body, |
| }; |
| }, |
|
|
| htmlBuilder: (group, options) => { |
| const inner = makeSpan( |
| ["inner"], |
| [html.buildGroup(group.body, options.withPhantom())]); |
| const fix = makeSpan(["fix"], []); |
| return makeSpan( |
| ["mord", "rlap"], [inner, fix], options); |
| }, |
| mathmlBuilder: (group, options) => { |
| const inner = mml.buildExpression(ordargument(group.body), options); |
| const phantom = new MathNode("mphantom", inner); |
| const node = new MathNode("mpadded", [phantom]); |
| node.setAttribute("width", "0px"); |
| return node; |
| }, |
| }); |
|
|