Re: Re: configuring lyx to use an alternative Texlive version Solved

2012-04-29 Thread Kornel Benko
Am Sonntag, 29. April 2012 um 12:01:16, schrieb Alasdair Reed 
alasd...@iprimus.com.au
 On Sat, 28 Apr 2012 11:56:08 -0500
 stefano franchi stefano.fran...@gmail.com wrote:
 
  On Sat, Apr 28, 2012 at 9:50 AM, Alasdair Reed
  alasd...@iprimus.com.au wrote:
   On Sat, 28 Apr 2012 08:20:23 -0500
   stefano franchi stefano.fran...@gmail.com wrote:
  
   On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed
   alasd...@iprimus.com.au wrote:
  
Is that right?  Which logfile should I check?  The
  
   You can check the Latex log by going to DocumentLatex Log
   The first line will tell you which version of of Texlive LyX is
   using
  
dialogue /documents/settings/fonts/use non-Tex fonts via
XeTex/LuaTex, is greyed out. The package fontspec needs to be
installed to use this dialogue box, it is installed in
TexLive2011
(/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty)
on my system, but the box is still greyed out. Do you need to
put \usepackage{fontspec} in the preamble of every document to
use XeTex ?
   
  
   ToolsTex information will tell you which Tex packages Lyx is
   Toolsaware.
   If you check the box
   called show path it will tell you where the packages are.
  
   the fontspec package should be loaded automatically if you choose
   non-TeX fonts. You can check if that's the case by choosing
   ViewSource, and checking the box Full source. Scroll back to
   Viewthe
   beginning of the source doc and you should be able to see the
   \fontspec command.
  
   Hope it helps,
  
   Stefano
  
  
  
   Thanks Stefano,
   Document  Latex Log is greyed out
  
  It won't be activated until you comiple something. Create a new Lyx
  file with just a word in in it and then do Viewpdflatex (for
  instance). After successful compilaiton you should be able to see the
  log file
  
  
   Tools  Tex with show path is showing packages
   from /usr/share/texmf-texlive/tex/generic/foo/foo.sty (for example)
   so it would seem lyx is not aware of TexLive2011 in /usr/local/
  
  Right, I guess the problem is that lyx finds the ubuntu packages
  before it hits texlive.
  
  First of all: have you reconfigured Lyx (ToolsReconfigure)? It may
  be all you need.
  
  If that does not work, a couple of options:
  
  1. Uninstall the Ubuntu text-live package. This may not be feasible,
  though, because you probably have it as a dependence of Lyx and
  possibly other packages
  There is a way to replace Ubuntu's outdated texlive with a dummy
  package but I am afraid I forget how to do it. Other people on the
  list may know (I left Ubuntu some time ago).
  
  2. Check the order of your executable path in your $PATH environmental
  variable. In fact, open a terminal and do
  
  $which pdflatex
  
  you should get something like:
  /usr/local/texlive/2011/bin/x86_64-linux/pdflatex
  
  
  and then do something like:
  
  $kpsewhich fontspec.sty
  
  
  and you shoud get
  /usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty
  
   If not, try
  
  $printenv $PATH
  
  Do you see the path to the texlive2011 installation occurring before
  the path to the Ubuntu installed executables?
  
  S.
  
  
 
 Hi, The paths are all correct,  Starting lyx from the terminal and
 reconfiguring did the trick as far as using TexLive2011 goes I just
 can't start Lyx from the desktop icon if I want to use TexLive2011,
 but I can live with that. It can be done but time is short . There are
 other problems but I will post separate question about them. \
 
 Alasdair

That may be because the desktop does not know your specific PATH setting. (Only 
your sh knows).
To set it for the desktop, create the file ~/.pam_environment. (This expands
the file /etc/security/pam_env.conf on your login. Should be there, but maybe 
is empty)

The syntax of this file is described in man pam_env. For examples look into 
/etc/security/pam_env.conf

Define the PATH like this (On my ubuntu):
PATH OVERRIDE=/usr/local/texlive/2011/bin/x86_64-linux:${PATH}

provided the path to your latex is the same

Kornel


signature.asc
Description: This is a digitally signed message part.


Re: Re: configuring lyx to use an alternative Texlive version Solved

2012-04-29 Thread Kornel Benko
Am Sonntag, 29. April 2012 um 12:01:16, schrieb Alasdair Reed 
alasd...@iprimus.com.au
 On Sat, 28 Apr 2012 11:56:08 -0500
 stefano franchi stefano.fran...@gmail.com wrote:
 
  On Sat, Apr 28, 2012 at 9:50 AM, Alasdair Reed
  alasd...@iprimus.com.au wrote:
   On Sat, 28 Apr 2012 08:20:23 -0500
   stefano franchi stefano.fran...@gmail.com wrote:
  
   On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed
   alasd...@iprimus.com.au wrote:
  
Is that right?  Which logfile should I check?  The
  
   You can check the Latex log by going to DocumentLatex Log
   The first line will tell you which version of of Texlive LyX is
   using
  
dialogue /documents/settings/fonts/use non-Tex fonts via
XeTex/LuaTex, is greyed out. The package fontspec needs to be
installed to use this dialogue box, it is installed in
TexLive2011
(/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty)
on my system, but the box is still greyed out. Do you need to
put \usepackage{fontspec} in the preamble of every document to
use XeTex ?
   
  
   ToolsTex information will tell you which Tex packages Lyx is
   Toolsaware.
   If you check the box
   called show path it will tell you where the packages are.
  
   the fontspec package should be loaded automatically if you choose
   non-TeX fonts. You can check if that's the case by choosing
   ViewSource, and checking the box Full source. Scroll back to
   Viewthe
   beginning of the source doc and you should be able to see the
   \fontspec command.
  
   Hope it helps,
  
   Stefano
  
  
  
   Thanks Stefano,
   Document  Latex Log is greyed out
  
  It won't be activated until you comiple something. Create a new Lyx
  file with just a word in in it and then do Viewpdflatex (for
  instance). After successful compilaiton you should be able to see the
  log file
  
  
   Tools  Tex with show path is showing packages
   from /usr/share/texmf-texlive/tex/generic/foo/foo.sty (for example)
   so it would seem lyx is not aware of TexLive2011 in /usr/local/
  
  Right, I guess the problem is that lyx finds the ubuntu packages
  before it hits texlive.
  
  First of all: have you reconfigured Lyx (ToolsReconfigure)? It may
  be all you need.
  
  If that does not work, a couple of options:
  
  1. Uninstall the Ubuntu text-live package. This may not be feasible,
  though, because you probably have it as a dependence of Lyx and
  possibly other packages
  There is a way to replace Ubuntu's outdated texlive with a dummy
  package but I am afraid I forget how to do it. Other people on the
  list may know (I left Ubuntu some time ago).
  
  2. Check the order of your executable path in your $PATH environmental
  variable. In fact, open a terminal and do
  
  $which pdflatex
  
  you should get something like:
  /usr/local/texlive/2011/bin/x86_64-linux/pdflatex
  
  
  and then do something like:
  
  $kpsewhich fontspec.sty
  
  
  and you shoud get
  /usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty
  
   If not, try
  
  $printenv $PATH
  
  Do you see the path to the texlive2011 installation occurring before
  the path to the Ubuntu installed executables?
  
  S.
  
  
 
 Hi, The paths are all correct,  Starting lyx from the terminal and
 reconfiguring did the trick as far as using TexLive2011 goes I just
 can't start Lyx from the desktop icon if I want to use TexLive2011,
 but I can live with that. It can be done but time is short . There are
 other problems but I will post separate question about them. \
 
 Alasdair

That may be because the desktop does not know your specific PATH setting. (Only 
your sh knows).
To set it for the desktop, create the file ~/.pam_environment. (This expands
the file /etc/security/pam_env.conf on your login. Should be there, but maybe 
is empty)

The syntax of this file is described in man pam_env. For examples look into 
/etc/security/pam_env.conf

Define the PATH like this (On my ubuntu):
PATH OVERRIDE=/usr/local/texlive/2011/bin/x86_64-linux:${PATH}

provided the path to your latex is the same

Kornel


signature.asc
Description: This is a digitally signed message part.


Re: Re: configuring lyx to use an alternative Texlive version Solved

2012-04-29 Thread Kornel Benko
Am Sonntag, 29. April 2012 um 12:01:16, schrieb Alasdair Reed 

> On Sat, 28 Apr 2012 11:56:08 -0500
> stefano franchi  wrote:
> 
> > On Sat, Apr 28, 2012 at 9:50 AM, Alasdair Reed
> >  wrote:
> > > On Sat, 28 Apr 2012 08:20:23 -0500
> > > stefano franchi  wrote:
> > >
> > >> On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed
> > >>  wrote:
> > >>
> > >> > Is that right?  Which logfile should I check?  The
> > >>
> > >> You can check the Latex log by going to Document>>Latex Log
> > >> The first line will tell you which version of of Texlive LyX is
> > >> using
> > >>
> > >> > dialogue /documents/settings/fonts/use non-Tex fonts via
> > >> > XeTex/LuaTex, is greyed out. The package fontspec needs to be
> > >> > installed to use this dialogue box, it is installed in
> > >> > TexLive2011
> > >> > (/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty)
> > >> > on my system, but the box is still greyed out. Do you need to
> > >> > put \usepackage{fontspec} in the preamble of every document to
> > >> > use XeTex ?
> > >> >
> > >>
> > >> Tools>>Tex information will tell you which Tex packages Lyx is
> > >> Tools>>aware.
> > >> If you check the box
> > >> called "show path" it will tell you where the packages are.
> > >>
> > >> the fontspec package should be loaded automatically if you choose
> > >> non-TeX fonts. You can check if that's the case by choosing
> > >> View>>Source, and checking the box "Full source." Scroll back to
> > >> View>>the
> > >> beginning of the source doc and you should be able to see the
> > >> \fontspec command.
> > >>
> > >> Hope it helps,
> > >>
> > >> Stefano
> > >>
> > >>
> > >
> > > Thanks Stefano,
> > > Document >> Latex Log is greyed out
> > 
> > It won't be activated until you comiple something. Create a new Lyx
> > file with just a word in in it and then do View>>pdflatex (for
> > instance). After successful compilaiton you should be able to see the
> > log file
> > 
> > 
> > > Tools >> Tex with "show path" is showing packages
> > > from /usr/share/texmf-texlive/tex/generic/foo/foo.sty (for example)
> > > so it would seem lyx is not aware of TexLive2011 in /usr/local/
> > 
> > Right, I guess the problem is that lyx finds the ubuntu packages
> > before it hits texlive.
> > 
> > First of all: have you reconfigured Lyx (Tools>>Reconfigure)? It may
> > be all you need.
> > 
> > If that does not work, a couple of options:
> > 
> > 1. Uninstall the Ubuntu text-live package. This may not be feasible,
> > though, because you probably have it as a dependence of Lyx and
> > possibly other packages
> > There is a way to replace Ubuntu's outdated texlive with a "dummy"
> > package but I am afraid I forget how to do it. Other people on the
> > list may know (I left Ubuntu some time ago).
> > 
> > 2. Check the order of your executable path in your $PATH environmental
> > variable. In fact, open a terminal and do
> > 
> > $which pdflatex
> > 
> > you should get something like:
> > /usr/local/texlive/2011/bin/x86_64-linux/pdflatex
> > 
> > 
> > and then do something like:
> > 
> > $kpsewhich fontspec.sty
> > 
> > 
> > and you shoud get
> > /usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty
> > 
> >  If not, try
> > 
> > $printenv $PATH
> > 
> > Do you see the path to the texlive2011 installation occurring before
> > the path to the Ubuntu installed executables?
> > 
> > S.
> > 
> > 
> 
> Hi, The paths are all correct,  Starting lyx from the terminal and
> reconfiguring did the trick as far as using TexLive2011 goes I just
> can't start Lyx from the desktop icon if I want to use TexLive2011,
> but I can live with that. It can be done but time is short . There are
> other problems but I will post separate question about them. \
> 
> Alasdair

That may be because the desktop does not know your specific PATH setting. (Only 
your sh knows).
To set it for the desktop, create the file "~/.pam_environment". (This expands
the file "/etc/security/pam_env.conf" on your login. Should be there, but maybe 
is empty)

The syntax of this file is described in "man pam_env". For examples look into 
"/etc/security/pam_env.conf"

Define the PATH like this (On my ubuntu):
PATH OVERRIDE=/usr/local/texlive/2011/bin/x86_64-linux:${PATH}

provided the path to your latex is the same

Kornel


signature.asc
Description: This is a digitally signed message part.


Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread Ignacio García
Alasdair Reed alasdair at iprimus.com.au writes:



 I would like to configure Lyx to use Texlive2011 in ubuntu 11.10, to
 use the latest version of Xetex. My system installed Texlive  is
 Texlive2009 I have installed Texlive2011 as per the Texlive page
 http://tug.org/texlive/doc/texlive-en/texlive-en.html#x1-170003.1.1
 in /usr/local/texlive. Added all the suggested lines to my .bashrc.
 Starting Xetex in the terminal produces the message
 Code
 This is XeTeX, Version 3.1415926-2.3-0.9997.5 (TeX Live 2011)
  restricted \write18 enabled.
 Code ends
 I imagine this is ok. How do I configure lyx to find texlive2011
 in /usr/local/ instead of using the system default?

Not need configure lyx, lyx deals with it.
As the output of xetex in the terminal is 2011, lyx use this version
You can check it in the latex log file produced when lyx run the output

ig


Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread Alasdair Reed
On Sat, 28 Apr 2012 09:15:10 +0200
Ignacio García ignacio.gmora...@gmail.com wrote:

 Alasdair Reed alasdair at iprimus.com.au writes:
 
 
 
  I would like to configure Lyx to use Texlive2011 in ubuntu 11.10, to
  use the latest version of Xetex. My system installed Texlive  is
  Texlive2009 I have installed Texlive2011 as per the Texlive page
  http://tug.org/texlive/doc/texlive-en/texlive-en.html#x1-170003.1.1
  in /usr/local/texlive. Added all the suggested lines to my .bashrc.
  Starting Xetex in the terminal produces the message
  Code
  This is XeTeX, Version 3.1415926-2.3-0.9997.5 (TeX Live 2011)
   restricted \write18 enabled.
  Code ends
  I imagine this is ok. How do I configure lyx to find texlive2011
  in /usr/local/ instead of using the system default?
 
 Not need configure lyx, lyx deals with it.
 As the output of xetex in the terminal is 2011, lyx use this version
 You can check it in the latex log file produced when lyx run the
 output
 
 ig

Hi,

Is that right?  Which logfile should I check?  The
dialogue /documents/settings/fonts/use non-Tex fonts via XeTex/LuaTex,
is greyed out. The package fontspec needs to be installed to use this
dialogue box, it is installed in TexLive2011
(/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty) on
my system, but the box is still greyed out. Do you need to put
\usepackage{fontspec} in the preamble of every document to use XeTex ? 

Alasdair



Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread stefano franchi
On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed alasd...@iprimus.com.au wrote:

 Is that right?  Which logfile should I check?  The

You can check the Latex log by going to DocumentLatex Log
The first line will tell you which version of of Texlive LyX is using

 dialogue /documents/settings/fonts/use non-Tex fonts via XeTex/LuaTex,
 is greyed out. The package fontspec needs to be installed to use this
 dialogue box, it is installed in TexLive2011
 (/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty) on
 my system, but the box is still greyed out. Do you need to put
 \usepackage{fontspec} in the preamble of every document to use XeTex ?


ToolsTex information will tell you which Tex packages Lyx is aware.
If you check the box
called show path it will tell you where the packages are.

the fontspec package should be loaded automatically if you choose
non-TeX fonts. You can check if that's the case by choosing
ViewSource, and checking the box Full source. Scroll back to the
beginning of the source doc and you should be able to see the
\fontspec command.

