(self, toks: ParseResults)
| 2850 | self._MathStyle.DISPLAYSTYLE, toks["num"], toks["den"]) |
| 2851 | |
| 2852 | def binom(self, toks: ParseResults) -> T.Any: |
| 2853 | return self._genfrac( |
| 2854 | "(", ")", 0, |
| 2855 | self._MathStyle.TEXTSTYLE, toks["num"], toks["den"]) |
| 2856 | |
| 2857 | def _genset(self, s: str, loc: int, toks: ParseResults) -> T.Any: |
| 2858 | annotation = toks["annotation"] |