On Sun, 18 May 2014, [email protected] wrote:
One slight nuisance during editing is the fact that Acrobat will not allow a new version of a pdf to overwrite the old one when the old one is open.
Here a script with pdfopen works perfectly with Windows 8. I use this script. @echo off if not exist %1.tex goto :EOF if exist %1.mx2 del %1.mx2 if exist %1.pdf del %1.pdf > nul 2>&1 if exist %1.pdf pdfclose --file %1.pdf @tex %1 && @musixflx %1 && @tex %1 && @dvips -q* -tA4 %1 && @ps2pdf -sPAPERSIZE#a4 -r300 %1.ps %1.pdf && pdfopen --file %1.pdf Thanks to David Allsopp. Read: http://tug.org/pipermail/tex-music/2009-January/010086.html Bye -- Jean-Pierre ------------------------------- [email protected] mailing list If you want to unsubscribe or look at the archives, go to http://tug.org/mailman/listinfo/tex-music

