[texworks] latex->dvips->ps2pdf on Windows

Joseph Wright joseph.wright at morningstar2.co.uk
Wed Jun 10 22:59:01 CEST 2009


David Arnold wrote:
> All,
> 
> Has anyone successfully set up Texworks to run latex->dvips->ps2pdf on a
> windows machine? If so, can you share how?
> 
> David
> 

Probably easiest to set up a batch file that does the job.  Something like:

@echo off
if "%1%" == "" goto :error

goto :end

latex %1
IF ERRORLEVEL 0 (
  dvips %1
  ps2pdf %1
)
goto L:end

:error

echo.
echo Please supply a file name
echo.

:end
-- 
Joseph Wright


More information about the texworks mailing list