Hope it helps,

Stefano


-- 
__
Stefano Franchi
Associate Research Professor
Department of Hispanic Studies            Ph:   +1 (979) 845-2125
Texas AM University                          Fax:  +1 (979) 845-6421
College Station, Texas, USA

stef...@tamu.edu
http://stefano.cleinias.org


Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread Alasdair Reed
On Sat, 28 Apr 2012 08:20:23 -0500
stefano franchi stefano.fran...@gmail.com wrote:

 On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed
 alasd...@iprimus.com.au wrote:
 
  Is that right?  Which logfile should I check?  The
 
 You can check the Latex log by going to DocumentLatex Log
 The first line will tell you which version of of Texlive LyX is using
 
  dialogue /documents/settings/fonts/use non-Tex fonts via
  XeTex/LuaTex, is greyed out. The package fontspec needs to be
  installed to use this dialogue box, it is installed in TexLive2011
  (/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty)
  on my system, but the box is still greyed out. Do you need to put
  \usepackage{fontspec} in the preamble of every document to use
  XeTex ?
 
 
 ToolsTex information will tell you which Tex packages Lyx is aware.
 If you check the box
 called show path it will tell you where the packages are.
 
 the fontspec package should be loaded automatically if you choose
 non-TeX fonts. You can check if that's the case by choosing
 ViewSource, and checking the box Full source. Scroll back to the
 beginning of the source doc and you should be able to see the
 \fontspec command.
 
 Hope it helps,
 
 Stefano
 
 

Thanks Stefano,
Document  Latex Log is greyed out
Tools  Tex with show path is showing packages
from /usr/share/texmf-texlive/tex/generic/foo/foo.sty (for example)
so it would seem lyx is not aware of TexLive2011 in /usr/local/

Any ideas?







Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread stefano franchi
On Sat, Apr 28, 2012 at 9:50 AM, Alasdair Reed alasd...@iprimus.com.au wrote:
 On Sat, 28 Apr 2012 08:20:23 -0500
 stefano franchi stefano.fran...@gmail.com wrote:

 On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed
 alasd...@iprimus.com.au wrote:

  Is that right?  Which logfile should I check?  The

 You can check the Latex log by going to DocumentLatex Log
 The first line will tell you which version of of Texlive LyX is using

  dialogue /documents/settings/fonts/use non-Tex fonts via
  XeTex/LuaTex, is greyed out. The package fontspec needs to be
  installed to use this dialogue box, it is installed in TexLive2011
  (/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty)
  on my system, but the box is still greyed out. Do you need to put
  \usepackage{fontspec} in the preamble of every document to use
  XeTex ?
 

 ToolsTex information will tell you which Tex packages Lyx is aware.
 If you check the box
 called show path it will tell you where the packages are.

 the fontspec package should be loaded automatically if you choose
 non-TeX fonts. You can check if that's the case by choosing
 ViewSource, and checking the box Full source. Scroll back to the
 beginning of the source doc and you should be able to see the
 \fontspec command.

 Hope it helps,

 Stefano



 Thanks Stefano,
 Document  Latex Log is greyed out

It won't be activated until you comiple something. Create a new Lyx
file with just a word in in it and then do Viewpdflatex (for
instance). After successful compilaiton you should be able to see the
log file


 Tools  Tex with show path is showing packages
 from /usr/share/texmf-texlive/tex/generic/foo/foo.sty (for example)
 so it would seem lyx is not aware of TexLive2011 in /usr/local/

Right, I guess the problem is that lyx finds the ubuntu packages
before it hits texlive.

First of all: have you reconfigured Lyx (ToolsReconfigure)? It may
be all you need.

If that does not work, a couple of options:

1. Uninstall the Ubuntu text-live package. This may not be feasible,
though, because you probably have it as a dependence of Lyx and
possibly other packages
There is a way to replace Ubuntu's outdated texlive with a dummy
package but I am afraid I forget how to do it. Other people on the
list may know (I left Ubuntu some time ago).

2. Check the order of your executable path in your $PATH environmental
variable. In fact, open a terminal and do

$which pdflatex

you should get something like:
/usr/local/texlive/2011/bin/x86_64-linux/pdflatex


and then do something like:

$kpsewhich fontspec.sty


and you shoud get
/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty

 If not, try

$printenv $PATH

Do you see the path to the texlive2011 installation occurring before
the path to the Ubuntu installed executables?

S.


-- 
__
Stefano Franchi
Associate Research Professor
Department of Hispanic Studies            Ph:   +1 (979) 845-2125
Texas AM University                          Fax:  +1 (979) 845-6421
College Station, Texas, USA

stef...@tamu.edu
http://stefano.cleinias.org


Re: configuring lyx to use an alternative Texlive version Solved

2012-04-28 Thread Alasdair Reed
On Sat, 28 Apr 2012 11:56:08 -0500
stefano franchi stefano.fran...@gmail.com wrote:

 On Sat, Apr 28, 2012 at 9:50 AM, Alasdair Reed
 alasd...@iprimus.com.au wrote:
  On Sat, 28 Apr 2012 08:20:23 -0500
  stefano franchi stefano.fran...@gmail.com wrote:
 
  On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed
  alasd...@iprimus.com.au wrote:
 
   Is that right?  Which logfile should I check?  The
 
  You can check the Latex log by going to DocumentLatex Log
  The first line will tell you which version of of Texlive LyX is
  using
 
   dialogue /documents/settings/fonts/use non-Tex fonts via
   XeTex/LuaTex, is greyed out. The package fontspec needs to be
   installed to use this dialogue box, it is installed in
   TexLive2011
   (/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty)
   on my system, but the box is still greyed out. Do you need to
   put \usepackage{fontspec} in the preamble of every document to
   use XeTex ?
  
 
  ToolsTex information will tell you which Tex packages Lyx is
  Toolsaware.
  If you check the box
  called show path it will tell you where the packages are.
 
  the fontspec package should be loaded automatically if you choose
  non-TeX fonts. You can check if that's the case by choosing
  ViewSource, and checking the box Full source. Scroll back to
  Viewthe
  beginning of the source doc and you should be able to see the
  \fontspec command.
 
  Hope it helps,
 
  Stefano
 
 
 
  Thanks Stefano,
  Document  Latex Log is greyed out
 
 It won't be activated until you comiple something. Create a new Lyx
 file with just a word in in it and then do Viewpdflatex (for
 instance). After successful compilaiton you should be able to see the
 log file
 
 
  Tools  Tex with show path is showing packages
  from /usr/share/texmf-texlive/tex/generic/foo/foo.sty (for example)
  so it would seem lyx is not aware of TexLive2011 in /usr/local/
 
 Right, I guess the problem is that lyx finds the ubuntu packages
 before it hits texlive.
 
 First of all: have you reconfigured Lyx (ToolsReconfigure)? It may
 be all you need.
 
 If that does not work, a couple of options:
 
 1. Uninstall the Ubuntu text-live package. This may not be feasible,
 though, because you probably have it as a dependence of Lyx and
 possibly other packages
 There is a way to replace Ubuntu's outdated texlive with a dummy
 package but I am afraid I forget how to do it. Other people on the
 list may know (I left Ubuntu some time ago).
 
 2. Check the order of your executable path in your $PATH environmental
 variable. In fact, open a terminal and do
 
 $which pdflatex
 
 you should get something like:
 /usr/local/texlive/2011/bin/x86_64-linux/pdflatex
 
 
 and then do something like:
 
 $kpsewhich fontspec.sty
 
 
 and you shoud get
 /usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty
 
  If not, try
 
 $printenv $PATH
 
 Do you see the path to the texlive2011 installation occurring before
 the path to the Ubuntu installed executables?
 
 S.
 
 

Hi, The paths are all correct,  Starting lyx from the terminal and
reconfiguring did the trick as far as using TexLive2011 goes I just
can't start Lyx from the desktop icon if I want to use TexLive2011,
but I can live with that. It can be done but time is short . There are
other problems but I will post separate question about them. \

Alasdair



Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread Ignacio García
Alasdair Reed alasdair at iprimus.com.au writes:



 I would like to configure Lyx to use Texlive2011 in ubuntu 11.10, to
 use the latest version of Xetex. My system installed Texlive  is
 Texlive2009 I have installed Texlive2011 as per the Texlive page
 http://tug.org/texlive/doc/texlive-en/texlive-en.html#x1-170003.1.1
 in /usr/local/texlive. Added all the suggested lines to my .bashrc.
 Starting Xetex in the terminal produces the message
 Code
 This is XeTeX, Version 3.1415926-2.3-0.9997.5 (TeX Live 2011)
  restricted \write18 enabled.
 Code ends
 I imagine this is ok. How do I configure lyx to find texlive2011
 in /usr/local/ instead of using the system default?

Not need configure lyx, lyx deals with it.
As the output of xetex in the terminal is 2011, lyx use this version
You can check it in the latex log file produced when lyx run the output

ig


Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread Alasdair Reed
On Sat, 28 Apr 2012 09:15:10 +0200
Ignacio García ignacio.gmora...@gmail.com wrote:

 Alasdair Reed alasdair at iprimus.com.au writes:
 
 
 
  I would like to configure Lyx to use Texlive2011 in ubuntu 11.10, to
  use the latest version of Xetex. My system installed Texlive  is
  Texlive2009 I have installed Texlive2011 as per the Texlive page
  http://tug.org/texlive/doc/texlive-en/texlive-en.html#x1-170003.1.1
  in /usr/local/texlive. Added all the suggested lines to my .bashrc.
  Starting Xetex in the terminal produces the message
  Code
  This is XeTeX, Version 3.1415926-2.3-0.9997.5 (TeX Live 2011)
   restricted \write18 enabled.
  Code ends
  I imagine this is ok. How do I configure lyx to find texlive2011
  in /usr/local/ instead of using the system default?
 
 Not need configure lyx, lyx deals with it.
 As the output of xetex in the terminal is 2011, lyx use this version
 You can check it in the latex log file produced when lyx run the
 output
 
 ig

Hi,

Is that right?  Which logfile should I check?  The
dialogue /documents/settings/fonts/use non-Tex fonts via XeTex/LuaTex,
is greyed out. The package fontspec needs to be installed to use this
dialogue box, it is installed in TexLive2011
(/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty) on
my system, but the box is still greyed out. Do you need to put
\usepackage{fontspec} in the preamble of every document to use XeTex ? 

Alasdair



Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread stefano franchi
On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed alasd...@iprimus.com.au wrote:

 Is that right?  Which logfile should I check?  The

You can check the Latex log by going to DocumentLatex Log
The first line will tell you which version of of Texlive LyX is using

 dialogue /documents/settings/fonts/use non-Tex fonts via XeTex/LuaTex,
 is greyed out. The package fontspec needs to be installed to use this
 dialogue box, it is installed in TexLive2011
 (/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty) on
 my system, but the box is still greyed out. Do you need to put
 \usepackage{fontspec} in the preamble of every document to use XeTex ?


ToolsTex information will tell you which Tex packages Lyx is aware.
If you check the box
called show path it will tell you where the packages are.

the fontspec package should be loaded automatically if you choose
non-TeX fonts. You can check if that's the case by choosing
ViewSource, and checking the box Full source. Scroll back to the
beginning of the source doc and you should be able to see the
\fontspec command.

Hope it helps,

Stefano


-- 
__
Stefano Franchi
Associate Research Professor
Department of Hispanic Studies            Ph:   +1 (979) 845-2125
Texas AM University                          Fax:  +1 (979) 845-6421
College Station, Texas, USA

stef...@tamu.edu
http://stefano.cleinias.org


Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread Alasdair Reed
On Sat, 28 Apr 2012 08:20:23 -0500
stefano franchi stefano.fran...@gmail.com wrote:

 On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed
 alasd...@iprimus.com.au wrote:
 
  Is that right?  Which logfile should I check?  The
 
 You can check the Latex log by going to DocumentLatex Log
 The first line will tell you which version of of Texlive LyX is using
 
  dialogue /documents/settings/fonts/use non-Tex fonts via
  XeTex/LuaTex, is greyed out. The package fontspec needs to be
  installed to use this dialogue box, it is installed in TexLive2011
  (/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty)
  on my system, but the box is still greyed out. Do you need to put
  \usepackage{fontspec} in the preamble of every document to use
  XeTex ?
 
 
 ToolsTex information will tell you which Tex packages Lyx is aware.
 If you check the box
 called show path it will tell you where the packages are.
 
 the fontspec package should be loaded automatically if you choose
 non-TeX fonts. You can check if that's the case by choosing
 ViewSource, and checking the box Full source. Scroll back to the
 beginning of the source doc and you should be able to see the
 \fontspec command.
 
 Hope it helps,
 
 Stefano
 
 

Thanks Stefano,
Document  Latex Log is greyed out
Tools  Tex with show path is showing packages
from /usr/share/texmf-texlive/tex/generic/foo/foo.sty (for example)
so it would seem lyx is not aware of TexLive2011 in /usr/local/

Any ideas?







Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread stefano franchi
On Sat, Apr 28, 2012 at 9:50 AM, Alasdair Reed alasd...@iprimus.com.au wrote:
 On Sat, 28 Apr 2012 08:20:23 -0500
 stefano franchi stefano.fran...@gmail.com wrote:

 On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed
 alasd...@iprimus.com.au wrote:

  Is that right?  Which logfile should I check?  The

 You can check the Latex log by going to DocumentLatex Log
 The first line will tell you which version of of Texlive LyX is using

  dialogue /documents/settings/fonts/use non-Tex fonts via
  XeTex/LuaTex, is greyed out. The package fontspec needs to be
  installed to use this dialogue box, it is installed in TexLive2011
  (/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty)
  on my system, but the box is still greyed out. Do you need to put
  \usepackage{fontspec} in the preamble of every document to use
  XeTex ?
 

 ToolsTex information will tell you which Tex packages Lyx is aware.
 If you check the box
 called show path it will tell you where the packages are.

 the fontspec package should be loaded automatically if you choose
 non-TeX fonts. You can check if that's the case by choosing
 ViewSource, and checking the box Full source. Scroll back to the
 beginning of the source doc and you should be able to see the
 \fontspec command.

 Hope it helps,

 Stefano



 Thanks Stefano,
 Document  Latex Log is greyed out

It won't be activated until you comiple something. Create a new Lyx
file with just a word in in it and then do Viewpdflatex (for
instance). After successful compilaiton you should be able to see the
log file


 Tools  Tex with show path is showing packages
 from /usr/share/texmf-texlive/tex/generic/foo/foo.sty (for example)
 so it would seem lyx is not aware of TexLive2011 in /usr/local/

Right, I guess the problem is that lyx finds the ubuntu packages
before it hits texlive.

First of all: have you reconfigured Lyx (ToolsReconfigure)? It may
be all you need.

If that does not work, a couple of options:

1. Uninstall the Ubuntu text-live package. This may not be feasible,
though, because you probably have it as a dependence of Lyx and
possibly other packages
There is a way to replace Ubuntu's outdated texlive with a dummy
package but I am afraid I forget how to do it. Other people on the
list may know (I left Ubuntu some time ago).

2. Check the order of your executable path in your $PATH environmental
variable. In fact, open a terminal and do

$which pdflatex

you should get something like:
/usr/local/texlive/2011/bin/x86_64-linux/pdflatex


and then do something like:

$kpsewhich fontspec.sty


and you shoud get
/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty

 If not, try

$printenv $PATH

Do you see the path to the texlive2011 installation occurring before
the path to the Ubuntu installed executables?

S.


-- 
__
Stefano Franchi
Associate Research Professor
Department of Hispanic Studies            Ph:   +1 (979) 845-2125
Texas AM University                          Fax:  +1 (979) 845-6421
College Station, Texas, USA

stef...@tamu.edu
http://stefano.cleinias.org


