(group, options)
| 11974 | } |
| 11975 | var sizeFuncs = ["\\tiny", "\\sixptsize", "\\scriptsize", "\\footnotesize", "\\small", "\\normalsize", "\\large", "\\Large", "\\LARGE", "\\huge", "\\Huge"]; |
| 11976 | var sizing_htmlBuilder = function htmlBuilder(group, options) { |
| 11977 | // Handle sizing operators like \Huge. Real TeX doesn't actually allow |
| 11978 | // these functions inside of math expressions, so we do some special |
| 11979 | // handling. |
| 11980 | var newOptions = options.havingSize(group.size); |
| 11981 | return sizingGroup(group.body, newOptions, options); |
| 11982 | }; |
| 11983 | defineFunction({ |
| 11984 | type: "sizing", |
| 11985 | names: sizeFuncs, |
no test coverage detected