1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
|
.\" This manpage is licensed under the GNU Public License
.TH MUSIXTEX 1 2020-05-21 "musixtex version 0.23" ""
.SH NAME
musixtex \- processes MusiXTeX files, using pre-processors prepmx, xml2pmx, pmxab and autosp
as necessary, and then deletes intermediate and log files (unless
.B -i
is used)
.SH SYNOPSIS
[ texlua ]
.B musixtex[.lua]
{
.I option
|
.I jobname
[ .xml | .mtx | .pmx | .aspc | .tex | .ltx ] } ...
.SH DESCRIPTION
.TP
If a jobname argument has a .tex extension, the default effect is to process the file using
.TP 12
.BR etex (1)
(first pass)
.TP
.BR musixflx (1)
(second pass)
.TP
.BR etex (1)
(third pass)
.TP
.BR dvips (1)
(dvi to Postscript)
.TP
.BR ps2pdf (1)
(Postscript to Portable Document Format)
.TP
normally followed by removal of intermediate and log files. A log musixtex.log is generated, even if other log files are removed.
.P
If a jobname argument has a .pmx extension, the file is first preprocessed using
.BR pmxab (1)
and the resulting .tex file is processed as above.
.P
If a jobname argument has a .xml extension, the file is first preprocessed using
.BR xml2pmx (1)
and the resulting .pmx file is processed as above.
.P
If a jobname argument has a .mtx extension, the file is first preprocessed using
.BR prepmx (1)
and the resulting .pmx file is processed as above.
.P
If a jobname argument has a .ltx extension, the file is processed using
.BR latex (1)
(or
.BR pdflatex (1))
in place of
.BR etex .
.P
If a jobname argument has a .aspc extension, the file is first preprocessed using
.BR autosp (1)
and the resulting .tex or .ltx file is processed as above.
.P
If a jobname argument has none of these extensions, the script will look for a file
.IR jobname .xml
or
.IR jobname .mtx
or
.IR jobname .pmx
or
.IR jobname .aspc
or
.IR jobname .tex
or
.IR jobname .ltx ,
in that order, and process it as above.
.SH OPTIONS
.TP 10
.B -v, -version, --version
output program name and version number, and quit
.TP
.B -h, -help, --help
output usage summary and quit
.TP
.B -l
assume LaTeX source;
implied if the file has .ltx extension
.TP
.B -p
change the TeX processor to
.BR pdfetex (1)
or
.BR pdflatex (1)
(and doesn't run a dvi processor)
.TP
.B -c
preprocess pmx file using
.BR pmxchords (1)
.TP
.B -d
don't generate a .ps file and change the dvi processor to
.BR dvipdfm (1)
.TP
.B -D dvix
use
.B dvix
as the dvi processor; e.g., -D "dvipdfm -m 0.9".
Use -d
.I before
-D to suppress .ps generation.
.TP
.B -P ps2pdf
use
.B ps2pdf
as the Postscript processor; e.g., -P "ps2pdf -sPAPERSIZE=a4"
.TP
.B -F fmt
use
.B fmt
as the TeX processor; e.g., -F "luatex --output-format=dvi"
.TP
.B -m
stop processing at the pmx file
.TP
.B -M mtxx
use
.B mtxx
as the mtx preprocessor; e.g., -M "prepmx -i".
.TP
.B -X pmxx
use
.B pmxx
as the pmx preprocessor; e.g., -X "./pmxab",
.TP
.B -A aspcx
use
.B aspcx
as the aspc preprocessor; e.g., -A "autosp -l".
.TP
.B -L xmlx
use
.B xmlx
as the xml preprocessor; e.g., -L "./XML2PMX".
.TP
.B -t
stop processing at the tex/mid files
.TP
.B -s
stop processing at the dvi file
.TP
.B -g
stop processing at the ps file
.TP
.B -i
retain intermediate and log files
.TP
.B -1
one-pass [pdf][la]tex processing; i.e., without calling
.B musixflx
.TP
.B -x
call
.BR makeindex (1)
to update index database
.TP
.B -f
restore default processing
.TP
.B -q
quiet mode (only musixtex's own messages); other messages are diverted to a temporary file.
If an error occurs at the TeX stage, processing halts immediately and the tail of the log file is sent to stderr.
Version information is copied from the temporary file to the log file.
.TP 0
Options affect processing of all succeeding MusiXTeX files unless changed by another option. Option flags cannot be combined; e.g., use \fB -l -x \fP rather than \fB -lx\fP.
Note that four TeX engines are available via the -l and -p options:
.TP
etex default
latex -l
pdfetex -p
pdflatex -l -p
.TP 0
If the -F option is used, options -l and -p need to be set if the engine name does not contain "latex" and "pdf" respectively. For example, the above four engines can be replaced by:
-F "luatex --output-format=dvi"
-F "lualatex --output-format=dvi"
-F "luatex" -p
-F "lualatex" -p
.SH SEE ALSO
.BR autosp (1),
.BR etex (1),
.BR latex (1),
.BR pdfetex (1),
.BR pdflatex (1),
.BR makeindex (1),
.BR musixflx (1),
.BR dvipdfm (1),
.BR dvips (1),
.BR pmxab (1),
.BR pmxchords (1),
.BR prepmx (1),
.BR ps2pdf (1),
.BR xml2pmx (1)
and musixdoc.pdf.
.SH AUTHOR
This manual page was written by Bob Tennent <rdt@cs.queensu.ca>.
|