Re: configuring lyx to use an alternative Texlive version Solved

2012-04-28 Thread Alasdair Reed
On Sat, 28 Apr 2012 11:56:08 -0500
stefano franchi stefano.fran...@gmail.com wrote:

 On Sat, Apr 28, 2012 at 9:50 AM, Alasdair Reed
 alasd...@iprimus.com.au wrote:
  On Sat, 28 Apr 2012 08:20:23 -0500
  stefano franchi stefano.fran...@gmail.com wrote:
 
  On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed
  alasd...@iprimus.com.au wrote:
 
   Is that right?  Which logfile should I check?  The
 
  You can check the Latex log by going to DocumentLatex Log
  The first line will tell you which version of of Texlive LyX is
  using
 
   dialogue /documents/settings/fonts/use non-Tex fonts via
   XeTex/LuaTex, is greyed out. The package fontspec needs to be
   installed to use this dialogue box, it is installed in
   TexLive2011
   (/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty)
   on my system, but the box is still greyed out. Do you need to
   put \usepackage{fontspec} in the preamble of every document to
   use XeTex ?
  
 
  ToolsTex information will tell you which Tex packages Lyx is
  Toolsaware.
  If you check the box
  called show path it will tell you where the packages are.
 
  the fontspec package should be loaded automatically if you choose
  non-TeX fonts. You can check if that's the case by choosing
  ViewSource, and checking the box Full source. Scroll back to
  Viewthe
  beginning of the source doc and you should be able to see the
  \fontspec command.
 
  Hope it helps,
 
  Stefano
 
 
 
  Thanks Stefano,
  Document  Latex Log is greyed out
 
 It won't be activated until you comiple something. Create a new Lyx
 file with just a word in in it and then do Viewpdflatex (for
 instance). After successful compilaiton you should be able to see the
 log file
 
 
  Tools  Tex with show path is showing packages
  from /usr/share/texmf-texlive/tex/generic/foo/foo.sty (for example)
  so it would seem lyx is not aware of TexLive2011 in /usr/local/
 
 Right, I guess the problem is that lyx finds the ubuntu packages
 before it hits texlive.
 
 First of all: have you reconfigured Lyx (ToolsReconfigure)? It may
 be all you need.
 
 If that does not work, a couple of options:
 
 1. Uninstall the Ubuntu text-live package. This may not be feasible,
 though, because you probably have it as a dependence of Lyx and
 possibly other packages
 There is a way to replace Ubuntu's outdated texlive with a dummy
 package but I am afraid I forget how to do it. Other people on the
 list may know (I left Ubuntu some time ago).
 
 2. Check the order of your executable path in your $PATH environmental
 variable. In fact, open a terminal and do
 
 $which pdflatex
 
 you should get something like:
 /usr/local/texlive/2011/bin/x86_64-linux/pdflatex
 
 
 and then do something like:
 
 $kpsewhich fontspec.sty
 
 
 and you shoud get
 /usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty
 
  If not, try
 
 $printenv $PATH
 
 Do you see the path to the texlive2011 installation occurring before
 the path to the Ubuntu installed executables?
 
 S.
 
 

Hi, The paths are all correct,  Starting lyx from the terminal and
reconfiguring did the trick as far as using TexLive2011 goes I just
can't start Lyx from the desktop icon if I want to use TexLive2011,
but I can live with that. It can be done but time is short . There are
other problems but I will post separate question about them. \

Alasdair



Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread Ignacio García
Alasdair Reed  iprimus.com.au> writes:

>
>
> I would like to configure Lyx to use Texlive2011 in ubuntu 11.10, to
> use the latest version of Xetex. My system installed Texlive  is
> Texlive2009 I have installed Texlive2011 as per the Texlive page
> http://tug.org/texlive/doc/texlive-en/texlive-en.html#x1-170003.1.1
> in /usr/local/texlive. Added all the suggested lines to my .bashrc.
> Starting Xetex in the terminal produces the message
> Code
> This is XeTeX, Version 3.1415926-2.3-0.9997.5 (TeX Live 2011)
>  restricted \write18 enabled.
> Code ends
> I imagine this is ok. How do I configure lyx to find texlive2011
> in /usr/local/ instead of using the system default?

Not need configure lyx, lyx deals with it.
As the output of xetex in the terminal is 2011, lyx use this version
You can check it in the latex log file produced when lyx run the output

ig


Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread Alasdair Reed
On Sat, 28 Apr 2012 09:15:10 +0200
Ignacio García  wrote:

> Alasdair Reed  iprimus.com.au> writes:
> 
> >
> >
> > I would like to configure Lyx to use Texlive2011 in ubuntu 11.10, to
> > use the latest version of Xetex. My system installed Texlive  is
> > Texlive2009 I have installed Texlive2011 as per the Texlive page
> > http://tug.org/texlive/doc/texlive-en/texlive-en.html#x1-170003.1.1
> > in /usr/local/texlive. Added all the suggested lines to my .bashrc.
> > Starting Xetex in the terminal produces the message
> > Code
> > This is XeTeX, Version 3.1415926-2.3-0.9997.5 (TeX Live 2011)
> >  restricted \write18 enabled.
> > Code ends
> > I imagine this is ok. How do I configure lyx to find texlive2011
> > in /usr/local/ instead of using the system default?
> 
> Not need configure lyx, lyx deals with it.
> As the output of xetex in the terminal is 2011, lyx use this version
> You can check it in the latex log file produced when lyx run the
> output
> 
> ig

Hi,

Is that right?  Which logfile should I check?  The
dialogue /documents/settings/fonts/use non-Tex fonts via XeTex/LuaTex,
is greyed out. The package fontspec needs to be installed to use this
dialogue box, it is installed in TexLive2011
(/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty) on
my system, but the box is still greyed out. Do you need to put
\usepackage{fontspec} in the preamble of every document to use XeTex ? 

Alasdair



Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread stefano franchi
On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed  wrote:

> Is that right?  Which logfile should I check?  The

You can check the Latex log by going to Document>>Latex Log
The first line will tell you which version of of Texlive LyX is using

> dialogue /documents/settings/fonts/use non-Tex fonts via XeTex/LuaTex,
> is greyed out. The package fontspec needs to be installed to use this
> dialogue box, it is installed in TexLive2011
> (/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty) on
> my system, but the box is still greyed out. Do you need to put
> \usepackage{fontspec} in the preamble of every document to use XeTex ?
>

Tools>>Tex information will tell you which Tex packages Lyx is aware.
If you check the box
called "show path" it will tell you where the packages are.

the fontspec package should be loaded automatically if you choose
non-TeX fonts. You can check if that's the case by choosing
View>>Source, and checking the box "Full source." Scroll back to the
beginning of the source doc and you should be able to see the
\fontspec command.

Hope it helps,

Stefano


-- 
__
Stefano Franchi
Associate Research Professor
Department of Hispanic Studies            Ph:   +1 (979) 845-2125
Texas A University                          Fax:  +1 (979) 845-6421
College Station, Texas, USA

stef...@tamu.edu
http://stefano.cleinias.org


Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread Alasdair Reed
On Sat, 28 Apr 2012 08:20:23 -0500
stefano franchi  wrote:

> On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed
>  wrote:
> 
> > Is that right?  Which logfile should I check?  The
> 
> You can check the Latex log by going to Document>>Latex Log
> The first line will tell you which version of of Texlive LyX is using
> 
> > dialogue /documents/settings/fonts/use non-Tex fonts via
> > XeTex/LuaTex, is greyed out. The package fontspec needs to be
> > installed to use this dialogue box, it is installed in TexLive2011
> > (/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty)
> > on my system, but the box is still greyed out. Do you need to put
> > \usepackage{fontspec} in the preamble of every document to use
> > XeTex ?
> >
> 
> Tools>>Tex information will tell you which Tex packages Lyx is aware.
> If you check the box
> called "show path" it will tell you where the packages are.
> 
> the fontspec package should be loaded automatically if you choose
> non-TeX fonts. You can check if that's the case by choosing
> View>>Source, and checking the box "Full source." Scroll back to the
> beginning of the source doc and you should be able to see the
> \fontspec command.
> 
> Hope it helps,
> 
> Stefano
> 
> 

Thanks Stefano,
Document >> Latex Log is greyed out
Tools >> Tex with "show path" is showing packages
from /usr/share/texmf-texlive/tex/generic/foo/foo.sty (for example)
so it would seem lyx is not aware of TexLive2011 in /usr/local/

Any ideas?







Re: configuring lyx to use an alternative Texlive version

2012-04-28 Thread stefano franchi
On Sat, Apr 28, 2012 at 9:50 AM, Alasdair Reed  wrote:
> On Sat, 28 Apr 2012 08:20:23 -0500
> stefano franchi  wrote:
>
>> On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed
>>  wrote:
>>
>> > Is that right?  Which logfile should I check?  The
>>
>> You can check the Latex log by going to Document>>Latex Log
>> The first line will tell you which version of of Texlive LyX is using
>>
>> > dialogue /documents/settings/fonts/use non-Tex fonts via
>> > XeTex/LuaTex, is greyed out. The package fontspec needs to be
>> > installed to use this dialogue box, it is installed in TexLive2011
>> > (/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty)
>> > on my system, but the box is still greyed out. Do you need to put
>> > \usepackage{fontspec} in the preamble of every document to use
>> > XeTex ?
>> >
>>
>> Tools>>Tex information will tell you which Tex packages Lyx is aware.
>> If you check the box
>> called "show path" it will tell you where the packages are.
>>
>> the fontspec package should be loaded automatically if you choose
>> non-TeX fonts. You can check if that's the case by choosing
>> View>>Source, and checking the box "Full source." Scroll back to the
>> beginning of the source doc and you should be able to see the
>> \fontspec command.
>>
>> Hope it helps,
>>
>> Stefano
>>
>>
>
> Thanks Stefano,
> Document >> Latex Log is greyed out

It won't be activated until you comiple something. Create a new Lyx
file with just a word in in it and then do View>>pdflatex (for
instance). After successful compilaiton you should be able to see the
log file


> Tools >> Tex with "show path" is showing packages
> from /usr/share/texmf-texlive/tex/generic/foo/foo.sty (for example)
> so it would seem lyx is not aware of TexLive2011 in /usr/local/

Right, I guess the problem is that lyx finds the ubuntu packages
before it hits texlive.

First of all: have you reconfigured Lyx (Tools>>Reconfigure)? It may
be all you need.

If that does not work, a couple of options:

1. Uninstall the Ubuntu text-live package. This may not be feasible,
though, because you probably have it as a dependence of Lyx and
possibly other packages
There is a way to replace Ubuntu's outdated texlive with a "dummy"
package but I am afraid I forget how to do it. Other people on the
list may know (I left Ubuntu some time ago).

2. Check the order of your executable path in your $PATH environmental
variable. In fact, open a terminal and do

$which pdflatex

you should get something like:
/usr/local/texlive/2011/bin/x86_64-linux/pdflatex


and then do something like:

$kpsewhich fontspec.sty


and you shoud get
/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty

 If not, try

$printenv $PATH

Do you see the path to the texlive2011 installation occurring before
the path to the Ubuntu installed executables?

S.


-- 
__
Stefano Franchi
Associate Research Professor
Department of Hispanic Studies            Ph:   +1 (979) 845-2125
Texas A University                          Fax:  +1 (979) 845-6421
College Station, Texas, USA

stef...@tamu.edu
http://stefano.cleinias.org


Re: configuring lyx to use an alternative Texlive version Solved

2012-04-28 Thread Alasdair Reed
On Sat, 28 Apr 2012 11:56:08 -0500
stefano franchi  wrote:

> On Sat, Apr 28, 2012 at 9:50 AM, Alasdair Reed
>  wrote:
> > On Sat, 28 Apr 2012 08:20:23 -0500
> > stefano franchi  wrote:
> >
> >> On Sat, Apr 28, 2012 at 5:09 AM, Alasdair Reed
> >>  wrote:
> >>
> >> > Is that right?  Which logfile should I check?  The
> >>
> >> You can check the Latex log by going to Document>>Latex Log
> >> The first line will tell you which version of of Texlive LyX is
> >> using
> >>
> >> > dialogue /documents/settings/fonts/use non-Tex fonts via
> >> > XeTex/LuaTex, is greyed out. The package fontspec needs to be
> >> > installed to use this dialogue box, it is installed in
> >> > TexLive2011
> >> > (/usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty)
> >> > on my system, but the box is still greyed out. Do you need to
> >> > put \usepackage{fontspec} in the preamble of every document to
> >> > use XeTex ?
> >> >
> >>
> >> Tools>>Tex information will tell you which Tex packages Lyx is
> >> Tools>>aware.
> >> If you check the box
> >> called "show path" it will tell you where the packages are.
> >>
> >> the fontspec package should be loaded automatically if you choose
> >> non-TeX fonts. You can check if that's the case by choosing
> >> View>>Source, and checking the box "Full source." Scroll back to
> >> View>>the
> >> beginning of the source doc and you should be able to see the
> >> \fontspec command.
> >>
> >> Hope it helps,
> >>
> >> Stefano
> >>
> >>
> >
> > Thanks Stefano,
> > Document >> Latex Log is greyed out
> 
> It won't be activated until you comiple something. Create a new Lyx
> file with just a word in in it and then do View>>pdflatex (for
> instance). After successful compilaiton you should be able to see the
> log file
> 
> 
> > Tools >> Tex with "show path" is showing packages
> > from /usr/share/texmf-texlive/tex/generic/foo/foo.sty (for example)
> > so it would seem lyx is not aware of TexLive2011 in /usr/local/
> 
> Right, I guess the problem is that lyx finds the ubuntu packages
> before it hits texlive.
> 
> First of all: have you reconfigured Lyx (Tools>>Reconfigure)? It may
> be all you need.
> 
> If that does not work, a couple of options:
> 
> 1. Uninstall the Ubuntu text-live package. This may not be feasible,
> though, because you probably have it as a dependence of Lyx and
> possibly other packages
> There is a way to replace Ubuntu's outdated texlive with a "dummy"
> package but I am afraid I forget how to do it. Other people on the
> list may know (I left Ubuntu some time ago).
> 
> 2. Check the order of your executable path in your $PATH environmental
> variable. In fact, open a terminal and do
> 
> $which pdflatex
> 
> you should get something like:
> /usr/local/texlive/2011/bin/x86_64-linux/pdflatex
> 
> 
> and then do something like:
> 
> $kpsewhich fontspec.sty
> 
> 
> and you shoud get
> /usr/local/texlive/2011/texmf-dist/tex/latex/fontspec/fontspec.sty
> 
>  If not, try
> 
> $printenv $PATH
> 
> Do you see the path to the texlive2011 installation occurring before
> the path to the Ubuntu installed executables?
> 
> S.
> 
> 

Hi, The paths are all correct,  Starting lyx from the terminal and
reconfiguring did the trick as far as using TexLive2011 goes I just
can't start Lyx from the desktop icon if I want to use TexLive2011,
but I can live with that. It can be done but time is short . There are
other problems but I will post separate question about them. \

Alasdair



configuring lyx to use an alternative Texlive version

2012-04-27 Thread Alasdair Reed

I would like to configure Lyx to use Texlive2011 in ubuntu 11.10, to
use the latest version of Xetex. My system installed Texlive  is
Texlive2009 I have installed Texlive2011 as per the Texlive page
http://tug.org/texlive/doc/texlive-en/texlive-en.html#x1-170003.1.1
in /usr/local/texlive. Added all the suggested lines to my .bashrc.
Starting Xetex in the terminal produces the message
Code
This is XeTeX, Version 3.1415926-2.3-0.9997.5 (TeX Live 2011)
 restricted \write18 enabled.
Code ends
I imagine this is ok. How do I configure lyx to find texlive2011
in /usr/local/ instead of using the system default? 

Alasdair


configuring lyx to use an alternative Texlive version

