(self, toks: ParseResults)
| 2845 | self._MathStyle.TEXTSTYLE, toks["num"], toks["den"]) |
| 2846 | |
| 2847 | def dfrac(self, toks: ParseResults) -> T.Any: |
| 2848 | return self._genfrac( |
| 2849 | "", "", self.get_state().get_current_underline_thickness(), |
| 2850 | self._MathStyle.DISPLAYSTYLE, toks["num"], toks["den"]) |
| 2851 | |
| 2852 | def binom(self, toks: ParseResults) -> T.Any: |
| 2853 | return self._genfrac( |
nothing calls this directly
no test coverage detected