1#!/usr/bin/env python
2
3from plasTeX import Command
4
5class afterpage(Command):
6    args = 'self:nox'
7
8    def invoke(self, tex):
9        super(afterpage, self).invoke(tex)
10        return []
11