2012-04-27 Thread Alasdair Reed

I would like to configure Lyx to use Texlive2011 in ubuntu 11.10, to
use the latest version of Xetex. My system installed Texlive  is
Texlive2009 I have installed Texlive2011 as per the Texlive page
http://tug.org/texlive/doc/texlive-en/texlive-en.html#x1-170003.1.1
in /usr/local/texlive. Added all the suggested lines to my .bashrc.
Starting Xetex in the terminal produces the message
Code
This is XeTeX, Version 3.1415926-2.3-0.9997.5 (TeX Live 2011)
 restricted \write18 enabled.
Code ends
I imagine this is ok. How do I configure lyx to find texlive2011
in /usr/local/ instead of using the system default? 

Alasdair


configuring lyx to use an alternative Texlive version

2012-04-27 Thread Alasdair Reed

I would like to configure Lyx to use Texlive2011 in ubuntu 11.10, to
use the latest version of Xetex. My system installed Texlive  is
Texlive2009 I have installed Texlive2011 as per the Texlive page
http://tug.org/texlive/doc/texlive-en/texlive-en.html#x1-170003.1.1
in /usr/local/texlive. Added all the suggested lines to my .bashrc.
Starting Xetex in the terminal produces the message
Code
This is XeTeX, Version 3.1415926-2.3-0.9997.5 (TeX Live 2011)
 restricted \write18 enabled.
Code ends
I imagine this is ok. How do I configure lyx to find texlive2011
in /usr/local/ instead of using the system default? 

Alasdair


Configuring LyX and Sweave for R on a Windows platform

2009-02-18 Thread Dan
Hi.

I'm trying to configure Lyx to work with Sweave on a Windows XP platform. I 
have done various searches of the web and found some information on how to do 
this, but it appears as though all the information I can find is specific only 
to *nix systems. 

I don't have time to waste trying to get things up and running. This should be 
an automatic thing in LyX (under Windows or *nix). I think that life would be 
lots easier if I could just point Lyx to my R directory and my MikTeX 
directory and then it just self-configures to allow Sweave use!

Can this be done? Otherwise, is there any 'specific' information giving the 
step-by-step procedure for making LyX and R work together via Sweave under a 
Windows environment?

Thanks,
Dan.



Re: Configuring LyX and Sweave for R on a Windows platform

2009-02-18 Thread Murat Yildizoglu
Hello,
I have just spent some time to solve this configuration problem. I have been
able to make it work, starting from information provided by other Lyx users
and tuning them a little bit. I summarize on my blog the necessary
operations:

http://yildizoglu.blogspot.com/

Maybe this could help you.

Murat

2009/2/19 Dan zahlcteu...@gmail.com

 Hi.

 I'm trying to configure Lyx to work with Sweave on a Windows XP platform. I
 have done various searches of the web and found some information on how to
 do
 this, but it appears as though all the information I can find is specific
 only
 to *nix systems.

 I don't have time to waste trying to get things up and running. This should
 be
 an automatic thing in LyX (under Windows or *nix). I think that life would
 be
 lots easier if I could just point Lyx to my R directory and my MikTeX
 directory and then it just self-configures to allow Sweave use!

 Can this be done? Otherwise, is there any 'specific' information giving the
 step-by-step procedure for making LyX and R work together via Sweave under
 a
 Windows environment?

 Thanks,
 Dan.




-- 
*** NEW UNIVERSITY, NEW ADDRESS ! ***

Prof. Murat Yildizoglu
Université Paul Cézanne (Aix-Marseille 3)
GREQAM (UMR CNRS 6579)
Centre de la Vieille Charité
2, rue de la Charité
13236 Marseille cedex 02

Bureau 320
Tel : +33 4 91 14 07 27 (standard)
Tel : +33 4 91 14 07 70 (secrétariat)
Tel : +33 4 91 14 07 47 (bureau)
Fax : +33 4 91 90 02 27

e-mail: murat.yildizo...@univ-cezanne.fr
www : http://www.vcharite.univ-mrs.fr/PP/yildi/index.html
__


Configuring LyX and Sweave for R on a Windows platform

2009-02-18 Thread Dan
Hi.

I'm trying to configure Lyx to work with Sweave on a Windows XP platform. I 
have done various searches of the web and found some information on how to do 
this, but it appears as though all the information I can find is specific only 
to *nix systems. 

I don't have time to waste trying to get things up and running. This should be 
an automatic thing in LyX (under Windows or *nix). I think that life would be 
lots easier if I could just point Lyx to my R directory and my MikTeX 
directory and then it just self-configures to allow Sweave use!

Can this be done? Otherwise, is there any 'specific' information giving the 
step-by-step procedure for making LyX and R work together via Sweave under a 
Windows environment?

Thanks,
Dan.



Re: Configuring LyX and Sweave for R on a Windows platform

2009-02-18 Thread Murat Yildizoglu
Hello,
I have just spent some time to solve this configuration problem. I have been
able to make it work, starting from information provided by other Lyx users
and tuning them a little bit. I summarize on my blog the necessary
operations:

http://yildizoglu.blogspot.com/

Maybe this could help you.

Murat

2009/2/19 Dan zahlcteu...@gmail.com

 Hi.

 I'm trying to configure Lyx to work with Sweave on a Windows XP platform. I
 have done various searches of the web and found some information on how to
 do
 this, but it appears as though all the information I can find is specific
 only
 to *nix systems.

 I don't have time to waste trying to get things up and running. This should
 be
 an automatic thing in LyX (under Windows or *nix). I think that life would
 be
 lots easier if I could just point Lyx to my R directory and my MikTeX
 directory and then it just self-configures to allow Sweave use!

 Can this be done? Otherwise, is there any 'specific' information giving the
 step-by-step procedure for making LyX and R work together via Sweave under
 a
 Windows environment?

 Thanks,
 Dan.




-- 
*** NEW UNIVERSITY, NEW ADDRESS ! ***

Prof. Murat Yildizoglu
Université Paul Cézanne (Aix-Marseille 3)
GREQAM (UMR CNRS 6579)
Centre de la Vieille Charité
2, rue de la Charité
13236 Marseille cedex 02

Bureau 320
Tel : +33 4 91 14 07 27 (standard)
Tel : +33 4 91 14 07 70 (secrétariat)
Tel : +33 4 91 14 07 47 (bureau)
Fax : +33 4 91 90 02 27

e-mail: murat.yildizo...@univ-cezanne.fr
www : http://www.vcharite.univ-mrs.fr/PP/yildi/index.html
__


Configuring LyX and Sweave for R on a Windows platform

2009-02-18 Thread Dan
Hi.

I'm trying to configure Lyx to work with Sweave on a Windows XP platform. I 
have done various searches of the web and found some information on how to do 
this, but it appears as though all the information I can find is specific only 
to *nix systems. 

I don't have time to waste trying to get things up and running. This should be 
an automatic thing in LyX (under Windows or *nix). I think that life would be 
lots easier if I could just point Lyx to my R directory and my MikTeX 
directory and then it just self-configures to allow Sweave use!

Can this be done? Otherwise, is there any 'specific' information giving the 
step-by-step procedure for making LyX and R work together via Sweave under a 
Windows environment?

Thanks,
Dan.



Re: Configuring LyX and Sweave for R on a Windows platform

2009-02-18 Thread Murat Yildizoglu
Hello,
I have just spent some time to solve this configuration problem. I have been
able to make it work, starting from information provided by other Lyx users
and tuning them a little bit. I summarize on my blog the necessary
operations:

http://yildizoglu.blogspot.com/

Maybe this could help you.

Murat

2009/2/19 Dan 

> Hi.
>
> I'm trying to configure Lyx to work with Sweave on a Windows XP platform. I
> have done various searches of the web and found some information on how to
> do
> this, but it appears as though all the information I can find is specific
> only
> to *nix systems.
>
> I don't have time to waste trying to get things up and running. This should
> be
> an automatic thing in LyX (under Windows or *nix). I think that life would
> be
> lots easier if I could just point Lyx to my R directory and my MikTeX
> directory and then it just self-configures to allow Sweave use!
>
> Can this be done? Otherwise, is there any 'specific' information giving the
> step-by-step procedure for making LyX and R work together via Sweave under
> a
> Windows environment?
>
> Thanks,
> Dan.
>
>


-- 
*** NEW UNIVERSITY, NEW ADDRESS ! ***

Prof. Murat Yildizoglu
Université Paul Cézanne (Aix-Marseille 3)
GREQAM (UMR CNRS 6579)
Centre de la Vieille Charité
2, rue de la Charité
13236 Marseille cedex 02

Bureau 320
Tel : +33 4 91 14 07 27 (standard)
Tel : +33 4 91 14 07 70 (secrétariat)
Tel : +33 4 91 14 07 47 (bureau)
Fax : +33 4 91 90 02 27

e-mail: murat.yildizo...@univ-cezanne.fr
www : http://www.vcharite.univ-mrs.fr/PP/yildi/index.html
__


Re: Configuring LyX for Arabic or Persian

2007-12-04 Thread amp3030

My LyX version is 1.5.1 (This is what Synaptic offered to me). I want to
write the entire document in Persian/Arabic. I followed exactly LyX's
official wiki for Arabic language. (Instructions for Persian were
incomplete.) I followed instructions for configuring Arabic in linux using
ArabTeX (I made bind file, etc). I can see some outputs, though very buggy.
But I cannot extend it to Persian (Farsi). What I really want is Persian,
not Arabic. Thanks again.

Related wiki pages can be found here:
http://wiki.lyx.org/Windows/Arabic
http://wiki.lyx.org/Windows/Farsi



Dov Feldstern wrote:
 
 
 Hi!
 
 Could you please provide a more information: specifically, what version 
 of LyX are you using? What is your default language set to, what is the 
 language of the current document? And what exactly are you trying to do: 
 write the entire document in Farsi/Arabic, just insert a word here or 
 there in an otherwise english document, or what?
 
 Dov
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Configuring-LyX-for-Arabic-or-Persian-tf4883614.html#a14157218
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Configuring LyX for Arabic or Persian

2007-12-04 Thread amp3030

My LyX version is 1.5.1 (This is what Synaptic offered to me). I want to
write the entire document in Persian/Arabic. I followed exactly LyX's
official wiki for Arabic language. (Instructions for Persian were
incomplete.) I followed instructions for configuring Arabic in linux using
ArabTeX (I made bind file, etc). I can see some outputs, though very buggy.
But I cannot extend it to Persian (Farsi). What I really want is Persian,
not Arabic. Thanks again.

Related wiki pages can be found here:
http://wiki.lyx.org/Windows/Arabic
http://wiki.lyx.org/Windows/Farsi



Dov Feldstern wrote:
 
 
 Hi!
 
 Could you please provide a more information: specifically, what version 
 of LyX are you using? What is your default language set to, what is the 
 language of the current document? And what exactly are you trying to do: 
 write the entire document in Farsi/Arabic, just insert a word here or 
 there in an otherwise english document, or what?
 
 Dov
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Configuring-LyX-for-Arabic-or-Persian-tf4883614.html#a14157218
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Configuring LyX for Arabic or Persian

2007-12-04 Thread amp3030

My LyX version is 1.5.1 (This is what Synaptic offered to me). I want to
write the entire document in Persian/Arabic. I followed exactly LyX's
official wiki for Arabic language. (Instructions for Persian were
incomplete.) I followed instructions for configuring Arabic in linux using
ArabTeX (I made bind file, etc). I can see some outputs, though very buggy.
But I cannot extend it to Persian (Farsi). What I really want is Persian,
not Arabic. Thanks again.

Related wiki pages can be found here:
http://wiki.lyx.org/Windows/Arabic
http://wiki.lyx.org/Windows/Farsi



Dov Feldstern wrote:
> 
> 
> Hi!
> 
> Could you please provide a more information: specifically, what version 
> of LyX are you using? What is your default language set to, what is the 
> language of the current document? And what exactly are you trying to do: 
> write the entire document in Farsi/Arabic, just insert a word here or 
> there in an otherwise english document, or what?
> 
> Dov
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Configuring-LyX-for-Arabic-or-Persian-tf4883614.html#a14157218
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: Configuring LyX for Arabic or Persian

2007-12-01 Thread Dov Feldstern

amp3030 wrote:

Hi all,

I am trying to configure LyX to write in Persian (Farsi) or Arabic, but I
cannot do that. I have installed lyx on my ubuntu 7.10 system using
Synaptic. I have also installed texlive-lang-arab, texlive-extra-utils and
texlive-xetex packages.
I followed instructions of the official LyX wiki page carefully, but nothing
is gonna working.

When I use Farsi/Arabic (Arabi) as the language, an error message says: You
haven't defined the languafe farsi/arabic yet.

Can anyone help to resolve this?

Thanks in advance,
Masoud.


Hi!

Could you please provide a more information: specifically, what version 
of LyX are you using? What is your default language set to, what is the 
language of the current document? And what exactly are you trying to do: 
write the entire document in Farsi/Arabic, just insert a word here or 
there in an otherwise english document, or what?


Dov



Re: Configuring LyX for Arabic or Persian

2007-12-01 Thread Dov Feldstern

amp3030 wrote:

Hi all,

I am trying to configure LyX to write in Persian (Farsi) or Arabic, but I
cannot do that. I have installed lyx on my ubuntu 7.10 system using
Synaptic. I have also installed texlive-lang-arab, texlive-extra-utils and
texlive-xetex packages.
I followed instructions of the official LyX wiki page carefully, but nothing
is gonna working.

When I use Farsi/Arabic (Arabi) as the language, an error message says: You
haven't defined the languafe farsi/arabic yet.

Can anyone help to resolve this?

Thanks in advance,
Masoud.


Hi!

Could you please provide a more information: specifically, what version 
of LyX are you using? What is your default language set to, what is the 
language of the current document? And what exactly are you trying to do: 
write the entire document in Farsi/Arabic, just insert a word here or 
there in an otherwise english document, or what?


Dov



Re: Configuring LyX for Arabic or Persian

2007-12-01 Thread Dov Feldstern

amp3030 wrote:

Hi all,

I am trying to configure LyX to write in Persian (Farsi) or Arabic, but I
cannot do that. I have installed lyx on my ubuntu 7.10 system using
Synaptic. I have also installed texlive-lang-arab, texlive-extra-utils and
texlive-xetex packages.
I followed instructions of the official LyX wiki page carefully, but nothing
is gonna working.

When I use Farsi/Arabic (Arabi) as the language, an error message says: You
haven't defined the languafe farsi/arabic yet.

Can anyone help to resolve this?

Thanks in advance,
Masoud.


Hi!

Could you please provide a more information: specifically, what version 
of LyX are you using? What is your default language set to, what is the 
language of the current document? And what exactly are you trying to do: 
write the entire document in Farsi/Arabic, just insert a word here or 
there in an otherwise english document, or what?


Dov



Configuring LyX for Arabic or Persian

2007-11-27 Thread amp3030

Hi all,

I am trying to configure LyX to write in Persian (Farsi) or Arabic, but I
cannot do that. I have installed lyx on my ubuntu 7.10 system using
Synaptic. I have also installed texlive-lang-arab, texlive-extra-utils and
texlive-xetex packages.
I followed instructions of the official LyX wiki page carefully, but nothing
is gonna working.

When I use Farsi/Arabic (Arabi) as the language, an error message says: You
haven't defined the languafe farsi/arabic yet.

Can anyone help to resolve this?

Thanks in advance,
Masoud.
-- 
View this message in context: 
http://www.nabble.com/Configuring-LyX-for-Arabic-or-Persian-tf4883614.html#a13976894
Sent from the LyX - Users mailing list archive at Nabble.com.



Configuring LyX for Arabic or Persian

2007-11-27 Thread amp3030

Hi all,

