(self, s, loc, toks)
| 2614 | r'\!' : -0.16667, # -3/18 em = -3 mu |
| 2615 | } |
| 2616 | def space(self, s, loc, toks): |
| 2617 | assert len(toks)==1 |
| 2618 | num = self._space_widths[toks[0]] |
| 2619 | box = self._make_space(num) |
| 2620 | return [box] |
| 2621 | |
| 2622 | def customspace(self, s, loc, toks): |
| 2623 | return [self._make_space(float(toks[0]))] |
nothing calls this directly
no test coverage detected