Support \bmod, \pmod, \pod, and \mod.

This commit is contained in:
Eddie Kohler
2016-12-08 16:09:13 -05:00
committed by Kevin Barabash
parent f742fbf9f2
commit 7c83021009
9 changed files with 131 additions and 3 deletions

View File

@@ -105,9 +105,9 @@
@ptperem: 10.0;
@nulldelimiterspace: 1.2em / @ptperem;
@thinspace: 0.16667em;
@mediumspace: 0.22222em;
@thickspace: 0.27778em;
@thinspace: 0.16667em; // 3mu
@mediumspace: 0.22222em; // 4mu
@thickspace: 0.27778em; // 5mu
// These spacings apply in textstyle and displaystyle.
.mord {
@@ -300,6 +300,10 @@
width: @thinspace;
}
&.negativemediumspace {
margin-left: -@mediumspace;
}
&.mediumspace {
width: @mediumspace;
}
@@ -308,10 +312,22 @@
width: @thickspace;
}
&.sixmuspace {
width: 0.333333em;
}
&.eightmuspace {
width: 0.444444em;
}
&.enspace {
width: 0.5em;
}
&.twelvemuspace {
width: 0.666667em;
}
&.quad {
width: 1em;
}