I am trying to configure LyX to write in Persian (Farsi) or Arabic, but I
cannot do that. I have installed lyx on my ubuntu 7.10 system using
Synaptic. I have also installed texlive-lang-arab, texlive-extra-utils and
texlive-xetex packages.
I followed instructions of the official LyX wiki page carefully, but nothing
is gonna working.

When I use Farsi/Arabic (Arabi) as the language, an error message says: You
haven't defined the languafe farsi/arabic yet.

Can anyone help to resolve this?

Thanks in advance,
Masoud.
-- 
View this message in context: 
http://www.nabble.com/Configuring-LyX-for-Arabic-or-Persian-tf4883614.html#a13976894
Sent from the LyX - Users mailing list archive at Nabble.com.



Configuring LyX for Arabic or Persian

2007-11-27 Thread amp3030

Hi all,

I am trying to configure LyX to write in Persian (Farsi) or Arabic, but I
cannot do that. I have installed lyx on my ubuntu 7.10 system using
Synaptic. I have also installed texlive-lang-arab, texlive-extra-utils and
texlive-xetex packages.
I followed instructions of the official LyX wiki page carefully, but nothing
is gonna working.

When I use Farsi/Arabic (Arabi) as the language, an error message says: You
haven't defined the languafe farsi/arabic yet.

Can anyone help to resolve this?

Thanks in advance,
Masoud.
-- 
View this message in context: 
http://www.nabble.com/Configuring-LyX-for-Arabic-or-Persian-tf4883614.html#a13976894
Sent from the LyX - Users mailing list archive at Nabble.com.



Re: configuring lyx 1.3.3 win32

2004-03-16 Thread Lux
Milos Komarcevic mk329 at cam.ac.uk writes:

   field. Usage: C:\proggies\lyx\bin\sed.exe [OPTION]...
   {script-only-if-no-other-script}
   [input-file]...
  
  -n, --quiet, --silent
 suppress automatic printing of pattern space
  -e script, --expression=script
 add the script to the commands to be executed
  -f script-file, --file=script-file
 add the contents of script-file to the commands to
 be
   executed

(snip)

Had exactly the same problem and output using sed 4.0.9.  So I deleted it
and renamed oldsed.exe to sed.exe.  Now /lyx/share/lyx/configure completes
without errors.  But I still cannot preview lyx files with dvi or pdf.  See
other post.

Greetings,

Lux





Re: configuring lyx 1.3.3 win32

2004-03-16 Thread Lux
Milos Komarcevic mk329 at cam.ac.uk writes:

   field. Usage: C:\proggies\lyx\bin\sed.exe [OPTION]...
   {script-only-if-no-other-script}
   [input-file]...
  
  -n, --quiet, --silent
 suppress automatic printing of pattern space
  -e script, --expression=script
 add the script to the commands to be executed
  -f script-file, --file=script-file
 add the contents of script-file to the commands to
 be
   executed

(snip)

Had exactly the same problem and output using sed 4.0.9.  So I deleted it
and renamed oldsed.exe to sed.exe.  Now /lyx/share/lyx/configure completes
without errors.  But I still cannot preview lyx files with dvi or pdf.  See
other post.

Greetings,

Lux





Re: configuring lyx 1.3.3 win32

2004-03-16 Thread Lux
Milos Komarcevic  cam.ac.uk> writes:

> > > field. Usage: C:\proggies\lyx\bin\sed.exe [OPTION]...
> > > {script-only-if-no-other-script}
> > > [input-file]...
> > >
> > >-n, --quiet, --silent
> > >   suppress automatic printing of pattern space
> > >-e script, --expression=script
> > >   add the script to the commands to be executed
> > >-f script-file, --file=script-file
> > >   add the contents of script-file to the commands to
> > >   be
> > > executed

(snip)

Had exactly the same problem and output using sed 4.0.9.  So I deleted it
and renamed oldsed.exe to sed.exe.  Now /lyx/share/lyx/configure completes
without errors.  But I still cannot preview lyx files with dvi or pdf.  See
other post.

Greetings,

Lux





Re: configuring lyx 1.3.3 win32

2004-03-15 Thread Paul A. Rubin
[posted and mailed]

Vivek Sharma [EMAIL PROTECTED] wrote in
news:[EMAIL PROTECTED]: 

 I tried to follow the recommendations on the list re configuring
 ruurd's lyx 1.3.3 native win32 port.
 In particular
 1. the installation in c:\proggies.
 2. changing the path to include the lyx.exe is in the path
 3. installing and replacing the sed application in lyx\bin by the
 latest GNU sed 4.0.7
 4.configure does not work and the following is the output in the log
 file. 
 
 Further if I try to use lyx it works OK except when using the memoir 
 classes when lyx.exe crashes, the same behaviour is noted in the
 cygwin port 1.3.1
 
 I use Win XP professional
 
 Any help from the experts is appreciated.
 
 kind regards
 
 Vivek
 
 
 
 
 C:/proggies/lyx/share/lyx/configure
 \proggies\lyx\share\lyx\..\..\bin;C:\proggies\lyx\bin\;c:\program 
 files\imagemag
 ick-5.5.6-q16;C:\Perl\bin\;C:\texmf\miktex\bin;C:\WINDOWS\system32;C:\W
 INDOWS;C: \WINDOWS\system32\WBEM;C:\Program Files\ATI Technologies\ATI
 Control Panel;C:\Pr
 ogram Files\Common Files\Adaptec 
 Shared\System;C:\cygwin;c:\localtexmf;C:\cygwin
 \bin;C:\Program Files\j2sdk_nb\j2sdk1.4.2\bin
 Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
 {script-only-if-no-other-script}
 [input-file]...
 
-n, --quiet, --silent
   suppress automatic printing of pattern space
-e script, --expression=script
   add the script to the commands to be executed
-f script-file, --file=script-file
   add the contents of script-file to the commands to
   be 
 executed
-i[suffix], --in-place[=suffix]
   edit files in place (makes backup if extension
   supplied) 
-l N, --line-length=N
   specify the desired line-wrap length for the `l'
   command 
-r, --regexp-extended
   use extended regular expressions in the script.
-s, --separate
   consider files as separate rather than as a single 
 continuous
   long stream.
-u, --unbuffered
   load minimal amounts of data from the input files
   and 
 flush
   the output buffers more often
--help display this help and exit
-V, --version  output version information and exit
 
 If no -e, --expression, -f, or --file option is given, then the first
 non-option argument is taken as the sed script to interpret.  All
 remaining arguments are names of input files; if no input files are
 specified, then the standard input is read.
 
 E-mail bug reports to: [EMAIL PROTECTED] .
 Be sure to include the word ``sed'' somewhere in the ``Subject:''
 field. Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
 {script-only-if-no-other-script}
 [input-file]...
 
-n, --quiet, --silent
   suppress automatic printing of pattern space
-e script, --expression=script
   add the script to the commands to be executed
-f script-file, --file=script-file
   add the contents of script-file to the commands to
   be 
 executed
-i[suffix], --in-place[=suffix]
   edit files in place (makes backup if extension
   supplied) 
-l N, --line-length=N
   specify the desired line-wrap length for the `l'
   command 
-r, --regexp-extended
   use extended regular expressions in the script.
-s, --separate
   consider files as separate rather than as a single 
 continuous
   long stream.
-u, --unbuffered
   load minimal amounts of data from the input files
   and 
 flush
   the output buffers more often
--help display this help and exit
-V, --version  output version information and exit
 
 If no -e, --expression, -f, or --file option is given, then the first
 non-option argument is taken as the sed script to interpret.  All
 remaining arguments are names of input files; if no input files are
 specified, then the standard input is read.
 
 E-mail bug reports to: [EMAIL PROTECTED] .
 Be sure to include the word ``sed'' somewhere in the ``Subject:''
 field. Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
 {script-only-if-no-other-script}
 [input-file]...
 
-n, --quiet, --silent
   suppress automatic printing of pattern space
-e script, --expression=script
   add the script to the commands to be executed
-f script-file, --file=script-file
   add the contents of script-file to the commands to
   be 
 executed
-i[suffix], --in-place[=suffix]
   edit files in place (makes backup if extension
   supplied) 
-l N, --line-length=N
   specify the desired line-wrap length for the `l'
   command 
-r, --regexp-extended

Re: configuring lyx 1.3.3 win32

2004-03-15 Thread Paul A. Rubin
[posted and mailed]

Vivek Sharma [EMAIL PROTECTED] wrote in
news:[EMAIL PROTECTED]: 

 I tried to follow the recommendations on the list re configuring
 ruurd's lyx 1.3.3 native win32 port.
 In particular
 1. the installation in c:\proggies.
 2. changing the path to include the lyx.exe is in the path
 3. installing and replacing the sed application in lyx\bin by the
 latest GNU sed 4.0.7
 4.configure does not work and the following is the output in the log
 file. 
 
 Further if I try to use lyx it works OK except when using the memoir 
 classes when lyx.exe crashes, the same behaviour is noted in the
 cygwin port 1.3.1
 
 I use Win XP professional
 
 Any help from the experts is appreciated.
 
 kind regards
 
 Vivek
 
 
 
 
 C:/proggies/lyx/share/lyx/configure
 \proggies\lyx\share\lyx\..\..\bin;C:\proggies\lyx\bin\;c:\program 
 files\imagemag
 ick-5.5.6-q16;C:\Perl\bin\;C:\texmf\miktex\bin;C:\WINDOWS\system32;C:\W
 INDOWS;C: \WINDOWS\system32\WBEM;C:\Program Files\ATI Technologies\ATI
 Control Panel;C:\Pr
 ogram Files\Common Files\Adaptec 
 Shared\System;C:\cygwin;c:\localtexmf;C:\cygwin
 \bin;C:\Program Files\j2sdk_nb\j2sdk1.4.2\bin
 Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
 {script-only-if-no-other-script}
 [input-file]...
 
-n, --quiet, --silent
   suppress automatic printing of pattern space
-e script, --expression=script
   add the script to the commands to be executed
-f script-file, --file=script-file
   add the contents of script-file to the commands to
   be 
 executed
-i[suffix], --in-place[=suffix]
   edit files in place (makes backup if extension
   supplied) 
-l N, --line-length=N
   specify the desired line-wrap length for the `l'
   command 
-r, --regexp-extended
   use extended regular expressions in the script.
-s, --separate
   consider files as separate rather than as a single 
 continuous
   long stream.
-u, --unbuffered
   load minimal amounts of data from the input files
   and 
 flush
   the output buffers more often
--help display this help and exit
-V, --version  output version information and exit
 
 If no -e, --expression, -f, or --file option is given, then the first
 non-option argument is taken as the sed script to interpret.  All
 remaining arguments are names of input files; if no input files are
 specified, then the standard input is read.
 
 E-mail bug reports to: [EMAIL PROTECTED] .
 Be sure to include the word ``sed'' somewhere in the ``Subject:''
 field. Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
 {script-only-if-no-other-script}
 [input-file]...
 
-n, --quiet, --silent
   suppress automatic printing of pattern space
-e script, --expression=script
   add the script to the commands to be executed
-f script-file, --file=script-file
   add the contents of script-file to the commands to
   be 
 executed
-i[suffix], --in-place[=suffix]
   edit files in place (makes backup if extension
   supplied) 
-l N, --line-length=N
   specify the desired line-wrap length for the `l'
   command 
-r, --regexp-extended
   use extended regular expressions in the script.
-s, --separate
   consider files as separate rather than as a single 
 continuous
   long stream.
-u, --unbuffered
   load minimal amounts of data from the input files
   and 
 flush
   the output buffers more often
--help display this help and exit
-V, --version  output version information and exit
 
 If no -e, --expression, -f, or --file option is given, then the first
 non-option argument is taken as the sed script to interpret.  All
 remaining arguments are names of input files; if no input files are
 specified, then the standard input is read.
 
 E-mail bug reports to: [EMAIL PROTECTED] .
 Be sure to include the word ``sed'' somewhere in the ``Subject:''
 field. Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
 {script-only-if-no-other-script}
 [input-file]...
 
-n, --quiet, --silent
   suppress automatic printing of pattern space
-e script, --expression=script
   add the script to the commands to be executed
-f script-file, --file=script-file
   add the contents of script-file to the commands to
   be 
 executed
-i[suffix], --in-place[=suffix]
   edit files in place (makes backup if extension
   supplied) 
-l N, --line-length=N
   specify the desired line-wrap length for the `l'
   command 
-r, --regexp-extended

Re: configuring lyx 1.3.3 win32

2004-03-15 Thread Paul A. Rubin
[posted and mailed]

Vivek Sharma <[EMAIL PROTECTED]> wrote in
news:[EMAIL PROTECTED]: 

> I tried to follow the recommendations on the list re configuring
> ruurd's lyx 1.3.3 native win32 port.
> In particular
> 1. the installation in c:\proggies.
> 2. changing the path to include the lyx.exe is in the path
> 3. installing and replacing the sed application in lyx\bin by the
> latest GNU sed 4.0.7
> 4.configure does not work and the following is the output in the log
> file. 
> 
> Further if I try to use lyx it works OK except when using the memoir 
> classes when lyx.exe crashes, the same behaviour is noted in the
> cygwin port 1.3.1
> 
> I use Win XP professional
> 
> Any help from the experts is appreciated.
> 
> kind regards
> 
> Vivek
> 
> 
> 
> 
> C:/proggies/lyx/share/lyx/configure
> \proggies\lyx\share\lyx\..\..\bin;C:\proggies\lyx\bin\;c:\program 
> files\imagemag
> ick-5.5.6-q16;C:\Perl\bin\;C:\texmf\miktex\bin;C:\WINDOWS\system32;C:\W
> INDOWS;C: \WINDOWS\system32\WBEM;C:\Program Files\ATI Technologies\ATI
> Control Panel;C:\Pr
> ogram Files\Common Files\Adaptec 
> Shared\System;C:\cygwin;c:\localtexmf;C:\cygwin
> \bin;C:\Program Files\j2sdk_nb\j2sdk1.4.2\bin
> Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
> {script-only-if-no-other-script}
> [input-file]...
> 
>-n, --quiet, --silent
>   suppress automatic printing of pattern space
>-e script, --expression=script
>   add the script to the commands to be executed
>-f script-file, --file=script-file
>   add the contents of script-file to the commands to
>   be 
> executed
>-i[suffix], --in-place[=suffix]
>   edit files in place (makes backup if extension
>   supplied) 
>-l N, --line-length=N
>   specify the desired line-wrap length for the `l'
>   command 
>-r, --regexp-extended
>   use extended regular expressions in the script.
>-s, --separate
>   consider files as separate rather than as a single 
> continuous
>   long stream.
>-u, --unbuffered
>   load minimal amounts of data from the input files
>   and 
> flush
>   the output buffers more often
>--help display this help and exit
>-V, --version  output version information and exit
> 
> If no -e, --expression, -f, or --file option is given, then the first
> non-option argument is taken as the sed script to interpret.  All
> remaining arguments are names of input files; if no input files are
> specified, then the standard input is read.
> 
> E-mail bug reports to: [EMAIL PROTECTED] .
> Be sure to include the word ``sed'' somewhere in the ``Subject:''
> field. Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
> {script-only-if-no-other-script}
> [input-file]...
> 
>-n, --quiet, --silent
>   suppress automatic printing of pattern space
>-e script, --expression=script
>   add the script to the commands to be executed
>-f script-file, --file=script-file
>   add the contents of script-file to the commands to
>   be 
> executed
>-i[suffix], --in-place[=suffix]
>   edit files in place (makes backup if extension
>   supplied) 
>-l N, --line-length=N
>   specify the desired line-wrap length for the `l'
>   command 
>-r, --regexp-extended
>   use extended regular expressions in the script.
>-s, --separate
>   consider files as separate rather than as a single 
> continuous
>   long stream.
>-u, --unbuffered
>   load minimal amounts of data from the input files
>   and 
> flush
>   the output buffers more often
>--help display this help and exit
>-V, --version  output version information and exit
> 
> If no -e, --expression, -f, or --file option is given, then the first
> non-option argument is taken as the sed script to interpret.  All
> remaining arguments are names of input files; if no input files are
> specified, then the standard input is read.
> 
> E-mail bug reports to: [EMAIL PROTECTED] .
> Be sure to include the word ``sed'' somewhere in the ``Subject:''
> field. Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
> {script-only-if-no-other-script}
> [input-file]...
> 
>-n, --quiet, --silent
>   suppress automatic printing of pattern space
>-e script, --expression=script
>   add the script to the commands to be executed
>-f script-file, --file=script-file
>   add the contents of script-file to the commands to
>   be 
> executed
>-i[suffix], --in-place[=suffix]
>   edit files in place (makes backup if extension
>   supplied) 
>-l N, --line-length=N
>   

