Mario wrote:
When trying to install LyX 1.4.1 under Windows XP and selecting spanish as
language, an error says "Lyx.cmd could not be created" and then LyX can not be
run because of the Lyx.bat file is missing.



Did LyX itself install? (Is lyx.exe there?) If so, you can create your own batch file. Contents of mine are shown below; you would probably want to change English (en_EN) to Spanish (es_ES?).

/Paul

======== batch file begins =========
@echo off
set LYX_LOCALEDIR=C:\Program Files\LyX141\Resources\locale
if "%LANG%"=="" SET LANG=en_EN
if "%~1" == "~1" goto win95
start "LyX" "C:\Program Files\LyX141\bin\lyx1.4.x.exe" %*
goto end
:win95
start "LyX" "C:\Program Files\LyX141\bin\lyx1.4.x.exe" %1 %2 %3 %4 %5 %6 %7 %8 %9
:end
======== batch file ends ===========

Reply via email to