1#!/usr/bin/env python
2
3from plasTeX import Command
4
5class LenToUnit(Command):
6    args = 'length:nox'
7
8class AtPageUpperLeft(Command):
9    args = 'commands:nox'
10
11class AtPageLowerLeft(Command):
12    args = 'commands:nox'
13
14class AtPageCenter(Command):
15    args = 'commands:nox'
16
17class AtTextUpperLeft(Command):
18    args = 'commands:nox'
19
20class AtTextLowerLeft(Command):
21    args = 'commands:nox'
22
23class AtTextCenter(Command):
24    args = 'commands:nox'
25
26class AddToShipoutPicture(Command):
27    args = '*'
28
29class ClearShipoutPicture(Command):
30    pass
31
32class gridSetup(Command):
33    args = '[ gridunitname:nox ] [ gridunit:nox ] labelfactor:nox griddelta:nox gridDelta:nox gap:nox'
34
35