我做错了什么? 只是为了澄清一下,我的困惑源于缺乏明显的行号和位置来指向示例文件内发生错误的位置。
我从手册第 11 页借用了一个 PMX bat 文件Typesetting music with PMX, Version 2.821 / May 2013 by Cornelius C. Noack
,并根据我的 MikTex 设置路径对其进行了调整。
:::::::::::::::::::::::: runpmx.bat ::::::::::::::::::::::::
Call "D:\Program Files (x86)\MiKTeX 2.9\miktex\bin\pmxab.exe" %1.pmx
if errorlevel 1 goto pmxerr
if exist %1.pml del %1.pml
if exist %1.mx2 del %1.mx2
if exist %1.mx1 del %1.mx1
if exist pmxaerr.dat del pmxaerr.dat
::
Call "D:\Program Files (x86)\MiKTeX 2.9\miktex\bin\etex.exe" %1.tex
if errorlevel 1 goto texerr
::
Call "D:\Program Files (x86)\MiKTeX 2.9\miktex\bin\musixflx.exe" %1.mx1
::
Call "D:\Program Files (x86)\MiKTeX 2.9\miktex\bin\etex.exe" %1.tex
if errorlevel 1 goto texerr
if exist %1.log del %1.log
::
Call "D:\Program Files (x86)\MiKTeX 2.9\miktex\bin\dvips.exe" %1.dvi
if errorlevel 1 goto dvierr
if exist %1.log del %1.log
::
@rem Call C:\Programme\GhostScript\Ghostgum\gsview\gsview32.exe %1.ps
::
goto :end
:::::::::::::::::::
:: error exits :
::
:pmxerr
echo.
echo PMX has found errors when processing %1.pmx !
echo.
pause
goto :end
::
:texerr
echo.
echo TeX has found errors when processing %1.tex !
echo check %1.log for details.
echo.
pause
goto :end
::
:dvierr
echo.
echo *** dvips had errors ! ***
echo.
pause
::
:end
:::::::::::::::::::: end of runpmx.bat ::::::::::::::::::::
然后我将同一手册第 14 页中的海顿样本复制/粘贴到 ANSI 编码的文件haydn.pmx
中:
F.J.\ Haydn, Quartet op.76, no.2, bars 1--4
PREAMBLE:
nstaves ninstr mtrnuml mtrdenl mtrnump mtrdenp
4 4 4 4 0 6
npickup nkeys
0 -1
npages nsystems musicsize fracindent
1 1 16 .08
Violoncello
Viola
Violin II
Violin I
batt
./
% BODY:
% HEADER:
Tc
F.J. Haydn
Tt
String Quartet op. 76, No.2
h
Allegro
Abep
w170m
% begin of music input -
% bar 1
d82 Df o. d+ o. d o. d o. r d o. d o. d o. /
f83 Df o. f o. f o. f o. r f o. f o. f o. /
r8 a83 Df o. a o. a o. r a o. a o. a o. /
a24 Df d- /
% bar 2
r8 d o. d o. d o. r e o. e o. e o. /
r8 g o. g o. g o. r g o. g o. g o. /
r8 b o. b o. b o. r cs o. c o. c o. /
e2 a- /
% bars 3-4
f8 s e f cs s d4 a | b2 s a4 s o. r Rb /
a2 t a4 t .cs- | d8 s e f d s e4 o. r /
d8 s cs d e s e s d c s a1+ s g s | f s g f e s d8 o. d o. cs4 r /
d8 s cs d e s g s f e s a | d4- zd+ cn1 s b a gs s a4 o. r /
% end of PMX source file
最后针对该样本运行了 bat 文件。结果出现了以下错误:
I:\LaTeX\MusixTex\work>pmx.cmd haydn
I:\LaTeX\MusixTex\work>Call "D:\Program Files (x86)\MiKTeX 2.9\miktex\bin\pmxab.exe" haydn.pmx
This is PMX, Version 2.7 , 3 Apr 13
Opening haydn.pmx
Starting first PMX pass
forrtl: severe (64): input conversion error, unit -5, file Internal Formatted Read
I:\LaTeX\MusixTex\work>if errorlevel 1 goto pmxerr
I:\LaTeX\MusixTex\work>if exist haydn.pml del haydn.pml
I:\LaTeX\MusixTex\work>if exist haydn.mx2 del haydn.mx2
I:\LaTeX\MusixTex\work>if exist haydn.mx1 del haydn.mx1
I:\LaTeX\MusixTex\work>if exist pmxaerr.dat del pmxaerr.dat
I:\LaTeX\MusixTex\work>Call "D:\Program Files (x86)\MiKTeX 2.9\miktex\bin\etex.exe" haydn.tex
This is pdfTeX, Version 3.1415926-2.5-1.40.14 (MiKTeX 2.9)
entering extended mode
! I can't find file `haydn.tex'.
<*> haydn.tex
Please type another input file name:
! Emergency stop.
<*> haydn.tex
No pages of output.
Transcript written on texput.log.
Terminate batch job (Y/N)? y
该过程完成后,haydn.pml
将创建以下文件:
This is PMX, Version 2.7 , 3 Apr 13
Opening haydn.pmx
Starting first PMX pass
pmxaerr.dat
并且仅包含一行且后面有 5 个空格的文件0
:
0
答案1
这个例子确实是错的,前面几行缺少一些注释字符。pmx
文件中首先应该看到的是数字列表,对应于变量nstaves
等。在这个例子中,这个列表以 开头4 4 4 4 0 6
。这之前的所有行都需要用 注释掉,以和%
开头的行也一样。这是一个正确的文件及其输出npickup
npages
% F.J.\ Haydn, Quartet op.76, no.2, bars 1--4
% PREAMBLE:
% nstaves ninstr mtrnuml mtrdenl mtrnump mtrdenp
4 4 4 4 0 6
% npickup nkeys
0 -1
% npages nsystems musicsize fracindent
1 1 16 .08
Violoncello
Viola
Violin II
Violin I
batt
./
% BODY:
% HEADER:
Tc
F.J. Haydn
Tt
String Quartet op. 76, No.2
h
Allegro
Abep
w170m
% begin of music input -
% bar 1
d82 Df o. d+ o. d o. d o. r d o. d o. d o. /
f83 Df o. f o. f o. f o. r f o. f o. f o. /
r8 a83 Df o. a o. a o. r a o. a o. a o. /
a24 Df d- /
% bar 2
r8 d o. d o. d o. r e o. e o. e o. /
r8 g o. g o. g o. r g o. g o. g o. /
r8 b o. b o. b o. r cs o. c o. c o. /
e2 a- /
% bars 3-4
f8 s e f cs s d4 a | b2 s a4 s o. r Rb /
a2 t a4 t .cs- | d8 s e f d s e4 o. r /
d8 s cs d e s e s d c s a1+ s g s | f s g f e s d8 o. d o. cs4 r /
d8 s cs d e s g s f e s a | d4- zd+ cn1 s b a gs s a4 o. r /
% end of PMX source file
我建议你联系教程的作者指出这个错误。通常,如果文档和介绍材料中有一些非常简短的简单示例可以先尝试,那就太好了pmx
,就像@darthbin 在评论中要求的那样。也许这样的例子可能是
1 1 4 4 4 4 0 0
1 1 20 0.12
Violin
t
./
% Bars 1
c2 g4+ e /
% End of file
在哪里
1 1 4 4 4 4 0 0
表示每个系统一个谱表,一个乐器,4/4 拍子打印为 4/4,拾音条和调号中没有节拍0
,表示没有升号或降号。第 2 行
1 1 20 0.12
表示 1 页,1 个系统,音乐大小和第一个系统20
的缩进。 第 3 行是乐器的名称,第 4 行表示它是高音谱号。该行表示将输出放在当前目录中。最后是音乐小节,从 C 最小音开始,上升到 G 小节,然后是 E 小节。0.12
t
./
c2 g4+ e /
我的安装(texlive)附带一个命令pmx2pdf
,可以将其处理为一个pdf
文件。