mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-19 01:28:40 +00:00
* Add babel transform-class-properties to have static class properties * Upgrade Lexer and Parser files to use ES6 classes * Update eslint max line length to 90 character (more indent because of using ES6 classes) * Upgrade eslint and jasmin to support ES stage-2 features * Use static properties to place constants near their functions * Migrate all remaining sources to ES6 syntax * Increase eslint max line length to 84 * Remove non-babelified endpoint in dev server.js * Clean up server.js functions after removing browserified * Make screenshotter not to use babel endpoint as we babelify everything now
111 lines
2.7 KiB
JavaScript
111 lines
2.7 KiB
JavaScript
/**
|
|
* This file contains information and classes for the various kinds of styles
|
|
* used in TeX. It provides a generic `Style` class, which holds information
|
|
* about a specific style. It then provides instances of all the different kinds
|
|
* of styles possible, and provides functions to move between them and get
|
|
* information about them.
|
|
*/
|
|
|
|
/**
|
|
* The main style class. Contains a unique id for the style, a size (which is
|
|
* the same for cramped and uncramped version of a style), and a cramped flag.
|
|
*/
|
|
class Style {
|
|
constructor(id, size, cramped) {
|
|
this.id = id;
|
|
this.size = size;
|
|
this.cramped = cramped;
|
|
}
|
|
|
|
/**
|
|
* Get the style of a superscript given a base in the current style.
|
|
*/
|
|
sup() {
|
|
return styles[sup[this.id]];
|
|
}
|
|
|
|
/**
|
|
* Get the style of a subscript given a base in the current style.
|
|
*/
|
|
sub() {
|
|
return styles[sub[this.id]];
|
|
}
|
|
|
|
/**
|
|
* Get the style of a fraction numerator given the fraction in the current
|
|
* style.
|
|
*/
|
|
fracNum() {
|
|
return styles[fracNum[this.id]];
|
|
}
|
|
|
|
/**
|
|
* Get the style of a fraction denominator given the fraction in the current
|
|
* style.
|
|
*/
|
|
fracDen() {
|
|
return styles[fracDen[this.id]];
|
|
}
|
|
|
|
/**
|
|
* Get the cramped version of a style (in particular, cramping a cramped style
|
|
* doesn't change the style).
|
|
*/
|
|
cramp() {
|
|
return styles[cramp[this.id]];
|
|
}
|
|
|
|
/**
|
|
* Get a text or display version of this style.
|
|
*/
|
|
text() {
|
|
return styles[text[this.id]];
|
|
}
|
|
|
|
/**
|
|
* Return if this style is tightly spaced (scriptstyle/scriptscriptstyle)
|
|
*/
|
|
isTight() {
|
|
return this.size >= 2;
|
|
}
|
|
}
|
|
|
|
// IDs of the different styles
|
|
const D = 0;
|
|
const Dc = 1;
|
|
const T = 2;
|
|
const Tc = 3;
|
|
const S = 4;
|
|
const Sc = 5;
|
|
const SS = 6;
|
|
const SSc = 7;
|
|
|
|
// Instances of the different styles
|
|
const styles = [
|
|
new Style(D, 0, false),
|
|
new Style(Dc, 0, true),
|
|
new Style(T, 1, false),
|
|
new Style(Tc, 1, true),
|
|
new Style(S, 2, false),
|
|
new Style(Sc, 2, true),
|
|
new Style(SS, 3, false),
|
|
new Style(SSc, 3, true),
|
|
];
|
|
|
|
// Lookup tables for switching from one style to another
|
|
const sup = [S, Sc, S, Sc, SS, SSc, SS, SSc];
|
|
const sub = [Sc, Sc, Sc, Sc, SSc, SSc, SSc, SSc];
|
|
const fracNum = [T, Tc, S, Sc, SS, SSc, SS, SSc];
|
|
const fracDen = [Tc, Tc, Sc, Sc, SSc, SSc, SSc, SSc];
|
|
const cramp = [Dc, Dc, Tc, Tc, Sc, Sc, SSc, SSc];
|
|
const text = [D, Dc, T, Tc, T, Tc, T, Tc];
|
|
|
|
// We only export some of the styles. Also, we don't export the `Style` class so
|
|
// no more styles can be generated.
|
|
module.exports = {
|
|
DISPLAY: styles[D],
|
|
TEXT: styles[T],
|
|
SCRIPT: styles[S],
|
|
SCRIPTSCRIPT: styles[SS],
|
|
};
|