configuring lyx 1.3.3 win32

2004-03-13 Thread Vivek Sharma
I tried to follow the recommendations on the list re configuring ruurd's 
lyx 1.3.3 native win32 port.
In particular
1. the installation in c:\proggies.
2. changing the path to include the lyx.exe is in the path
3. installing and replacing the sed application in lyx\bin by the latest 
GNU sed 4.0.7
4.configure does not work and the following is the output in the log file.

Further if I try to use lyx it works OK except when using the memoir 
classes when lyx.exe crashes, the same behaviour is noted in the cygwin 
port 1.3.1

I use Win XP professional

Any help from the experts is appreciated.

kind regards

Vivek



C:/proggies/lyx/share/lyx/configure
\proggies\lyx\share\lyx\..\..\bin;C:\proggies\lyx\bin\;c:\program 
files\imagemag
ick-5.5.6-q16;C:\Perl\bin\;C:\texmf\miktex\bin;C:\WINDOWS\system32;C:\WINDOWS;C:
\WINDOWS\system32\WBEM;C:\Program Files\ATI Technologies\ATI Control 
Panel;C:\Pr
ogram Files\Common Files\Adaptec 
Shared\System;C:\cygwin;c:\localtexmf;C:\cygwin
\bin;C:\Program Files\j2sdk_nb\j2sdk1.4.2\bin
Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
{script-only-if-no-other-script}
[input-file]...

  -n, --quiet, --silent
 suppress automatic printing of pattern space
  -e script, --expression=script
 add the script to the commands to be executed
  -f script-file, --file=script-file
 add the contents of script-file to the commands to be 
executed
  -i[suffix], --in-place[=suffix]
 edit files in place (makes backup if extension supplied)
  -l N, --line-length=N
 specify the desired line-wrap length for the `l' command
  -r, --regexp-extended
 use extended regular expressions in the script.
  -s, --separate
 consider files as separate rather than as a single 
continuous
 long stream.
  -u, --unbuffered
 load minimal amounts of data from the input files and 
flush
 the output buffers more often
  --help display this help and exit
  -V, --version  output version information and exit

If no -e, --expression, -f, or --file option is given, then the first
non-option argument is taken as the sed script to interpret.  All
remaining arguments are names of input files; if no input files are
specified, then the standard input is read.
E-mail bug reports to: [EMAIL PROTECTED] .
Be sure to include the word ``sed'' somewhere in the ``Subject:'' field.
Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
{script-only-if-no-other-script}
[input-file]...

  -n, --quiet, --silent
 suppress automatic printing of pattern space
  -e script, --expression=script
 add the script to the commands to be executed
  -f script-file, --file=script-file
 add the contents of script-file to the commands to be 
executed
  -i[suffix], --in-place[=suffix]
 edit files in place (makes backup if extension supplied)
  -l N, --line-length=N
 specify the desired line-wrap length for the `l' command
  -r, --regexp-extended
 use extended regular expressions in the script.
  -s, --separate
 consider files as separate rather than as a single 
continuous
 long stream.
  -u, --unbuffered
 load minimal amounts of data from the input files and 
flush
 the output buffers more often
  --help display this help and exit
  -V, --version  output version information and exit

If no -e, --expression, -f, or --file option is given, then the first
non-option argument is taken as the sed script to interpret.  All
remaining arguments are names of input files; if no input files are
specified, then the standard input is read.
E-mail bug reports to: [EMAIL PROTECTED] .
Be sure to include the word ``sed'' somewhere in the ``Subject:'' field.
Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
{script-only-if-no-other-script}
[input-file]...

  -n, --quiet, --silent
 suppress automatic printing of pattern space
  -e script, --expression=script
 add the script to the commands to be executed
  -f script-file, --file=script-file
 add the contents of script-file to the commands to be 
executed
  -i[suffix], --in-place[=suffix]
 edit files in place (makes backup if extension supplied)
  -l N, --line-length=N
 specify the desired line-wrap length for the `l' command
  -r, --regexp-extended
 use extended regular expressions in the script.
  -s, --separate
 consider files as separate rather than as a single 
continuous
 long stream.
  -u, --unbuffered
 load minimal amounts of data from the input files and 
flush
 the output buffers more often
  --help display this help and exit
  -V, --version  output version information and exit

If no -e, --expression, -f, or --file option is 

configuring lyx 1.3.3 win32

2004-03-13 Thread Vivek Sharma
I tried to follow the recommendations on the list re configuring ruurd's 
lyx 1.3.3 native win32 port.
In particular
1. the installation in c:\proggies.
2. changing the path to include the lyx.exe is in the path
3. installing and replacing the sed application in lyx\bin by the latest 
GNU sed 4.0.7
4.configure does not work and the following is the output in the log file.

Further if I try to use lyx it works OK except when using the memoir 
classes when lyx.exe crashes, the same behaviour is noted in the cygwin 
port 1.3.1

I use Win XP professional

Any help from the experts is appreciated.

kind regards

Vivek



C:/proggies/lyx/share/lyx/configure
\proggies\lyx\share\lyx\..\..\bin;C:\proggies\lyx\bin\;c:\program 
files\imagemag
ick-5.5.6-q16;C:\Perl\bin\;C:\texmf\miktex\bin;C:\WINDOWS\system32;C:\WINDOWS;C:
\WINDOWS\system32\WBEM;C:\Program Files\ATI Technologies\ATI Control 
Panel;C:\Pr
ogram Files\Common Files\Adaptec 
Shared\System;C:\cygwin;c:\localtexmf;C:\cygwin
\bin;C:\Program Files\j2sdk_nb\j2sdk1.4.2\bin
Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
{script-only-if-no-other-script}
[input-file]...

  -n, --quiet, --silent
 suppress automatic printing of pattern space
  -e script, --expression=script
 add the script to the commands to be executed
  -f script-file, --file=script-file
 add the contents of script-file to the commands to be 
executed
  -i[suffix], --in-place[=suffix]
 edit files in place (makes backup if extension supplied)
  -l N, --line-length=N
 specify the desired line-wrap length for the `l' command
  -r, --regexp-extended
 use extended regular expressions in the script.
  -s, --separate
 consider files as separate rather than as a single 
continuous
 long stream.
  -u, --unbuffered
 load minimal amounts of data from the input files and 
flush
 the output buffers more often
  --help display this help and exit
  -V, --version  output version information and exit

If no -e, --expression, -f, or --file option is given, then the first
non-option argument is taken as the sed script to interpret.  All
remaining arguments are names of input files; if no input files are
specified, then the standard input is read.
E-mail bug reports to: [EMAIL PROTECTED] .
Be sure to include the word ``sed'' somewhere in the ``Subject:'' field.
Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
{script-only-if-no-other-script}
[input-file]...

  -n, --quiet, --silent
 suppress automatic printing of pattern space
  -e script, --expression=script
 add the script to the commands to be executed
  -f script-file, --file=script-file
 add the contents of script-file to the commands to be 
executed
  -i[suffix], --in-place[=suffix]
 edit files in place (makes backup if extension supplied)
  -l N, --line-length=N
 specify the desired line-wrap length for the `l' command
  -r, --regexp-extended
 use extended regular expressions in the script.
  -s, --separate
 consider files as separate rather than as a single 
continuous
 long stream.
  -u, --unbuffered
 load minimal amounts of data from the input files and 
flush
 the output buffers more often
  --help display this help and exit
  -V, --version  output version information and exit

If no -e, --expression, -f, or --file option is given, then the first
non-option argument is taken as the sed script to interpret.  All
remaining arguments are names of input files; if no input files are
specified, then the standard input is read.
E-mail bug reports to: [EMAIL PROTECTED] .
Be sure to include the word ``sed'' somewhere in the ``Subject:'' field.
Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
{script-only-if-no-other-script}
[input-file]...

  -n, --quiet, --silent
 suppress automatic printing of pattern space
  -e script, --expression=script
 add the script to the commands to be executed
  -f script-file, --file=script-file
 add the contents of script-file to the commands to be 
executed
  -i[suffix], --in-place[=suffix]
 edit files in place (makes backup if extension supplied)
  -l N, --line-length=N
 specify the desired line-wrap length for the `l' command
  -r, --regexp-extended
 use extended regular expressions in the script.
  -s, --separate
 consider files as separate rather than as a single 
continuous
 long stream.
  -u, --unbuffered
 load minimal amounts of data from the input files and 
flush
 the output buffers more often
  --help display this help and exit
  -V, --version  output version information and exit

If no -e, --expression, -f, or --file option is 

configuring lyx 1.3.3 win32

2004-03-13 Thread Vivek Sharma
I tried to follow the recommendations on the list re configuring ruurd's 
lyx 1.3.3 native win32 port.
In particular
1. the installation in c:\proggies.
2. changing the path to include the lyx.exe is in the path
3. installing and replacing the sed application in lyx\bin by the latest 
GNU sed 4.0.7
4.configure does not work and the following is the output in the log file.

Further if I try to use lyx it works OK except when using the memoir 
classes when lyx.exe crashes, the same behaviour is noted in the cygwin 
port 1.3.1

I use Win XP professional

Any help from the experts is appreciated.

kind regards

Vivek



C:/proggies/lyx/share/lyx/configure
\proggies\lyx\share\lyx\..\..\bin;C:\proggies\lyx\bin\;c:\program 
files\imagemag
ick-5.5.6-q16;C:\Perl\bin\;C:\texmf\miktex\bin;C:\WINDOWS\system32;C:\WINDOWS;C:
\WINDOWS\system32\WBEM;C:\Program Files\ATI Technologies\ATI Control 
Panel;C:\Pr
ogram Files\Common Files\Adaptec 
Shared\System;C:\cygwin;c:\localtexmf;C:\cygwin
\bin;C:\Program Files\j2sdk_nb\j2sdk1.4.2\bin
Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
{script-only-if-no-other-script}
[input-file]...

  -n, --quiet, --silent
 suppress automatic printing of pattern space
  -e script, --expression=script
 add the script to the commands to be executed
  -f script-file, --file=script-file
 add the contents of script-file to the commands to be 
executed
  -i[suffix], --in-place[=suffix]
 edit files in place (makes backup if extension supplied)
  -l N, --line-length=N
 specify the desired line-wrap length for the `l' command
  -r, --regexp-extended
 use extended regular expressions in the script.
  -s, --separate
 consider files as separate rather than as a single 
continuous
 long stream.
  -u, --unbuffered
 load minimal amounts of data from the input files and 
flush
 the output buffers more often
  --help display this help and exit
  -V, --version  output version information and exit

If no -e, --expression, -f, or --file option is given, then the first
non-option argument is taken as the sed script to interpret.  All
remaining arguments are names of input files; if no input files are
specified, then the standard input is read.
E-mail bug reports to: [EMAIL PROTECTED] .
Be sure to include the word ``sed'' somewhere in the ``Subject:'' field.
Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
{script-only-if-no-other-script}
[input-file]...

  -n, --quiet, --silent
 suppress automatic printing of pattern space
  -e script, --expression=script
 add the script to the commands to be executed
  -f script-file, --file=script-file
 add the contents of script-file to the commands to be 
executed
  -i[suffix], --in-place[=suffix]
 edit files in place (makes backup if extension supplied)
  -l N, --line-length=N
 specify the desired line-wrap length for the `l' command
  -r, --regexp-extended
 use extended regular expressions in the script.
  -s, --separate
 consider files as separate rather than as a single 
continuous
 long stream.
  -u, --unbuffered
 load minimal amounts of data from the input files and 
flush
 the output buffers more often
  --help display this help and exit
  -V, --version  output version information and exit

If no -e, --expression, -f, or --file option is given, then the first
non-option argument is taken as the sed script to interpret.  All
remaining arguments are names of input files; if no input files are
specified, then the standard input is read.
E-mail bug reports to: [EMAIL PROTECTED] .
Be sure to include the word ``sed'' somewhere in the ``Subject:'' field.
Usage: C:\proggies\lyx\bin\sed.exe [OPTION]... 
{script-only-if-no-other-script}
[input-file]...

  -n, --quiet, --silent
 suppress automatic printing of pattern space
  -e script, --expression=script
 add the script to the commands to be executed
  -f script-file, --file=script-file
 add the contents of script-file to the commands to be 
