fix: \injlim typo (#2459)

* Fix typo in \injlim

* Just to satisfy Semantic Pull Request
This commit is contained in:
Ron Kok
2020-08-26 09:14:18 -07:00
committed by GitHub
parent 987a84ee04
commit b22b69c3a8
3 changed files with 3 additions and 3 deletions

View File

@@ -500,7 +500,7 @@ use `\ce` instead|
|\inf|$\inf$||
|\infin|$\infin$||
|\infty|$\infty$||
|\injlim|$\injlim$|`\injlim`|
|\injlim|$\injlim$| `\injlim` |
|\int|$\int$||
|\intercal|$\intercal$||
|\intop|$\intop$||

View File

@@ -844,7 +844,7 @@ defineMacro("\\liminf", "\\DOTSB\\operatorname*{lim\\,inf}");
//////////////////////////////////////////////////////////////////////
// From amsopn.sty
defineMacro("\\injlim", "\\DOTSB\\operatorname*{int\\,lim}");
defineMacro("\\injlim", "\\DOTSB\\operatorname*{inj\\,lim}");
defineMacro("\\projlim", "\\DOTSB\\operatorname*{proj\\,lim}");
defineMacro("\\varlimsup", "\\DOTSB\\operatorname*{\\overline{lim}}");
defineMacro("\\varliminf", "\\DOTSB\\operatorname*{\\underline{lim}}");

View File

@@ -3440,7 +3440,7 @@ describe("A macro expander", function() {
});
it("should expand AMS log-like symbols as expected", () => {
expect`\injlim`.toParseLike`\operatorname*{int\,lim}`;
expect`\injlim`.toParseLike`\operatorname*{inj\,lim}`;
expect`\projlim`.toParseLike`\operatorname*{proj\,lim}`;
expect`\varlimsup`.toParseLike`\operatorname*{\overline{lim}}`;
expect`\varliminf`.toParseLike`\operatorname*{\underline{lim}}`;