remove shebang -- see comment 3 on https://bugzilla.redhat.com/bugzilla/show_bug...
[PyX/mjg.git] / pyx / lfs / createlfs.py
bloba1c474f9a6facc9ce3db967514d175c33780326a
1 # -*- coding: ISO-8859-1 -*-
4 # Copyright (C) 2002 Jörg Lehmann <joergl@users.sourceforge.net>
5 # Copyright (C) 2002 André Wobst <wobsta@users.sourceforge.net>
7 # This file is part of PyX (http://pyx.sourceforge.net/).
9 # PyX is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
14 # PyX is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with PyX; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 import os
25 styles = (("10pt", "article", "10pt", "" , ),
26 ("11pt", "article", "11pt", "" , ),
27 ("12pt", "article", "12pt", "" , ),
28 ("10ptex", "article", "10pt", "\\usepackage{exscale}" , ),
29 ("11ptex", "article", "11pt", "\\usepackage{exscale}" , ),
30 ("12ptex", "article", "12pt", "\\usepackage{exscale}" , ),
31 ("foils17pt", "foils", "17pt", "" , ),
32 ("foils20pt", "foils", "20pt", "" , ),
33 ("foils25pt", "foils", "25pt", "" , ),
34 ("foils30pt", "foils", "30pt", "" , ), )
36 for style in styles:
37 os.system("echo \'%s\n%s\n%s\n%s\'|latex createlfs.tex" % style)