executed
  -i[suffix], --in-place[=suffix]
 edit files in place (makes backup if extension supplied)
  -l N, --line-length=N
 specify the desired line-wrap length for the `l' command
  -r, --regexp-extended
 use extended regular expressions in the script.
  -s, --separate
 consider files as separate rather than as a single 
continuous
 long stream.
  -u, --unbuffered
 load minimal amounts of data from the input files and 
flush
 the output buffers more often
  --help display this help and exit
  -V, --version  output version information and exit

If no -e, --expression, -f, or --file option is 

Re: configuring Lyx in Darwin

2001-06-18 Thread Jean-Marc Lasgouttes

 Tomoharu == Tomoharu Nishino [EMAIL PROTECTED] writes:

Tomoharu I finally managed to get xfree86 and Lyx compiled and
Tomoharu running rootless in MacOSX/Darwin. And Lyx runs, but I have
Tomoharu run into one major problem -- lyx cannot seem to locate the
Tomoharu latex/pdflatex that is installed. I have a standard teTeX
Tomoharu distribution installed, and other TeX programs (e.g.
Tomoharu TeXShop) seem to see it fine. However, in the preferences
Tomoharu panel in Lyx under Converters, there is no command specified
Tomoharu for Lyx-DVI or Lyx-PDF.

Tomoharu Running reconfigure from the edit menu results in:

Tomoharu checking for a LaTeX2e program... (latex latex2e) +checking
Tomoharu for latex... not useable +checking for latex2e... not
Tomoharu useable checking for the pdflatex program... (pdflatex)
Tomoharu +checking for pdflatex... not useable checking for a LaTeX
Tomoharu - LyX converter... (reLyX) +checking for reLyX... yes

I think that lib/configure sees latex and friends, but decides that
they do not work. A reason for this may be that latex does not work as
root. Did you try to run EditReconfigure as a normal user?

JMarc



Re: configuring Lyx in Darwin

2001-06-18 Thread Jean-Marc Lasgouttes

 Tomoharu == Tomoharu Nishino [EMAIL PROTECTED] writes:

Tomoharu I finally managed to get xfree86 and Lyx compiled and
Tomoharu running rootless in MacOSX/Darwin. And Lyx runs, but I have
Tomoharu run into one major problem -- lyx cannot seem to locate the
Tomoharu latex/pdflatex that is installed. I have a standard teTeX
Tomoharu distribution installed, and other TeX programs (e.g.
Tomoharu TeXShop) seem to see it fine. However, in the preferences
Tomoharu panel in Lyx under Converters, there is no command specified
Tomoharu for Lyx-DVI or Lyx-PDF.

Tomoharu Running reconfigure from the edit menu results in:

Tomoharu checking for a LaTeX2e program... (latex latex2e) +checking
Tomoharu for latex... not useable +checking for latex2e... not
Tomoharu useable checking for the pdflatex program... (pdflatex)
Tomoharu +checking for pdflatex... not useable checking for a LaTeX
Tomoharu - LyX converter... (reLyX) +checking for reLyX... yes

I think that lib/configure sees latex and friends, but decides that
they do not work. A reason for this may be that latex does not work as
root. Did you try to run EditReconfigure as a normal user?

JMarc



Re: configuring Lyx in Darwin

2001-06-18 Thread Jean-Marc Lasgouttes

> "Tomoharu" == Tomoharu Nishino <[EMAIL PROTECTED]> writes:

Tomoharu> I finally managed to get xfree86 and Lyx compiled and
Tomoharu> running rootless in MacOSX/Darwin. And Lyx runs, but I have
Tomoharu> run into one major problem -- lyx cannot seem to locate the
Tomoharu> latex/pdflatex that is installed. I have a standard teTeX
Tomoharu> distribution installed, and other TeX programs (e.g.
Tomoharu> TeXShop) seem to see it fine. However, in the preferences
Tomoharu> panel in Lyx under Converters, there is no command specified
Tomoharu> for Lyx->DVI or Lyx->PDF.

Tomoharu> Running reconfigure from the edit menu results in:

Tomoharu> checking for a LaTeX2e program... (latex latex2e) +checking
Tomoharu> for "latex"... not useable +checking for "latex2e"... not
Tomoharu> useable checking for the pdflatex program... (pdflatex)
Tomoharu> +checking for "pdflatex"... not useable checking for a LaTeX
Tomoharu> -> LyX converter... (reLyX) +checking for "reLyX"... yes

I think that lib/configure sees latex and friends, but decides that
they do not work. A reason for this may be that latex does not work as
root. Did you try to run Edit>Reconfigure as a normal user?

JMarc



configuring Lyx in Darwin

2001-06-17 Thread Tomoharu Nishino

I finally managed to get xfree86 and Lyx compiled and running rootless in
MacOSX/Darwin.  And Lyx runs, but I have run into one major problem --
lyx cannot seem to locate the latex/pdflatex that is installed.  I have a
standard teTeX distribution installed, and other TeX programs (e.g.
TeXShop) seem to see it fine.  However, in the preferences panel in Lyx
under Converters, there is no command specified for Lyx-DVI or Lyx-PDF.

Running reconfigure from the edit menu results in:

checking for a LaTeX2e program... (latex latex2e)
+checking for latex... not useable
+checking for latex2e... not useable
checking for the pdflatex program... (pdflatex)
+checking for pdflatex... not useable
checking for a LaTeX - LyX converter... (reLyX)
+checking for reLyX... yes

..

checking for a DVI previewer... (xdvi)
+checking for xdvi... no

..

So, I am guessing that for some reason Lyx is not seeing the teTeX
installation.  Is there any way to force the search path on Lyx?  How
does one fix this?

Apologies if this is a really novice question, but it's been years since
I got anywhere near Unix.

Thanks.

Tn




Re: configuring Lyx in Darwin

2001-06-17 Thread Allan Rae

On Sun, 17 Jun 2001, Tomoharu Nishino wrote:

 I finally managed to get xfree86 and Lyx compiled and running rootless in
 MacOSX/Darwin.  And Lyx runs, but I have run into one major problem --
 lyx cannot seem to locate the latex/pdflatex that is installed.  I have a
 standard teTeX distribution installed, and other TeX programs (e.g.
 TeXShop) seem to see it fine.  However, in the preferences panel in Lyx
 under Converters, there is no command specified for Lyx-DVI or Lyx-PDF.

Are they in your path?

Try:
set path
env | grep PATH

or something similar.  Actually,

which latex

should be all you need to know if it's visible or not.

Are you starting LyX from an icon on your desktop or from a command line?
If the former and it works when using a command line then you have some
environment variables (like path) that aren't set when LyX is started from
the icon.

You could just try rerunning Edit-Reconfigure from a running LyX as your
installation environment variables may have been different to those used
for the user account you are now using.

Allan. (ARRae)




configuring Lyx in Darwin

2001-06-17 Thread Tomoharu Nishino

I finally managed to get xfree86 and Lyx compiled and running rootless in
MacOSX/Darwin.  And Lyx runs, but I have run into one major problem --
lyx cannot seem to locate the latex/pdflatex that is installed.  I have a
standard teTeX distribution installed, and other TeX programs (e.g.
TeXShop) seem to see it fine.  However, in the preferences panel in Lyx
under Converters, there is no command specified for Lyx-DVI or Lyx-PDF.

Running reconfigure from the edit menu results in:

checking for a LaTeX2e program... (latex latex2e)
+checking for latex... not useable
+checking for latex2e... not useable
checking for the pdflatex program... (pdflatex)
+checking for pdflatex... not useable
checking for a LaTeX - LyX converter... (reLyX)
+checking for reLyX... yes

..

checking for a DVI previewer... (xdvi)
+checking for xdvi... no

..

So, I am guessing that for some reason Lyx is not seeing the teTeX
installation.  Is there any way to force the search path on Lyx?  How
does one fix this?

Apologies if this is a really novice question, but it's been years since
I got anywhere near Unix.

Thanks.

Tn




Re: configuring Lyx in Darwin

2001-06-17 Thread Allan Rae

On Sun, 17 Jun 2001, Tomoharu Nishino wrote:

 I finally managed to get xfree86 and Lyx compiled and running rootless in
 MacOSX/Darwin.  And Lyx runs, but I have run into one major problem --
 lyx cannot seem to locate the latex/pdflatex that is installed.  I have a
 standard teTeX distribution installed, and other TeX programs (e.g.
 TeXShop) seem to see it fine.  However, in the preferences panel in Lyx
 under Converters, there is no command specified for Lyx-DVI or Lyx-PDF.

Are they in your path?

Try:
set path
env | grep PATH

or something similar.  Actually,

which latex

should be all you need to know if it's visible or not.

Are you starting LyX from an icon on your desktop or from a command line?
If the former and it works when using a command line then you have some
environment variables (like path) that aren't set when LyX is started from
the icon.

You could just try rerunning Edit-Reconfigure from a running LyX as your
installation environment variables may have been different to those used
for the user account you are now using.

Allan. (ARRae)




configuring Lyx in Darwin

2001-06-17 Thread Tomoharu Nishino

I finally managed to get xfree86 and Lyx compiled and running rootless in
MacOSX/Darwin.  And Lyx runs, but I have run into one major problem --
lyx cannot seem to locate the latex/pdflatex that is installed.  I have a
standard teTeX distribution installed, and other TeX programs (e.g.
TeXShop) seem to see it fine.  However, in the preferences panel in Lyx
under Converters, there is no command specified for Lyx->DVI or Lyx->PDF.

Running reconfigure from the edit menu results in:

checking for a LaTeX2e program... (latex latex2e)
+checking for "latex"... not useable
+checking for "latex2e"... not useable
checking for the pdflatex program... (pdflatex)
+checking for "pdflatex"... not useable
checking for a LaTeX -> LyX converter... (reLyX)
+checking for "reLyX"... yes

..

checking for a DVI previewer... (xdvi)
+checking for "xdvi"... no

..

So, I am guessing that for some reason Lyx is not seeing the teTeX
installation.  Is there any way to force the search path on Lyx?  How
does one fix this?

Apologies if this is a really novice question, but it's been years since
I got anywhere near Unix.

Thanks.

Tn




Re: configuring Lyx in Darwin

2001-06-17 Thread Allan Rae

On Sun, 17 Jun 2001, Tomoharu Nishino wrote:

> I finally managed to get xfree86 and Lyx compiled and running rootless in
> MacOSX/Darwin.  And Lyx runs, but I have run into one major problem --
> lyx cannot seem to locate the latex/pdflatex that is installed.  I have a
> standard teTeX distribution installed, and other TeX programs (e.g.
> TeXShop) seem to see it fine.  However, in the preferences panel in Lyx
> under Converters, there is no command specified for Lyx->DVI or Lyx->PDF.

Are they in your path?

Try:
set path
env | grep PATH

or something similar.  Actually,

which latex

should be all you need to know if it's visible or not.

Are you starting LyX from an icon on your desktop or from a command line?
If the former and it works when using a command line then you have some
environment variables (like path) that aren't set when LyX is started from
the icon.

You could just try rerunning Edit->Reconfigure from a running LyX as your
installation environment variables may have been different to those used
for the user account you are now using.

Allan. (ARRae)




Re: Re[2]: Configuring Lyx

2000-10-13 Thread Tom Beale

I have installed Xforms from there RPM files - I thought I only had to do
that if I ran make myself - sorry I'm a beginner so I get a bit confused.

I have got a forms.h file, and I have tried compiling using
--with-extra-libraries=/usr//forms.h
but with no luck

Tom.
- Original Message -
From: Dragutin Cvetkovic [EMAIL PROTECTED]
To: Tom Beale [EMAIL PROTECTED]
Cc: Lyx Group [EMAIL PROTECTED]
Sent: Thursday, October 12, 2000 9:15 PM
Subject: Re[2]: Configuring Lyx


 Pozdrav Tom,

 Thursday, October 12, 2000, 7:40:27 PM, you wrote:

 T It doesn't configure with both xforms and xforms-devel either 0.88 or
0.89.
 T I have tried make distclean, which didn't solve it, and neither did
deleting
 T it all and re-expanding it from the .tar archive.

 T Tom.
 T - Original Message -
 T From: Paul E Johnson [EMAIL PROTECTED]
 T To: Tom Beale [EMAIL PROTECTED]
 T Sent: Thursday, October 12, 2000 1:24 PM
 T Subject: Re: Configuring Lyx


  Your devel edition must match your xforms edition.  Where are you
  getting the rpm for 0.89?
 
  OK, so I'm just guessing.
 
  One of the most common problems is that people have configure fail, and
  then they install what they need, and run configure again in the same
  place. It uses the cached settings from the last configure. I think lyx
  has "make distclean" to get a fresh start. If not, you have to erase
the
  source tree and try again.
 
 
  pj
 
  Tom Beale wrote:
  
   I already had xforms-devel 0.88 installed.   I have now tried
installing
   xforms-devel 0.89-6 but that doesn't seem to make any difference.
  
   Tom.


 a stupid question but have u actually made it exist in proper
 directories, you know /usr/include and such... /usr/lib ... and then
 did a ldconfig?

 Sve najbolje,
  Dragutinmailto:[EMAIL PROTECTED]







Re: Re[2]: Configuring Lyx

2000-10-13 Thread Jean-Marc Lasgouttes

 "Tom" == Tom Beale [EMAIL PROTECTED] writes:

Tom I have installed Xforms from there RPM files - I thought I only
Tom had to do that if I ran make myself - sorry I'm a beginner so I
Tom get a bit confused.

Tom I have got a forms.h file, and I have tried compiling using
Tom --with-extra-libraries=/usr//forms.h but with no luck

OK, let's try the hard way :) Could you post (1) the configure command
line you've tried (for example, the one above is really wrong %-), and
(2) the file config.log after running configure (remove config.cache
before running configure).

JMarc



Re: Re[2]: Configuring Lyx

2000-10-13 Thread Tom Beale

I have installed Xforms from there RPM files - I thought I only had to do
that if I ran make myself - sorry I'm a beginner so I get a bit confused.

I have got a forms.h file, and I have tried compiling using
--with-extra-libraries=/usr//forms.h
but with no luck

Tom.
- Original Message -
From: Dragutin Cvetkovic [EMAIL PROTECTED]
To: Tom Beale [EMAIL PROTECTED]
Cc: Lyx Group [EMAIL PROTECTED]
Sent: Thursday, October 12, 2000 9:15 PM
Subject: Re[2]: Configuring Lyx


 Pozdrav Tom,

 Thursday, October 12, 2000, 7:40:27 PM, you wrote:

 T It doesn't configure with both xforms and xforms-devel either 0.88 or
0.89.
 T I have tried make distclean, which didn't solve it, and neither did
deleting
 T it all and re-expanding it from the .tar archive.

 T Tom.
 T - Original Message -
 T From: Paul E Johnson [EMAIL PROTECTED]
 T To: Tom Beale [EMAIL PROTECTED]
 T Sent: Thursday, October 12, 2000 1:24 PM
 T Subject: Re: Configuring Lyx


  Your devel edition must match your xforms edition.  Where are you
  getting the rpm for 0.89?
 
  OK, so I'm just guessing.
 
  One of the most common problems is that people have configure fail, and
  then they install what they need, and run configure again in the same
  place. It uses the cached settings from the last configure. I think lyx
  has "make distclean" to get a fresh start. If not, you have to erase
the
  source tree and try again.
 
 
  pj
 
  Tom Beale wrote:
  
   I already had xforms-devel 0.88 installed.   I have now tried
installing
   xforms-devel 0.89-6 but that doesn't seem to make any difference.
  
   Tom.


 a stupid question but have u actually made it exist in proper
 directories, you know /usr/include and such... /usr/lib ... and then
 did a ldconfig?

 Sve najbolje,
  Dragutinmailto:[EMAIL PROTECTED]







Re: Re[2]: Configuring Lyx

2000-10-13 Thread Jean-Marc Lasgouttes

 "Tom" == Tom Beale [EMAIL PROTECTED] writes:

Tom I have installed Xforms from there RPM files - I thought I only
Tom had to do that if I ran make myself - sorry I'm a beginner so I
Tom get a bit confused.

Tom I have got a forms.h file, and I have tried compiling using
Tom --with-extra-libraries=/usr//forms.h but with no luck

OK, let's try the hard way :) Could you post (1) the configure command
line you've tried (for example, the one above is really wrong %-), and
(2) the file config.log after running configure (remove config.cache
before running configure).

JMarc



Re: Re[2]: Configuring Lyx

2000-10-13 Thread Tom Beale

I have installed Xforms from there RPM files - I thought I only had to do
that if I ran make myself - sorry I'm a beginner so I get a bit confused.

I have got a forms.h file, and I have tried compiling using
--with-extra-libraries=/usr//forms.h
but with no luck

Tom.
- Original Message -
From: Dragutin Cvetkovic <[EMAIL PROTECTED]>
To: Tom Beale <[EMAIL PROTECTED]>
Cc: Lyx Group <[EMAIL PROTECTED]>
Sent: Thursday, October 12, 2000 9:15 PM
Subject: Re[2]: Configuring Lyx


> Pozdrav Tom,
>
> Thursday, October 12, 2000, 7:40:27 PM, you wrote:
>
> T> It doesn't configure with both xforms and xforms-devel either 0.88 or
0.89.
> T> I have tried make distclean, which didn't solve it, and neither did
deleting
> T> it all and re-expanding it from the .tar archive.
>
> T> Tom.
> T> - Original Message -
> T> From: Paul E Johnson <[EMAIL PROTECTED]>
> T> To: Tom Beale <[EMAIL PROTECTED]>
> T> Sent: Thursday, October 12, 2000 1:24 PM
> T> Subject: Re: Configuring Lyx
>
>
> >> Your devel edition must match your xforms edition.  Where are you
> >> getting the rpm for 0.89?
> >>
> >> OK, so I'm just guessing.
> >>
> >> One of the most common problems is that people have configure fail, and
> >> then they install what they need, and run configure again in the same
> >> place. It uses the cached settings from the last configure. I think lyx
> >> has "make distclean" to get a fresh start. If not, you have to erase
the
> >> source tree and try again.
> >>
> >>
> >> pj
> >>
> >> Tom Beale wrote:
> >> >
> >> > I already had xforms-devel 0.88 installed.   I have now tried
installing
> >> > xforms-devel 0.89-6 but that doesn't seem to make any difference.
> >> >
> >> > Tom.
>
>
> a stupid question but have u actually made it exist in proper
> directories, you know /usr/include and such... /usr/lib ... and then
> did a ldconfig?
>
> Sve najbolje,
>  Dragutinmailto:[EMAIL PROTECTED]
>
>
>




Re: Re[2]: Configuring Lyx

2000-10-13 Thread Jean-Marc Lasgouttes

> "Tom" == Tom Beale <[EMAIL PROTECTED]> writes:

Tom> I have installed Xforms from there RPM files - I thought I only
Tom> had to do that if I ran make myself - sorry I'm a beginner so I
Tom> get a bit confused.

Tom> I have got a forms.h file, and I have tried compiling using
Tom> --with-extra-libraries=/usr//forms.h but with no luck

OK, let's try the hard way :) Could you post (1) the configure command
line you've tried (for example, the one above is really wrong %-), and
(2) the file config.log after running configure (remove config.cache
before running configure).

JMarc



Re: Configuring Lyx

2000-10-12 Thread Jean-Marc Lasgouttes

 "Tom" == Tom Beale [EMAIL PROTECTED] writes:

Tom I have managed to make it happy over xforms and libxpm, however
Tom it is still complaining about finding forms.h - I thought this
Tom was a file within xforms? I did try installing xforms 0.89
Tom instead of 0.88, but that didn't seem to help.

You probably need a package with a name like xforms-devel.

JMarc



Re: Configuring Lyx

2000-10-12 Thread Tom Beale

It doesn't configure with both xforms and xforms-devel either 0.88 or 0.89.
I have tried make distclean, which didn't solve it, and neither did deleting
it all and re-expanding it from the .tar archive.

Tom.
- Original Message -
From: Paul E Johnson [EMAIL PROTECTED]
To: Tom Beale [EMAIL PROTECTED]
Sent: Thursday, October 12, 2000 1:24 PM
Subject: Re: Configuring Lyx


 Your devel edition must match your xforms edition.  Where are you
 getting the rpm for 0.89?

 OK, so I'm just guessing.

 One of the most common problems is that people have configure fail, and
 then they install what they need, and run configure again in the same
 place. It uses the cached settings from the last configure. I think lyx
 has "make distclean" to get a fresh start. If not, you have to erase the
 source tree and try again.


 pj

 Tom Beale wrote:
 
  I already had xforms-devel 0.88 installed.   I have now tried installing
  xforms-devel 0.89-6 but that doesn't seem to make any difference.
 
  Tom.
  - Original Message -


 --
 Paul E. Johnson   email: [EMAIL PROTECTED]
 Dept. of Political Sciencehttp://lark.cc.ukans.edu/~pauljohn
 University of Kansas  Office: (785) 864-9086
 Lawrence, Kansas 66045FAX: (785) 864-5700





Re[2]: Configuring Lyx

2000-10-12 Thread Dragutin Cvetkovic

Pozdrav Tom,

Thursday, October 12, 2000, 7:40:27 PM, you wrote:

T It doesn't configure with both xforms and xforms-devel either 0.88 or 0.89.
T I have tried make distclean, which didn't solve it, and neither did deleting
T it all and re-expanding it from the .tar archive.

T Tom.
T - Original Message -
T From: Paul E Johnson [EMAIL PROTECTED]
T To: Tom Beale [EMAIL PROTECTED]
T Sent: Thursday, October 12, 2000 1:24 PM
T Subject: Re: Configuring Lyx


 Your devel edition must match your xforms edition.  Where are you
 getting the rpm for 0.89?

 OK, so I'm just guessing.

 One of the most common problems is that people have configure fail, and
 then they install what they need, and run configure again in the same
 place. It uses the cached settings from the last configure. I think lyx
 has "make distclean" to get a fresh start. If not, you have to erase the
 source tree and try again.


 pj

 Tom Beale wrote:
 
  I already had xforms-devel 0.88 installed.   I have now tried installing
  xforms-devel 0.89-6 but that doesn't seem to make any difference.
 
  Tom.


a stupid question but have u actually made it exist in proper
directories, you know /usr/include and such... /usr/lib ... and then
did a ldconfig?

Sve najbolje,
 Dragutinmailto:[EMAIL PROTECTED]





Re: Configuring Lyx

2000-10-12 Thread Jean-Marc Lasgouttes

 "Tom" == Tom Beale [EMAIL PROTECTED] writes:

Tom I have managed to make it happy over xforms and libxpm, however
Tom it is still complaining about finding forms.h - I thought this
Tom was a file within xforms? I did try installing xforms 0.89
Tom instead of 0.88, but that didn't seem to help.

You probably need a package with a name like xforms-devel.

JMarc



Re: Configuring Lyx

2000-10-12 Thread Tom Beale

It doesn't configure with both xforms and xforms-devel either 0.88 or 0.89.
I have tried make distclean, which didn't solve it, and neither did deleting
it all and re-expanding it from the .tar archive.

Tom.
- Original Message -
From: Paul E Johnson [EMAIL PROTECTED]
To: Tom Beale [EMAIL PROTECTED]
Sent: Thursday, October 12, 2000 1:24 PM
Subject: Re: Configuring Lyx


 Your devel edition must match your xforms edition.  Where are you
 getting the rpm for 0.89?

 OK, so I'm just guessing.

 One of the most common problems is that people have configure fail, and
 then they install what they need, and run configure again in the same
 place. It uses the cached settings from the last configure. I think lyx
 has "make distclean" to get a fresh start. If not, you have to erase the
 source tree and try again.


 pj

 Tom Beale wrote:
 
  I already had xforms-devel 0.88 installed.   I have now tried installing
  xforms-devel 0.89-6 but that doesn't seem to make any difference.
 
  Tom.
  - Original Message -


 --
 Paul E. Johnson   email: [EMAIL PROTECTED]
 Dept. of Political Sciencehttp://lark.cc.ukans.edu/~pauljohn
 University of Kansas  Office: (785) 864-9086
 Lawrence, Kansas 66045FAX: (785) 864-5700





Re[2]: Configuring Lyx

2000-10-12 Thread Dragutin Cvetkovic

Pozdrav Tom,

Thursday, October 12, 2000, 7:40:27 PM, you wrote:

T It doesn't configure with both xforms and xforms-devel either 0.88 or 0.89.
T I have tried make distclean, which didn't solve it, and neither did deleting
T it all and re-expanding it from the .tar archive.

T Tom.
T - Original Message -
T From: Paul E Johnson [EMAIL PROTECTED]
T To: Tom Beale [EMAIL PROTECTED]
T Sent: Thursday, October 12, 2000 1:24 PM
T Subject: Re: Configuring Lyx


 Your devel edition must match your xforms edition.  Where are you
 getting the rpm for 0.89?

 OK, so I'm just guessing.

 One of the most common problems is that people have configure fail, and
 then they install what they need, and run configure again in the same
 place. It uses the cached settings from the last configure. I think lyx
 has "make distclean" to get a fresh start. If not, you have to erase the
 source tree and try again.


 pj

 Tom Beale wrote:
 
  I already had xforms-devel 0.88 installed.   I have now tried installing
  xforms-devel 0.89-6 but that doesn't seem to make any difference.
 
  Tom.


a stupid question but have u actually made it exist in proper
directories, you know /usr/include and such... /usr/lib ... and then
did a ldconfig?

Sve najbolje,
 Dragutinmailto:[EMAIL PROTECTED]





Re: Configuring Lyx

2000-10-12 Thread Jean-Marc Lasgouttes

> "Tom" == Tom Beale <[EMAIL PROTECTED]> writes:

Tom> I have managed to make it happy over xforms and libxpm, however
Tom> it is still complaining about finding forms.h - I thought this
Tom> was a file within xforms? I did try installing xforms 0.89
Tom> instead of 0.88, but that didn't seem to help.

You probably need a package with a name like xforms-devel.

JMarc



Re: Configuring Lyx

2000-10-12 Thread Tom Beale

It doesn't configure with both xforms and xforms-devel either 0.88 or 0.89.
I have tried make distclean, which didn't solve it, and neither did deleting
it all and re-expanding it from the .tar archive.

Tom.
- Original Message -
From: Paul E Johnson <[EMAIL PROTECTED]>
To: Tom Beale <[EMAIL PROTECTED]>
Sent: Thursday, October 12, 2000 1:24 PM
Subject: Re: Configuring Lyx


> Your devel edition must match your xforms edition.  Where are you
> getting the rpm for 0.89?
>
> OK, so I'm just guessing.
>
> One of the most common problems is that people have configure fail, and
> then they install what they need, and run configure again in the same
> place. It uses the cached settings from the last configure. I think lyx
> has "make distclean" to get a fresh start. If not, you have to erase the
> source tree and try again.
>
>
> pj
>
> Tom Beale wrote:
> >
> > I already had xforms-devel 0.88 installed.   I have now tried installing
> > xforms-devel 0.89-6 but that doesn't seem to make any difference.
> >
> > Tom.
> > - Original Message -
>
>
> --
> Paul E. Johnson   email: [EMAIL PROTECTED]
> Dept. of Political Sciencehttp://lark.cc.ukans.edu/~pauljohn
> University of Kansas  Office: (785) 864-9086
> Lawrence, Kansas 66045FAX: (785) 864-5700
>




Re[2]: Configuring Lyx

2000-10-12 Thread Dragutin Cvetkovic

Pozdrav Tom,

Thursday, October 12, 2000, 7:40:27 PM, you wrote:

T> It doesn't configure with both xforms and xforms-devel either 0.88 or 0.89.
T> I have tried make distclean, which didn't solve it, and neither did deleting
T> it all and re-expanding it from the .tar archive.

T> Tom.
T> - Original Message -
T> From: Paul E Johnson <[EMAIL PROTECTED]>
T> To: Tom Beale <[EMAIL PROTECTED]>
T> Sent: Thursday, October 12, 2000 1:24 PM
T> Subject: Re: Configuring Lyx


>> Your devel edition must match your xforms edition.  Where are you
>> getting the rpm for 0.89?
>>
>> OK, so I'm just guessing.
>>
>> One of the most common problems is that people have configure fail, and
>> then they install what they need, and run configure again in the same
>> place. It uses the cached settings from the last configure. I think lyx
>> has "make distclean" to get a fresh start. If not, you have to erase the
>> source tree and try again.
>>
>>
>> pj
>>
>> Tom Beale wrote:
>> >
>> > I already had xforms-devel 0.88 installed.   I have now tried installing
>> > xforms-devel 0.89-6 but that doesn't seem to make any difference.
>> >
>> > Tom.


a stupid question but have u actually made it exist in proper
directories, you know /usr/include and such... /usr/lib ... and then
did a ldconfig?

Sve najbolje,
 Dragutinmailto:[EMAIL PROTECTED]





Configuring Lyx

2000-10-11 Thread Tom Beale



I am trying to configure Lyx 1.1.5 on Redhat 
6.2. It brings up the error message that it cannot find the Xpm or 
Xforms Libraries. I therefore installed the respective RPM's using 
KPackage but this didn't make any difference. I have checked that 
these are the versions of Xpm and Xforms needed.

Any suggestions?

Thanks

Tom.


Re: Configuring Lyx

2000-10-11 Thread Tom Beale

I have managed to make it happy over xforms and libxpm, however it is still
complaining about finding forms.h - I thought this was a file within xforms?
I did try installing xforms 0.89 instead of 0.88, but that didn't seem to
help.

Thanks very much

Tom.
- Original Message -
From: Paul E Johnson [EMAIL PROTECTED]
To: Tom Beale [EMAIL PROTECTED]
Sent: Wednesday, October 11, 2000 7:37 PM
Subject: Re: Configuring Lyx


  Tom Beale wrote:
 
  I am trying to configure Lyx 1.1.5 on Redhat 6.2.   It brings up the
  error message that it cannot find the Xpm or Xforms Libraries.   I
  therefore installed the respective RPM's using KPackage but this
  didn't make any difference.   I have checked that these are the
  versions of Xpm and Xforms needed.
 
  Any suggestions?
 
  Thanks
 
  Tom.
 you need xforms-devel and xpm-devel.
 pj
 --
 Paul E. Johnson   email: [EMAIL PROTECTED]
 Dept. of Political Sciencehttp://lark.cc.ukans.edu/~pauljohn
 University of Kansas  Office: (785) 864-9086
 Lawrence, Kansas 66045FAX: (785) 864-5700





Configuring Lyx

2000-10-11 Thread Tom Beale



I am trying to configure Lyx 1.1.5 on Redhat 
6.2.   It brings up the error message that it cannot find the Xpm or 
Xforms Libraries.   I therefore installed the respective RPM's using 
KPackage but this didn't make any difference.   I have checked that 
these are the versions of Xpm and Xforms needed.
 
Any suggestions?
 
Thanks
 
Tom.


Re: Configuring Lyx

2000-10-11 Thread Tom Beale

I have managed to make it happy over xforms and libxpm, however it is still
complaining about finding forms.h - I thought this was a file within xforms?
I did try installing xforms 0.89 instead of 0.88, but that didn't seem to
help.

Thanks very much

Tom.
- Original Message -
From: Paul E Johnson <[EMAIL PROTECTED]>
To: Tom Beale <[EMAIL PROTECTED]>
Sent: Wednesday, October 11, 2000 7:37 PM
Subject: Re: Configuring Lyx


> > Tom Beale wrote:
> >
> > I am trying to configure Lyx 1.1.5 on Redhat 6.2.   It brings up the
> > error message that it cannot find the Xpm or Xforms Libraries.   I
> > therefore installed the respective RPM's using KPackage but this
> > didn't make any difference.   I have checked that these are the
> > versions of Xpm and Xforms needed.
> >
> > Any suggestions?
> >
> > Thanks
> >
> > Tom.
> you need xforms-devel and xpm-devel.
> pj
> --
> Paul E. Johnson   email: [EMAIL PROTECTED]
> Dept. of Political Sciencehttp://lark.cc.ukans.edu/~pauljohn
> University of Kansas  Office: (785) 864-9086
> Lawrence, Kansas 66045FAX: (785) 864-5700
>




Configuring Lyx

2000-10-07 Thread Thomas.Beale

I am trying to configure Lyx 1.1.5 fix 1 on Suse Linux v6.4.   When I
get to the configure stage I get the error message that it can't find my
X-windows libraries and/or headers.   I have tried specifying there
location with 

./configure --x-libraries=/usr/X11R6/lib/X11 

but this produces no change.Do I need an additional set of libraries
that I have not installed?

Thanks



Re: Configuring Lyx

2000-10-07 Thread Andre Poenitz

 but this produces no change.Do I need an additional set of libraries
 that I have not installed?

Have you installed the package 'xdevel'?

Andre'

-- 
Andre' Poenitz  [EMAIL PROTECTED]



Configuring Lyx

2000-10-07 Thread Thomas.Beale

I am trying to configure Lyx 1.1.5 fix 1 on Suse Linux v6.4.   When I
get to the configure stage I get the error message that it can't find my
X-windows libraries and/or headers.   I have tried specifying there
location with 

./configure --x-libraries=/usr/X11R6/lib/X11 

but this produces no change.Do I need an additional set of libraries
that I have not installed?

Thanks



Re: Configuring Lyx

2000-10-07 Thread Andre Poenitz

 but this produces no change.Do I need an additional set of libraries
 that I have not installed?

Have you installed the package 'xdevel'?

Andre'

-- 
Andre' Poenitz  [EMAIL PROTECTED]



Configuring Lyx

2000-10-07 Thread Thomas.Beale

I am trying to configure Lyx 1.1.5 fix 1 on Suse Linux v6.4.   When I
get to the configure stage I get the error message that it can't find my
X-windows libraries and/or headers.   I have tried specifying there
location with 

./configure --x-libraries=/usr/X11R6/lib/X11 

but this produces no change.Do I need an additional set of libraries
that I have not installed?

Thanks



Re: Configuring Lyx

2000-10-07 Thread Andre Poenitz

> but this produces no change.Do I need an additional set of libraries
> that I have not installed?

Have you installed the package 'xdevel'?

Andre'

-- 
Andre' Poenitz  [EMAIL PROTECTED]