diff options
author | Karl Berry <karl@freefriends.org> | 2013-12-13 22:06:48 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-12-13 22:06:48 +0000 |
commit | 1965df58ffe4e19a18e219430bc2d4e9ac345f4f (patch) | |
tree | bbab01d8439b0951956c16fc4f16195d93714b6d /Master/texmf-dist/scripts | |
parent | a2646b55325a74922497c14a13f792909be514c3 (diff) |
m-tx (13dec13)
git-svn-id: svn://tug.org/texlive/trunk@32403 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/m-tx/m-tx.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Master/texmf-dist/scripts/m-tx/m-tx.lua b/Master/texmf-dist/scripts/m-tx/m-tx.lua index 495777b6d57..be1a3b80d3e 100755 --- a/Master/texmf-dist/scripts/m-tx/m-tx.lua +++ b/Master/texmf-dist/scripts/m-tx/m-tx.lua @@ -27,6 +27,10 @@ VERSION = "0.4" ChangeLog: + version 0.4 2013-12-11 RDT + Add -c option for pmxchords preprocessing of pmx file + Add -F fmt option to use fmt as TeX processor + version 0.3 2012-04-09 RDT Change name to m-tx to avoid clash with another program. @@ -48,6 +52,8 @@ function usage() print(" -l latex (or pdflatex)") print(" -p pdfetex (or pdflatex)") print(" -d dvipdfm") + print(" -c preprocess pmx file using pmxchords") + print(" -F fmt use fmt as the TeX processor") print(" -s stop at dvi") print(" -t stop at tex/mid") print(" -m stop at pmx") @@ -98,6 +104,11 @@ repeat dvi = ""; ps2pdf = "" elseif this_arg == "-d" then dvi = "dvipdfm"; ps2pdf = "" + elseif this_arg == "-c" + pmx = "pmxchords" + elseif this_arg == "-F" then + narg = narg+1 + tex = arg[narg] elseif this_arg == "-s" then dvi = ""; ps2pdf = "" elseif this_arg == "-i" then |