Re: Request for beta users

2017-08-09 Thread Paola Manzini
Hi Tom,

Sorry but yes, hope I am wrong, but this looks like spam in my book, especially 
considering that the one you are advertising is a commercial enterprise, there 
is no free option - when you write

  *   Notebook environment with WYSIWYG LaTeX editor

do you mean that you are offering a Lyx installation? Is the site using the 
good Lyx developers’ labour for a financial advantage? Yes sure there’s the 
computing element of it, but if this is the case and I were a Lyx developer I 
would be most irate, considering how upset I am now just as a user - I very 
much hope I am missing something!!!

On 9 Aug 2017, at 06:39, Tom McLaughlin 
> wrote:


Dear LyX users,

Apologies in advance if this is considered spam.

I've used LyX happily for years, but always wished there was an easier way to 
collaborate with other people on a document. To make this easier, I've been 
working on a web-based math editor that tries to reproduce the LyX experience 
as closely as possible. It features Google Docs-style collaborative editing, 
version history, etc. (It also supports code execution, but that's another 
matter.) You can see it here: codedown.io.

The tool is in beta and doesn't have all of LyX's features, but it's useful for 
some workflows.

If this sounds interesting to you, please create an account and try it out! 
Feel free to email me directly with questions/feature requests/bug reports; 
feedback is always appreciated.

Best,
Tom




Re: shortcut for Use Computer Algebra System

2016-11-14 Thread Paola Manzini

> On 14 Nov 2016, at 11:02, Roberto  wrote:
> 
> Hello,
>   I am on Mac with Lyx 2.2.0 trying to put a shortcut for Edit>Math>Use 
> Computer Algebra System>Mathematica
> but I do know what the Lyx function would be to put it in the binding file. I 
> tried the Preferences>Editing>Shortcuts  but this function is not listed. 
> 
> Mathematica calculations work fine if I use the mouse to get the CAS 
> function, but is pretty nested down in the menu ... can anybody help me to 
> get a short cut to use CAS (and Mathematica in particular) 
> 
> Thanks,
> Roberto

Hi Roberto,
according to the LyX manual there is no shortcut, but a way around it, have a 
look here:
http://elyxer.nongnu.org/lyx/Math.html#toc-Subsection-23.2

I haven't tried, though, I right click then select CAS
Paola




Re: making LyX work with CAS on Mac OS

2016-10-19 Thread Paola Manzini
On 19 Oct 2016, at 10:40, Stephan Witt 
<st.w...@gmx.net<mailto:st.w...@gmx.net>> wrote:

Am 19.10.2016 um 10:30 schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>:
YAY!!! it works Stephan, thank you ever so much, you have been so very patient, 
never been so happy to discover that 3+2=5 :-)
Presumably I would have to repeat the same procedure to create wrappers for 
mathematica and maple?

Yes, this should work in principle. I don’t have these tools - the point is:
you have to wrap the command line utility you can use in terminal.
But care for Kornels advice below.

e.g.:
#!/bin/
sh

/Applications/Mathematica.app/Contents/MacOS/MathKernel "$@„

The first line „#!/bin/sh“ is another ritual were you shouldn’t be
creative :) Don’t break it into multiple lines.

The exec in front of the command line utility is again for efficiency.
The shell process created by LyX to start the CAS utility will be
replaced by the CAS utility instead of creating another child process.


for mathematica and
#!/bin/
sh

/Applications/Maple 18/Maple 18.app/Contents/MacOS/Maple 18 "$@"

Again, a million thanks!
Paola

You’re welcome.

Am 19.10.2016 um 10:51 schrieb Kornel Benko 
<kor...@lyx.org<mailto:kor...@lyx.org>>:

Am Mittwoch, 19. Oktober 2016 um 08:30:53, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>
...
for mathematica and
#!/bin/sh
/Applications/Maple 18/Maple 18.app/Contents/MacOS/Maple 18 "$@"


I don't believe this is possible. At least I'd expect
#!/bin/sh
"/Applications/Maple 18/Maple 18.app/Contents/MacOS/Maple 18" "$@"

Kornel

Yes, Kornel, you’re right. The spaces in path name need quotes.
In case of maxima it was not required to quote the path name because
it doesn’t contain spaces.

Regards,
Stephan


Stepha, Kornel, Murat, thank you all, it does work, at least for Mathematica, 
still playing around with Maple, for which I haven’t figured out where the 
kernel is yet (and Murat, I do not have that directory on my system.

For future reference, what I did was repeat exactly the same steps to create a 
file called “math” in $HOME/bin (for some reason it did not work with 
“mathematica” as file name), using the commands below in a terminal window:

cat - > $HOME/bin/mathematica < in the terminal window, the other 
two by $ - this is for the technically challenged like me out there.

Again, thank you all!

paola







Re: making LyX work with CAS on Mac OS

2016-10-19 Thread Paola Manzini

On 19 Oct 2016, at 09:00, Stephan Witt 
<st.w...@gmx.net<mailto:st.w...@gmx.net>> wrote:

Am 19.10.2016 um 09:54 schrieb Stephan Witt 
<st.w...@gmx.net<mailto:st.w...@gmx.net>>:

Am 19.10.2016 um 08:45 schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>:

On 19 Oct 2016, at 07:43, Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>> wrote:


On 18 Oct 2016, at 21:28, Stephan Witt 
<st.w...@gmx.net<mailto:st.w...@gmx.net>> wrote:

Am 18.10.2016 um 18:45 schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>:


On 18 Oct 2016, at 16:49, Kornel Benko <kor...@lyx.org<mailto:kor...@lyx.org>> 
wrote:

Am Dienstag, 18. Oktober 2016 um 15:32:08, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>
...

hi Stephan, thanks for the scissor tip, will never look at 8< the same way 
again :-)
I’ve followed all your steps, but sadly still nothing has changed - tough maybe 
I have erred somewhere? Here is what I did:
First of all I created the wrapper file, and put it in HOME\bin, which I had 
already created following your instructions.
Then I’ve run
$ cat $HOME/bin/maxima
in the terminal window, and got the two lines of the new “wrapper” file.
Then put both ~/bin and HOME/bin in the LyX path for good measure, reconfigured 
LyX, closed Lyx and relaunched it, and again, it does not work.
So I thought maybe I should also have run the last two of the three other lines 
of code to be run in the terminal. Did that, but as you can see from the 
attachment after running that command I do not get a “$” sign, but a “>” as 
terminal prompt. Maybe this is the problem?
Thanks for your patience!

No problem. Simply type the 2 lines, cat is awaiting input.
To end the input you have to enter EOF, probably it is control+D.

Kornel

thanks Kornel (and Stephan), but now the result is that the maxima wrapper has 
been overwritten by empty lines!
So just to recap what I’ve done:
1. created the wrapper file, called it maxima, put it in HOME/bin, and checked 
it is there with the correct content by running the command “$ cat 
$HOME/bin/maxima” (no quotes) in the terminal window; I can also see the file 
in finder
2. run the three commands in the terminal window, where after the second line I 
had to use ctrl D to signal end of file
as a result, the “maxima” file has become an empty file (indeed, running “$ cat 
$HOME/bin/maxima” in the terminal window returns empty lines.
No change in behaviour in Lyx. If it helps, I have also Maple and Mathematica 
installed on my machine, but no luck invoking them from LyX either.
screenshot of terminal window is attached in case it is of any help.
Above all, thanks for taking the time with this.
paola


Hi Paola,

I tried to be as verbose as I can - but it was too terse, sorry.

Two points:
1. The dollar sign in front of my command line text shouldn’t be typed.
It’s usual to mark text input as terminal input.
2. The EOF marker is an arbitrary text and should have been typed as given.

I’ll attach a screen shot of a my terminal session to prepared the wrapper 
script.

Finally the correct PATH extension in LyX settings is important.
Either it should be „$HOME/bin“ or „~/bin“ - having both does not harm
but it slightly reduces the startup speed of every external script.

Regards,
Stephan




Dear Stephan,
thanks so much for the time you are taking on this, and apologies for being 
slow! I have tried following exactly what you did, but there seems to be a 
problem when I get to “which maxima” - I get an empty line. On the other hand, 
the
cat $HOME/bin/maxima
does return the contents of the file, and I do see a newly created maxima file 
in the “bin” folder (in finder) - maybe my system is missing some other 
component?
Again, many thanks,
Paola
p.s.
screenshot attached


Dear Paola,

no problem, we’re almost there.

Sorry, I forgot to adjust the PATH setting in terminal.
I have $HOME/bin already in PATH in terminal.
This is not standard, obviously - so let’s add it for the test :)
This is the equivalent of adding $HOME/bin to LyX PATH settings.

See the screenshot.

Regards,
Stephan

Oops, the screenshot… the blue text is my keyboard input.




YAY!!! it works Stephan, thank you ever so much, you have been so very patient, 
never been so happy to discover that 3+2=5 :-)

Presumably I would have to repeat the same procedure to create wrappers for 
mathematica and maple? e.g.:

#!/bin/sh
/Applications/Mathematica.app/Contents/MacOS/MathKernel "$@"

for mathematica and

#!/bin/sh
/Applications/Maple 18/Maple 18.app/Contents/MacOS/Maple 18 "$@"


Again, a million thanks!

Paola



Re: making LyX work with CAS on Mac OS

2016-10-19 Thread Paola Manzini

On 18 Oct 2016, at 21:28, Stephan Witt 
<st.w...@gmx.net<mailto:st.w...@gmx.net>> wrote:

Am 18.10.2016 um 18:45 schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>:


On 18 Oct 2016, at 16:49, Kornel Benko <kor...@lyx.org<mailto:kor...@lyx.org>> 
wrote:

Am Dienstag, 18. Oktober 2016 um 15:32:08, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>
...

hi Stephan, thanks for the scissor tip, will never look at 8< the same way 
again :-)
I’ve followed all your steps, but sadly still nothing has changed - tough maybe 
I have erred somewhere? Here is what I did:
First of all I created the wrapper file, and put it in HOME\bin, which I had 
already created following your instructions.
Then I’ve run
$ cat $HOME/bin/maxima
in the terminal window, and got the two lines of the new “wrapper” file.
Then put both ~/bin and HOME/bin in the LyX path for good measure, reconfigured 
LyX, closed Lyx and relaunched it, and again, it does not work.
So I thought maybe I should also have run the last two of the three other lines 
of code to be run in the terminal. Did that, but as you can see from the 
attachment after running that command I do not get a “$” sign, but a “>” as 
terminal prompt. Maybe this is the problem?
Thanks for your patience!

No problem. Simply type the 2 lines, cat is awaiting input.
To end the input you have to enter EOF, probably it is control+D.

Kornel

thanks Kornel (and Stephan), but now the result is that the maxima wrapper has 
been overwritten by empty lines!
So just to recap what I’ve done:
1. created the wrapper file, called it maxima, put it in HOME/bin, and checked 
it is there with the correct content by running the command “$ cat 
$HOME/bin/maxima” (no quotes) in the terminal window; I can also see the file 
in finder
2. run the three commands in the terminal window, where after the second line I 
had to use ctrl D to signal end of file
as a result, the “maxima” file has become an empty file (indeed, running “$ cat 
$HOME/bin/maxima” in the terminal window returns empty lines.
No change in behaviour in Lyx. If it helps, I have also Maple and Mathematica 
installed on my machine, but no luck invoking them from LyX either.
screenshot of terminal window is attached in case it is of any help.
Above all, thanks for taking the time with this.
paola


Hi Paola,

I tried to be as verbose as I can - but it was too terse, sorry.

Two points:
1. The dollar sign in front of my command line text shouldn’t be typed.
It’s usual to mark text input as terminal input.
2. The EOF marker is an arbitrary text and should have been typed as given.

I’ll attach a screen shot of a my terminal session to prepared the wrapper 
script.

Finally the correct PATH extension in LyX settings is important.
Either it should be „$HOME/bin“ or „~/bin“ - having both does not harm
but it slightly reduces the startup speed of every external script.

Regards,
Stephan





Dear Stephan,

thanks so much for the time you are taking on this, and apologies for being 
slow! I have tried following exactly what you did, but there seems to be a 
problem when I get to “which maxima” - I get an empty line. On the other hand, 
the

cat $HOME/bin/maxima
does return the contents of the file, and I do see a newly created maxima file 
in the “bin” folder (in finder) - maybe my system is missing some other 
component?

Again, many thanks,

Paola





Re: making LyX work with CAS on Mac OS

2016-10-18 Thread Paola Manzini

On 18 Oct 2016, at 16:49, Kornel Benko <kor...@lyx.org<mailto:kor...@lyx.org>> 
wrote:

Am Dienstag, 18. Oktober 2016 um 15:32:08, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>
...

hi Stephan, thanks for the scissor tip, will never look at 8< the same way 
again :-)
I’ve followed all your steps, but sadly still nothing has changed - tough maybe 
I have erred somewhere? Here is what I did:
First of all I created the wrapper file, and put it in HOME\bin, which I had 
already created following your instructions.
Then I’ve run
$ cat $HOME/bin/maxima
in the terminal window, and got the two lines of the new “wrapper” file.
Then put both ~/bin and HOME/bin in the LyX path for good measure, reconfigured 
LyX, closed Lyx and relaunched it, and again, it does not work.
So I thought maybe I should also have run the last two of the three other lines 
of code to be run in the terminal. Did that, but as you can see from the 
attachment after running that command I do not get a “$” sign, but a “>” as 
terminal prompt. Maybe this is the problem?
Thanks for your patience!

No problem. Simply type the 2 lines, cat is awaiting input.
To end the input you have to enter EOF, probably it is control+D.

Kornel


thanks Kornel (and Stephan), but now the result is that the maxima wrapper has 
been overwritten by empty lines!

So just to recap what I’ve done:

1. created the wrapper file, called it maxima, put it in HOME/bin, and checked 
it is there with the correct content by running the command “$ cat 
$HOME/bin/maxima” (no quotes) in the terminal window; I can also see the file 
in finder

2. run the three commands in the terminal window, where after the second line I 
had to use ctrl D to signal end of file

as a result, the “maxima” file has become an empty file (indeed, running “$ cat 
$HOME/bin/maxima” in the terminal window returns empty lines.

No change in behaviour in Lyx. If it helps, I have also Maple and Mathematica 
installed on my machine, but no luck invoking them from LyX either.

screenshot of terminal window is attached in case it is of any help.

Above all, thanks for taking the time with this.

paola

[cid:ABC794F1-941E-48D6-BAAB-68EE6CA2F1D2]




Re: making LyX work with CAS on Mac OS

2016-10-18 Thread Paola Manzini

On 18 Oct 2016, at 15:03, Stephan Witt 
<st.w...@gmx.net<mailto:st.w...@gmx.net>> wrote:

Am 18.10.2016 um 15:41 schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>:


On 18 Oct 2016, at 13:41, Stephan Witt 
<st.w...@gmx.net<mailto:st.w...@gmx.net>> wrote:

Am 18.10.2016 um 13:58 schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>:


On 18 Oct 2016, at 12:33, Kornel Benko <kor...@lyx.org<mailto:kor...@lyx.org>> 
wrote:

Am Dienstag, 18. Oktober 2016 um 11:10:06, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>
...

Hi all,

I’ve searched the list and though this is not the first time the problem
is
noted, I haven’t been able to find any solution. The short of it is: it
just won’t work. So for instance if I type “5+2” then invoke
Edit/Math/CAS,
I only get a lonely = side to the right of the expression, and no result
(see screenshot)>

...

What happens if you call maxima from the console window and input the
string '(5+2);' followed by ? Here I get:
(%i1) (5+2);
(%o1)  7
(%i2)


...

from the console I get the same as you:

 (%i2) 5+2;
 (%o2)  7
 (%i3)

It should work. Do you have the same PATH settings on console?
Note, that I am not on MAC, so only guessing.

Kornel

I know it should work, which is why it is sooo frustrating! I cannot see any 
path settings in the Terminal, but I have put in lyX the same address as the 
one invoked for Maxima run from a terminal window, and still no joy!

The problem is that LyX contains the call of the external utility as hard-coded 
string and it is „maxima“.

The only solution I can see is to wrap the wrapper script „maxima.sh“ located 
inside the Maxima.app bundle
with a utility script like the following code (I cannot attach it - every virus 
checker will block the transport):
=== 8< snip here >8 ===
#!/bin/sh
exec /Applications/Maxima.app/Contents/Resources/maxima.sh "$@"
=== 8< snip here >8 ===

In terminal you may do this:
$ mkdir -p $HOME/bin
$ cat - > $HOME/bin/maxima < means joining the two “8”?
thanks!

1. You need to create the wrapper first and may try it (after creating it) in 
terminal by typing "$HOME/bin/maxima“
2. The wrapper should be placed in folder $HOME/bin (which is created first in 
case it doesn’t exist already by „mkdir“)
3. The snip surrounded two lines is the contents of the wrapper script - „8<" 
and „>8" are the two scissors :)

To explain the terminal commands:
The first terminal command is ensuring the existence of the folder „$HOME/bin“.
The second one (starting with „cat“ and ending with EOF) is one the way to 
create the wrapper script without any editor.
The third command is making your new wrapper script executable.

The 2nd command needs to be entered exactly as you see it.

You can verify what you did by using the terminal command:


It should give you the 2-line-script between the lines surrounded by the 
scissors.

The problem why you has to do it yourself is: I cannot send you any shell 
script.
No virus scanner will let it through. It doesn’t matter if it is useful or not.

Regards,
Stephan


hi Stephan, thanks for the scissor tip, will never look at 8< the same way 
again :-)

I’ve followed all your steps, but sadly still nothing has changed - tough maybe 
I have erred somewhere? Here is what I did:

First of all I created the wrapper file, and put it in HOME\bin, which I had 
already created following your instructions.

Then I’ve run

$ cat $HOME/bin/maxima
in the terminal window, and got the two lines of the new “wrapper” file.

Then put both ~/bin and HOME/bin in the LyX path for good measure, reconfigured 
LyX, closed Lyx and relaunched it, and again, it does not work.

So I thought maybe I should also have run the last two of the three other lines 
of code to be run in the terminal. Did that, but as you can see from the 
attachment after running that command I do not get a “$” sign, but a “>” as 
terminal prompt. Maybe this is the problem?

Thanks for your patience!

[cid:8A192AE1-9B99-4D85-AA95-710AAD5B3990@st-andrews.ac.uk]




Re: making LyX work with CAS on Mac OS

2016-10-18 Thread Paola Manzini

On 18 Oct 2016, at 13:41, Stephan Witt 
<st.w...@gmx.net<mailto:st.w...@gmx.net>> wrote:

Am 18.10.2016 um 13:58 schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>:


On 18 Oct 2016, at 12:33, Kornel Benko <kor...@lyx.org<mailto:kor...@lyx.org>> 
wrote:

Am Dienstag, 18. Oktober 2016 um 11:10:06, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>
...

Hi all,

I’ve searched the list and though this is not the first time the problem
is
noted, I haven’t been able to find any solution. The short of it is: it
just won’t work. So for instance if I type “5+2” then invoke
Edit/Math/CAS,
I only get a lonely = side to the right of the expression, and no result
(see screenshot)>

...

What happens if you call maxima from the console window and input the
string '(5+2);' followed by ? Here I get:
(%i1) (5+2);
(%o1)  7
(%i2)


...

from the console I get the same as you:

  (%i2) 5+2;
  (%o2)  7
  (%i3)

It should work. Do you have the same PATH settings on console?
Note, that I am not on MAC, so only guessing.

Kornel

I know it should work, which is why it is sooo frustrating! I cannot see any 
path settings in the Terminal, but I have put in lyX the same address as the 
one invoked for Maxima run from a terminal window, and still no joy!

The problem is that LyX contains the call of the external utility as hard-coded 
string and it is „maxima“.

The only solution I can see is to wrap the wrapper script „maxima.sh“ located 
inside the Maxima.app bundle
with a utility script like the following code (I cannot attach it - every virus 
checker will block the transport):
=== 8< snip here >8 ===
#!/bin/sh
exec /Applications/Maxima.app/Contents/Resources/maxima.sh "$@"
=== 8< snip here >8 ===

In terminal you may do this:
$ mkdir -p $HOME/bin
$ cat - > $HOME/bin/maxima < means joining the two “8”?

thanks!

paola






Re: making LyX work with CAS on Mac OS

2016-10-18 Thread Paola Manzini

On 18 Oct 2016, at 12:33, Kornel Benko <kor...@lyx.org<mailto:kor...@lyx.org>> 
wrote:

Am Dienstag, 18. Oktober 2016 um 11:10:06, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>
...

Hi all,

I’ve searched the list and though this is not the first time the problem
is
noted, I haven’t been able to find any solution. The short of it is: it
just won’t work. So for instance if I type “5+2” then invoke
Edit/Math/CAS,
I only get a lonely = side to the right of the expression, and no result
(see screenshot)>

...

What happens if you call maxima from the console window and input the
string '(5+2);' followed by ? Here I get:
(%i1) (5+2);
(%o1)  7
(%i2)


...

from the console I get the same as you:

   (%i2) 5+2;
   (%o2)  7
   (%i3)

It should work. Do you have the same PATH settings on console?
Note, that I am not on MAC, so only guessing.

Kornel


I know it should work, which is why it is sooo frustrating! I cannot see any 
path settings in the Terminal, but I have put in lyX the same address as the 
one invoked for Maxima run from a terminal window, and still no joy!




Re: making LyX work with CAS on Mac OS

2016-10-18 Thread Paola Manzini

On 18 Oct 2016, at 12:27, Stephan Witt 
<st.w...@gmx.net<mailto:st.w...@gmx.net>> wrote:

Am 18.10.2016 um 13:10 schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>:


On 18 Oct 2016, at 12:05, Kornel Benko <kor...@lyx.org<mailto:kor...@lyx.org>> 
wrote:

Am Dienstag, 18. Oktober 2016 um 10:57:08, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>
On 18 Oct 2016, at 11:39, Kornel Benko 
<kor...@lyx.org<mailto:kor...@lyx.org><mailto:kor...@lyx.org>> wrote:

Am Dienstag, 18. Oktober 2016 um 10:12:50, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk><mailto:pm...@st-andrews.ac.uk>>
Hi all,

I’ve searched the list and though this is not the first time the problem is 
noted, I haven’t been able to find any solution. The short of it is: it just 
won’t work. So for instance if I type “5+2” then invoke Edit/Math/CAS, I only 
get a lonely = side to the right of the expression, and no result (see 
screenshot)

I am currently running Lyx 2.2.0 on Mac Os Sierra, but I had exactly the same 
problem under Maverick and El Capitan with previous Lyx versions, namely, 
nothing happens.

I have specified the paths correctly (I think) to where the apps are 
(Mathematica, Maxima, Maple - nothing seems to work), and I can see the 
software calling the app (math-extern maxima), or (math-extern mathematica), 
but no result is churned out.

Here is what I have in the "PATH prefix" field under Lyx->Preferences->Paths:

/Library/TeX/texbin:/usr/texbin:/sw/bin:/sw/sbin:/opt/local/teTeX/bin:/opt/local/bin:/Library/TeX/local/bin:/Library/TeX/bin:/Library/TeX/X11R6/bin:/Library/TeX/sbin:/sbin:/usr/local/sbin:/Library/TeX/usr/local/bin:/Applications/Mathematica.app/Contents/MacOS/MathKernel:/Applications/Maxima.app:/Applications/Maple
 18/Maple 18.app

Can anyone please help?

Many thanks,
Paola

[cid:1CA68732-253E-465F-82E6-7DF587AC9DB0@st-andrews.ac.uk]


I'd try calling lyx with '-dbg mathed' parameter from a console window.
Alternatively use View->Messages Pane->Settings
Check 'Selected'
Double click on 'mathed - Math editor'
back to 'Output'
...
calling: maxima
input: 'simpsum:true;tex(5 + 2);'
output: '7'
Buffer.cpp (3449): updateMacro of novýsúbor9.lyx
12:31:27.889: Automatický úklad hotový.

Here it shows:
12:38:28.705: Alt+M Afinding 'finding 'finding 'use whole cell: checking expr: 
'5 + 2'
calling: maxima
input: 'simpsum:true;tex(5 + 2);'
output: '7'

Kornel

many thanks Kornel for your prompt reply, I’ve tried what you suggested, and 
what I got is no output, namely:

11:55:08.254: (math-extern maxima)finding 'finding 'finding 'use whole cell: 
checking expr: '5 + 2'
calling: maxima
input: 'simpsum:true;tex(5 + 2);’

does this suggest where the problem is?

No, missing: output: '7'

What happens if you call maxima from the console window and input the string 
'(5+2);' followed by ?
Here I get:
(%i1) (5+2);
(%o1)  7
(%i2)

thanks,
Paola

Kornel

from the console I get the same as you:
(%i2) 5+2;
(%o2)  7
(%i3)

How did you call maxima in terminal?

I have it installed too and it looks like that:

$ ls -l /Applications/Maxima.app/Contents/Resources
total 480
-rw-r--r--@ 1 stephan  admin 577 22 Apr  2013 AppSettings.plist
-rw-r--r--@ 1 stephan  admin   27964 22 Apr  2013 MainMenu.nib
-rw-r--r--@ 1 stephan  admin  198769  4 Dez  2012 appIcon.icns
drwxr-xr-x@ 7 stephan  admin 238 22 Apr  2013 maxima
-rwxr-xr-x@ 1 stephan  admin 341 22 Apr  2013 maxima.sh
-rw-r--r--@ 1 stephan  admin1358 18 Nov  2012 script
-rwxr-xr-x@ 1 stephan  admin 409 22 Apr  2013 xmaxima.sh
$ /Applications/Maxima.app/Contents/Resources/maxima/bin/maxima
/Applications/Maxima.app/Contents/Resources/maxima/bin/maxima: line 199: exec: 
sbcl: not found
$ /Applications/Maxima.app/Contents/Resources/maxima.sh
Maxima 5.30.0 http://maxima.sourceforge.net
using Lisp SBCL 1.0.55.0-abb03f9
Distributed under the GNU Public License. See the file COPYING.
Dedicated to the memory of William Schelter.
The function bug_report() provides bug reporting information.
(%i1)


It seems one has to start maxima.sh to get the command line interface. I’m not 
sure LyX knows it.
In any case one has to add "/Applications/Maxima.app/Contents/Resources“ to the 
PATH.

Stephan


thanks Stephan, I used “exec 
'/Applications/Maxima.app/Contents/Resources/maxima.sh’ “

although I also just launch the Maxima.app from the launcher. At any rate I 
have added your line to the path, reconfigured LyX, closed and reopened, but 
alas no change :-(




Re: making LyX work with CAS on Mac OS

2016-10-18 Thread Paola Manzini
Le 18 oct. 2016 à 13:06 +0200, Kornel Benko 
<kor...@lyx.org<mailto:kor...@lyx.org>>, a écrit :
Am Dienstag, 18. Oktober 2016 um 10:57:08, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>
On 18 Oct 2016, at 11:39, Kornel Benko 
<kor...@lyx.org<mailto:kor...@lyx.org><mailto:kor...@lyx.org>> wrote:

Am Dienstag, 18. Oktober 2016 um 10:12:50, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk><mailto:pm...@st-andrews.ac.uk
Hi all,

I’ve searched the list and though this is not the first time the problem is 
noted, I haven’t been able to find any solution. The short of it is: it just 
won’t work. So for instance if I type “5+2” then invoke Edit/Math/CAS, I only 
get a lonely = side to the right of the expression, and no result (see 
screenshot)

I am currently running Lyx 2.2.0 on Mac Os Sierra, but I had exactly the same 
problem under Maverick and El Capitan with previous Lyx versions, namely, 
nothing happens.

I have specified the paths correctly (I think) to where the apps are 
(Mathematica, Maxima, Maple - nothing seems to work), and I can see the 
software calling the app (math-extern maxima), or (math-extern mathematica), 
but no result is churned out.

Here is what I have in the "PATH prefix" field under Lyx->Preferences->Paths:

/Library/TeX/texbin:/usr/texbin:/sw/bin:/sw/sbin:/opt/local/teTeX/bin:/opt/local/bin:/Library/TeX/local/bin:/Library/TeX/bin:/Library/TeX/X11R6/bin:/Library/TeX/sbin:/sbin:/usr/local/sbin:/Library/TeX/usr/local/bin:/Applications/Mathematica.app/Contents/MacOS/MathKernel:/Applications/Maxima.app:/Applications/Maple
 18/Maple 18.app

Can anyone please help?

Many thanks,
Paola

[cid:1CA68732-253E-465F-82E6-7DF587AC9DB0@st-andrews.ac.uk]


I'd try calling lyx with '-dbg mathed' parameter from a console window.
Alternatively use View->Messages Pane->Settings
Check 'Selected'
Double click on 'mathed - Math editor'
back to 'Output'
...
calling: maxima
input: 'simpsum:true;tex(5 + 2);'
output: '7'
Buffer.cpp (3449): updateMacro of novýsúbor9.lyx
12:31:27.889: Automatický úklad hotový.

Here it shows:
12:38:28.705: Alt+M Afinding 'finding 'finding 'use whole cell: checking expr: 
'5 + 2'
calling: maxima
input: 'simpsum:true;tex(5 + 2);'
output: '7'

Kornel

many thanks Kornel for your prompt reply, I’ve tried what you suggested, and 
what I got is no output, namely:

11:55:08.254: (math-extern maxima)finding 'finding 'finding 'use whole cell: 
checking expr: '5 + 2'
calling: maxima
input: 'simpsum:true;tex(5 + 2);’

does this suggest where the problem is?

No, missing: output: '7'

What happens if you call maxima from the console window and input the string 
'(5+2);' followed by ?
Here I get:
(%i1) (5+2);
(%o1) 7
(%i2)

thanks,
Paola

Kornel


On 18 Oct 2016, at 12:13, Murat Yildizoglu 
<myi...@gmail.com<mailto:myi...@gmail.com>> wrote:

Hi Kornelm
I think that yolu should point İnci'de the .app package, where the unix binary 
lives.
I do not have my laptop with me, but it could be the Macos folder in the app 
package (your .app file is in fact a bundle containing sub folders, and one of 
them contains the maxima binary

Prof. Murat Yildizoglu

thanks Murat, but that does not make a difference either, unfortunately, I just 
tried by adding

/Applications/Maxima.app/Contents/MacOS/Maxima

to the path, but the outcome is the same: just “5+2=“, but no output.


Re: making LyX work with CAS on Mac OS

2016-10-18 Thread Paola Manzini

On 18 Oct 2016, at 12:05, Kornel Benko <kor...@lyx.org<mailto:kor...@lyx.org>> 
wrote:

Am Dienstag, 18. Oktober 2016 um 10:57:08, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>
On 18 Oct 2016, at 11:39, Kornel Benko 
<kor...@lyx.org<mailto:kor...@lyx.org><mailto:kor...@lyx.org>> wrote:

Am Dienstag, 18. Oktober 2016 um 10:12:50, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk><mailto:pm...@st-andrews.ac.uk>>
Hi all,

I’ve searched the list and though this is not the first time the problem is 
noted, I haven’t been able to find any solution. The short of it is: it just 
won’t work. So for instance if I type “5+2” then invoke Edit/Math/CAS, I only 
get a lonely = side to the right of the expression, and no result (see 
screenshot)

I am currently running Lyx 2.2.0 on Mac Os Sierra, but I had exactly the same 
problem under Maverick and El Capitan with previous Lyx versions, namely, 
nothing happens.

I have specified the paths correctly (I think) to where the apps are 
(Mathematica, Maxima, Maple - nothing seems to work), and I can see the 
software calling the app (math-extern maxima), or (math-extern mathematica), 
but no result is churned out.

Here is what I have in the "PATH prefix" field under Lyx->Preferences->Paths:

/Library/TeX/texbin:/usr/texbin:/sw/bin:/sw/sbin:/opt/local/teTeX/bin:/opt/local/bin:/Library/TeX/local/bin:/Library/TeX/bin:/Library/TeX/X11R6/bin:/Library/TeX/sbin:/sbin:/usr/local/sbin:/Library/TeX/usr/local/bin:/Applications/Mathematica.app/Contents/MacOS/MathKernel:/Applications/Maxima.app:/Applications/Maple
 18/Maple 18.app

Can anyone please help?

Many thanks,
Paola

[cid:1CA68732-253E-465F-82E6-7DF587AC9DB0@st-andrews.ac.uk]


I'd try calling lyx with '-dbg mathed' parameter from a console window.
Alternatively use View->Messages Pane->Settings
Check 'Selected'
Double click on 'mathed - Math editor'
back to 'Output'
...
calling: maxima
input: 'simpsum:true;tex(5 + 2);'
output: '7'
Buffer.cpp (3449): updateMacro of novýsúbor9.lyx
12:31:27.889: Automatický úklad hotový.

Here it shows:
12:38:28.705: Alt+M Afinding 'finding 'finding 'use whole cell: checking expr: 
'5 + 2'
calling: maxima
input: 'simpsum:true;tex(5 + 2);'
output: '7'

Kornel

many thanks Kornel for your prompt reply, I’ve tried what you suggested, and 
what I got is no output, namely:

11:55:08.254: (math-extern maxima)finding 'finding 'finding 'use whole cell: 
checking expr: '5 + 2'
calling: maxima
input: 'simpsum:true;tex(5 + 2);’

does this suggest where the problem is?

No, missing: output: '7'

What happens if you call maxima from the console window and input the string 
'(5+2);' followed by ?
Here I get:
(%i1) (5+2);
(%o1)  7
(%i2)

thanks,
Paola

Kornel


from the console I get the same as you:

(%i2) 5+2;
(%o2)  7
(%i3)




Re: making LyX work with CAS on Mac OS

2016-10-18 Thread Paola Manzini
On 18 Oct 2016, at 11:39, Kornel Benko <kor...@lyx.org<mailto:kor...@lyx.org>> 
wrote:

Am Dienstag, 18. Oktober 2016 um 10:12:50, schrieb Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>>
Hi all,

I’ve searched the list and though this is not the first time the problem is 
noted, I haven’t been able to find any solution. The short of it is: it just 
won’t work. So for instance if I type “5+2” then invoke Edit/Math/CAS, I only 
get a lonely = side to the right of the expression, and no result (see 
screenshot)

I am currently running Lyx 2.2.0 on Mac Os Sierra, but I had exactly the same 
problem under Maverick and El Capitan with previous Lyx versions, namely, 
nothing happens.

I have specified the paths correctly (I think) to where the apps are 
(Mathematica, Maxima, Maple - nothing seems to work), and I can see the 
software calling the app (math-extern maxima), or (math-extern mathematica), 
but no result is churned out.

Here is what I have in the "PATH prefix" field under Lyx->Preferences->Paths:

/Library/TeX/texbin:/usr/texbin:/sw/bin:/sw/sbin:/opt/local/teTeX/bin:/opt/local/bin:/Library/TeX/local/bin:/Library/TeX/bin:/Library/TeX/X11R6/bin:/Library/TeX/sbin:/sbin:/usr/local/sbin:/Library/TeX/usr/local/bin:/Applications/Mathematica.app/Contents/MacOS/MathKernel:/Applications/Maxima.app:/Applications/Maple
 18/Maple 18.app

Can anyone please help?

Many thanks,
Paola

[cid:1CA68732-253E-465F-82E6-7DF587AC9DB0@st-andrews.ac.uk]


I'd try calling lyx with '-dbg mathed' parameter from a console window.
Alternatively use View->Messages Pane->Settings
Check 'Selected'
Double click on 'mathed - Math editor'
back to 'Output'
...
calling: maxima
input: 'simpsum:true;tex(5 + 2);'
output: '7'
Buffer.cpp (3449): updateMacro of novýsúbor9.lyx
12:31:27.889: Automatický úklad hotový.

Here it shows:
12:38:28.705: Alt+M Afinding 'finding 'finding 'use whole cell: checking expr: 
'5 + 2'
calling: maxima
input: 'simpsum:true;tex(5 + 2);'
output: '7'

Kornel

many thanks Kornel for your prompt reply, I’ve tried what you suggested, and 
what I got is no output, namely:

11:55:08.254: (math-extern maxima)finding 'finding 'finding 'use whole cell: 
checking expr: '5 + 2'
calling: maxima
input: 'simpsum:true;tex(5 + 2);’

does this suggest where the problem is?

thanks,
Paola



making LyX work with CAS on Mac OS

2016-10-18 Thread Paola Manzini
Hi all,

I’ve searched the list and though this is not the first time the problem is 
noted, I haven’t been able to find any solution. The short of it is: it just 
won’t work. So for instance if I type “5+2” then invoke Edit/Math/CAS, I only 
get a lonely = side to the right of the expression, and no result (see 
screenshot)

I am currently running Lyx 2.2.0 on Mac Os Sierra, but I had exactly the same 
problem under Maverick and El Capitan with previous Lyx versions, namely, 
nothing happens.

I have specified the paths correctly (I think) to where the apps are 
(Mathematica, Maxima, Maple - nothing seems to work), and I can see the 
software calling the app (math-extern maxima), or (math-extern mathematica), 
but no result is churned out.

Here is what I have in the "PATH prefix" field under Lyx->Preferences->Paths:

/Library/TeX/texbin:/usr/texbin:/sw/bin:/sw/sbin:/opt/local/teTeX/bin:/opt/local/bin:/Library/TeX/local/bin:/Library/TeX/bin:/Library/TeX/X11R6/bin:/Library/TeX/sbin:/sbin:/usr/local/sbin:/Library/TeX/usr/local/bin:/Applications/Mathematica.app/Contents/MacOS/MathKernel:/Applications/Maxima.app:/Applications/Maple
 18/Maple 18.app

Can anyone please help?

Many thanks,
Paola

[cid:1CA68732-253E-465F-82E6-7DF587AC9DB0@st-andrews.ac.uk]



Mac Shortcuts

2016-06-03 Thread Paola Manzini
Hi All,

a really silly question, but I am stumped: using Mac OS, what does “^” stand 
for? For instance, if I want to go for “font-size Normal” the set shortcuts are 
^S N : what combination of keys is “^S”? If I am not mistaken:
C stands for “command”, 
A stands for “option”, 
S stands for “Shift” 
M stands or “Ctrl” 

but does “^” stand for? 

Many thanks,
paola




Re: Math preview bug (?) in LyX 2.1.4

2016-04-01 Thread Paola Manzini
sorry Scott, I moved to the beta version and uninstalled alpha2 - but I cannot 
remember if there was a particular pattern that caused the problem.
> On 1 Apr 2016, at 07:27, Scott Kostyshak <skost...@lyx.org> wrote:
> 
> On Tue, Mar 01, 2016 at 06:31:56PM +, Paola Manzini wrote:
>> I can confirm I have the same problem in  2.2.0alpha2 on Mac OS El Capitan, 
>> though I haven’t tried the latest beta. I have the feeling it happens much 
>> less often that with 2.1.4 (it happened to me just today for the first time 
>> since installing the alpha2 version, and I use LyX for many hours every 
>> day). One good reason to try the new beta!
> 
> Paola is there any way to reliably reproduce the problem? In any case,
> it's good news that it happens less often on 2.2.0alpha2 than 2.1.4.
> 
> Scott
> 
>>> On 1 Mar 2016, at 17:32, PhilipPirrip <p...@net.hr> wrote:
>>> 
>>> In addition to what Scott said: can you share the document that's causing 
>>> you problems, I can test it on Fedora 23 in both LyX 2.1.4 and LyX 2.2.0dev 
>>> for you.
>>> 
>>> 
>>> 
>>> 
>>> On 03/01/2016 04:18 AM, Alexander Stasinski wrote:
>>>> (Apologies if this has already been discussed. I searched the archive
>>>> and bug reports and did not find anything related. Perhaps I didn't
>>>> search well enough.)
>>>> 
>>>> I'm using LyX 2.1.4 on Fedora 22 (4.3.4-200.fc22.x86_64) with instant
>>>> math preview on. After editing about a page of maths formulae, the
>>>> instant preview will start displaying "random" previous formulae
>>>> instead of the correct ones. When I go inside the formula, I can edit
>>>> the correct one, so LyX has the correct one internally.
>>>> The problem goes away if I close the document and reopen it, but after
>>>> about another page or so of editing, the problem reoccurs.
>>>> 
>>>> I'd be grateful for any advice on how to solve this.
>>>> 
>>>> Best wishes,
>>>> Alexander
>>>> 
>>> 
>>> 
>> 
>> 
>> 
>> 

-- 
Prof. Paola Manzini
School of Economics and Finance
University of St. Andrews
Castlecliffe, The Scores
St. Andrews KY16 9AL
Scotland, U.K.

tel: +44 (0)1334 462436
fax: +44 (0)1334 462444
http://www.st-andrews.ac.uk/~pm210/
Skype: paolamanzini

The University of St Andrews is a charity registered in Scotland : No SC013532 





Re: Math preview bug (?) in LyX 2.1.4

2016-03-01 Thread Paola Manzini
I can confirm I have the same problem in  2.2.0alpha2 on Mac OS El Capitan, 
though I haven’t tried the latest beta. I have the feeling it happens much less 
often that with 2.1.4 (it happened to me just today for the first time since 
installing the alpha2 version, and I use LyX for many hours every day). One 
good reason to try the new beta!

> On 1 Mar 2016, at 17:32, PhilipPirrip  wrote:
> 
> In addition to what Scott said: can you share the document that's causing you 
> problems, I can test it on Fedora 23 in both LyX 2.1.4 and LyX 2.2.0dev for 
> you.
> 
> 
> 
> 
> On 03/01/2016 04:18 AM, Alexander Stasinski wrote:
>> (Apologies if this has already been discussed. I searched the archive
>> and bug reports and did not find anything related. Perhaps I didn't
>> search well enough.)
>> 
>> I'm using LyX 2.1.4 on Fedora 22 (4.3.4-200.fc22.x86_64) with instant
>> math preview on. After editing about a page of maths formulae, the
>> instant preview will start displaying "random" previous formulae
>> instead of the correct ones. When I go inside the formula, I can edit
>> the correct one, so LyX has the correct one internally.
>> The problem goes away if I close the document and reopen it, but after
>> about another page or so of editing, the problem reoccurs.
>> 
>> I'd be grateful for any advice on how to solve this.
>> 
>> Best wishes,
>> Alexander
>> 
> 
> 






Re: Has anyone tried LyX on rollApp?

2015-12-07 Thread Paola Manzini


On 7 December 2015 07:00:14 GMT+00:00, Scott Kostyshak  wrote:
>LyX can be used through a webbrowser on the cloud at rollApp. There are
>many reasons not to do this, but I'm curious if anyone has actually
>used
>this for any serious work?
>
>I just tried it out for a test run. It is easy:
>
>1. go to https://www.rollapp.com/app/lyx
>2. click "Launch Online"
>3. choose "Test Drive"
>
>Scott

I have  (on an ipad) and I can confirm that it is good on a reasonable 
connection. 

For instance it works well when I can tether on my mobile,  but on the  
(snailpace) train wifi it  is unusable. 
I  am a fan!

Paola 

Re: 2.2.0alpha2 - "LyX could not create temporary directory...."

2015-12-05 Thread Paola Manzini

On 5 Dec 2015, at 00:04, Scott Kostyshak 
<skost...@lyx.org<mailto:skost...@lyx.org>> wrote:

On Fri, Dec 04, 2015 at 11:35:16PM +, Paola Manzini wrote:

The path for the temporary directory is:
/var/folders/_q/_lf49ll933z7xvnbfdtmn810gn/T

OK. Can you do the following:

1. Exit all LyX instances.
2. Run the command
  ls -lR /var/folders/_q/_lf49ll933z7xvnbfdtmn810gn/
3. Open one .lyx file (which you said does not cause an error).
4. Run the same command as in 2.
5. Open another .lyx file. This should produce the error. Before
clicking on OK for the error or anything else, run the same command as
in step 2 again.
6. (still without clicking OK on the error or anything else), run the
command
  mkdir 

So you should run the command in step 2 a total of 3 times and send us
all of the output. Also send us the output from the mkdir command.

I ditched the stable version, so only have 2.2.0alpha2 now.

OK.

Finally, I am not sure whether this is what you wanted, but I used the command 
in a Terminal window, which returned:

Filesystem   Size   Used  Avail Capacity  iused ifree %iused  Mounted on
/dev/disk1  931Gi  360Gi  570Gi39% 94431751 149513719   39%   /

Yes this is what I wanted. I just wanted to confirm that the filesystem
your temporary directory is on is not full (as the error you posted
suggested).

Scott


many thanks Scott - now it feels like when you complain of a noise in the car, 
take it to the garage, and the car runs perfectly smoothly: I have been unable 
to reproduce the error! I have opened several files, and nothing!

So for the moment all seems to be running ok again, really sorry for the 
trouble! But I have your instructions should the problem reappear.

Thanks again!

Paola




Re: 2.2.0alpha2 - "LyX could not create temporary directory...."

2015-12-04 Thread Paola Manzini

On 4 Dec 2015, at 23:11, Scott Kostyshak 
<skost...@lyx.org<mailto:skost...@lyx.org>> wrote:

On Fri, Dec 04, 2015 at 06:36:31PM +, Paola Manzini wrote:
thanks Liviu, just updated the preferences. The mysterious “LyX could not 
create temporary directory” etc error message remains, the workaround being to 
exit LyX, re-launch it and open the file. At least with keeping the last 
session I can now open many files :-)
Thank you,
paola

Hi Paola,

Thanks for your testing and feedback!

What do you have listed in Tools > Preferences > Paths under Temporary
directory?
Before changing anything, please backup whatever path you have there
because we would like to know what it is.

Do you still have the stable version of LyX installed? You do not see
the problem there correct? On that version of LyX what do you have
listed in Tools > Preferences > Paths under Temporary directory?

Finally, what is the output of the command "df -h /var" ?

Would you mind bottom-posting (replying below the quote of the previous
email)? Sorry for the bother but it helps keep emails organized.

Best,

Scott

Thanks Scott, and apologies for top posting!
The path for the temporary directory is:
/var/folders/_q/_lf49ll933z7xvnbfdtmn810gn/T
I ditched the stable version, so only have 2.2.0alpha2 now.
Finally, I am not sure whether this is what you wanted, but I used the command 
in a Terminal window, which returned:

Filesystem   Size   Used  Avail Capacity  iused ifree %iused  Mounted on
/dev/disk1  931Gi  360Gi  570Gi39% 94431751 149513719   39%   /

Many thanks!
paola




Re: 2.2.0alpha2 - "LyX could not create temporary directory...."

2015-12-04 Thread Paola Manzini
thanks Liviu, just updated the preferences. The mysterious “LyX could not 
create temporary directory” etc error message remains, the workaround being to 
exit LyX, re-launch it and open the file. At least with keeping the last 
session I can now open many files :-)
Thank you,
paola

> On 4 Dec 2015, at 18:24, Liviu Andronic <landronim...@gmail.com> wrote:
> 
> On Fri, Dec 4, 2015 at 4:32 PM, Paola Manzini <pm...@st-andrews.ac.uk> wrote:
>> 
>> Hi all,
>> 
>> I have a problem when opening files in the 2.2.0.alpha2 version of LyX on 
>> Mac OS El Capitan, which I only just noted. I can open any file (I think) 
>> when starting LyX, but when trying to open another one I get an error 
>> message, as attached, and cannot open it. I have to exit LyX and open the 
>> file I need, then works fine. But again, I cannot open any other file.
> 
> 
>> Also, whenever I reopen LyX the system keeps no memory of the fact that I 
>> exited with an open document (I think the previously if exiting LyX without 
>> closing a document, it would reopen on a LyX restart).
>> 
> Generally this is an option that needs to be enabled in Tools > Prefs
>> Document handling > Load opened files.
> 
> Liviu
> 
> 
>> I am assuming this is a bug in the new version, but if anyone has any 
>> suggestions on how to keep more than one file open at any one time, I’d be 
>> very grateful!
>> 
>> Many thanks,
>> Paola
>> 
> 
> 
> 
> -- 
> Do you think you know what math is?
> http://www.ideasroadshow.com/issues/ian-stewart-2013-08-02
> Or what it means to be intelligent?
> http://www.ideasroadshow.com/issues/john-duncan-2013-08-30
> Think again:
> http://www.ideasroadshow.com/library






Re: LyX 2.2.0 Alpha 1 has been released

2015-11-20 Thread Paola Manzini
THANK YOU THANK YOU THANK YOU  to all the programmers that made it possible. 
Not only lax now looks MUCH sharper on my macbook pro with retina display on 
Mac OS El Capitan, but the problems with the math toolbar being not clickable 
in some cases under El Capitan seems to have gone!

I still cannot make CAS work, but that is another issue :-)

Thanks again,
Paola
 
> On 20 Nov 2015, at 08:44, Scott Kostyshak  wrote:
> 
> Dear all,
> 
> We are beginning the process of releasing LyX 2.2.0 and the first step is
> releasing this alpha version. There are a lot of exciting new features that
> have been implemented, which are described here:
> 
>  http://wiki.lyx.org/LyX.NewInLyX22
> 
> If anyone is interested in testing LyX 2.2.0alpha1, please download the
> appropriate installer here:
> 
>  ftp://ftp.lyx.org/pub/lyx/devel/lyx-2.2/lyx-2.2.0alpha1/
> 
> For Ubuntu users, you can install the alpha from the PPA:
> 
>  https://launchpad.net/~lyx-devel/+archive/ubuntu/daily
> 
> by installing the package 'lyx2.2pre'.
> 
> This is an alpha release and should not be used for serious work. You should
> back up everything before even installing the alpha version. That said, your
> feedback could help us dramatically improve the final 2.2.0 release so we 
> would
> be interested in hearing about your experience (positive and negative).
> 
> If you think you found a bug, either e-mail the LyX developers' mailing list
> (lyx-de...@lists.lyx.org), or open a bug report at
> http://www.lyx.org/trac/wiki/BugTrackerHome .
> 
> Scott






Re: LyX 2.2.0 Alpha 1 has been released

2015-11-20 Thread Paola Manzini
Hi Scott, yes indeed I can confirm that the problem is solved, at least on my 
Macbook pro running El Capitan.
Again, thanks so much!
paola

> On 20 Nov 2015, at 18:26, Scott Kostyshak <skost...@lyx.org> wrote:
> 
> On Fri, Nov 20, 2015 at 02:33:48PM +, Paola Manzini wrote:
>> THANK YOU THANK YOU THANK YOU  to all the programmers that made it possible. 
>> Not only lax now looks MUCH sharper on my macbook pro with retina display on 
>> Mac OS El Capitan, but the problems with the math toolbar being not 
>> clickable in some cases under El Capitan seems to have gone!
> 
> Thanks for the positive feedback. Can you confirm then that the following 
> issue seems to be fixed in 2.2.0alpha1?
> http://www.lyx.org/trac/ticket/9824
> 
> Scott






Re: El Capitan

2015-10-02 Thread Paola Manzini
many thanks Chris!

But before going there, I have found another issue, at least with my settings, 
which once fixed also fixed the greyed out icon problem: if one goes in 
Settings\File Handling\File Formats and selects “PDF (pdflatex)” in the second 
to last dropdown menu in the settings, the one saying “With TeX fonts”, that 
makes the icons “live again”, at least it did work for me, hope it does for 
others too! For the last dropdown, “With nonTeX fonts, I have pdf (pdfXeTeX), 
in case that also matters).

Best,
Paola

On 2 Oct 2015, at 22:22, Christopher Menzel 
<chris.men...@gmail.com<mailto:chris.men...@gmail.com>> wrote:

You can almost surely solve your El Capitan problems if you disable the new 
System Integrity Protection feature (a.k.a. rootless mode), which among other 
things prevents the creation of symlinks in /usr. Note that there are some good 
security reasons for SIP — in particular it makes it much harder for malware to 
be installed on your system (though that can still be avoided simply by taking 
the usual precautions about clicking on unknown links, installing software from 
unknown or unproven sources, etc). So I'm not recommending that anyone do this 
but just putting the information and the option out there so folks can make an 
informed choice: http://goo.gl/W5AZpe. (I failed to note that I had disabled 
SIP when I reported the other day that I'd had no problems running LyX under El 
Capitan ever since the first public beta.)

-chris


On 1 Oct 2015, at 2:54 PM, Paola Manzini 
<pm...@st-andrews.ac.uk<mailto:pm...@st-andrews.ac.uk>> wrote:
After updating to El Capitan earlier today, I am also having problems. First, 
the same that Robert Dolan specified: the document would not compile. After 
reconfiguring, I get "AMS Class article"... not found when opening a document 
created in Lyx 2.4

Interesting, same thing happens if I try to create a new document.

I tried unistalling Lyx and re-installing it from scratch, but the problem 
persists.

Very grateful for any pointers!
paola


On 01/10/2015 20:10, Stephan Witt wrote:
Am 01.10.2015 um 20:28 schrieb Robert Dolan 
<dolan...@connect.wcsu.edu<mailto:dolan...@connect.wcsu.edu>>:

Hello,

I am using the latest version of Lyx with MacTex 2015 on OX El Capitan. Since I 
installed El Capitan I have not been able to preview the pdf using the “view” 
icon on the Lyx toolbar. I changed the path as instructed
Can you be a bit more specific? What did you change?

and I am able to export the lyx file as a pdf. However, I just cannot 
view/update/preview it without exporting it.
Please, try the reconfiguration of LyX.

Stephan

Any help would be greatly appreciated.

Thank you!







Re: El Capitan

2015-10-01 Thread Paola Manzini
After updating to El Capitan earlier today, I am also having problems. 
First, the same that Robert Dolan specified: the document would not 
compile. After reconfiguring, I get "AMS Class article"... not found 
when opening a document created in Lyx 2.4


Interesting, same thing happens if I try to create a new document.

I tried unistalling Lyx and re-installing it from scratch, but the 
problem persists.


Very grateful for any pointers!
paola


On 01/10/2015 20:10, Stephan Witt wrote:

Am 01.10.2015 um 20:28 schrieb Robert Dolan :


Hello,

I am using the latest version of Lyx with MacTex 2015 on OX El Capitan. Since I 
installed El Capitan I have not been able to preview the pdf using the “view” 
icon on the Lyx toolbar. I changed the path as instructed

Can you be a bit more specific? What did you change?


and I am able to export the lyx file as a pdf. However, I just cannot 
view/update/preview it without exporting it.

Please, try the reconfiguration of LyX.

Stephan
  

Any help would be greatly appreciated.

Thank you!




Re: El Capitan

2015-10-01 Thread Paola Manzini

Hello,

I was about to report the same - I also got to the same stage.

I hope there is some fix, but in the meantime to compile the file and 
view the pdf one can use the other two icons to the right ("update other 
formats" and "view other formats").


Paola

On 01/10/2015 22:38, Robert Dolan wrote:

Hello,

I follows this: https://tug.org/mactex/UpdatingForElCapitan.pdf, which 
states to "Go to the Paths item of Lyx → Preferences. Change the 
contents of the PATH prefix box from /usr/texbin to 
/Library/TeX/texbin; see Figure (6) on page 4. Then go to Tools → 
reconfigure and reset Lyx.” Before I did this, I was unable to even 
see the math text. This fixed that problem, but I still cant preview 
PDFs. As you can see in the photo below, the icons are greyed out. 
Also, when I press Command-R (which is the command to view pdf) it 
says command disabled at the bottom of the screen.


Thanks for your help!
On Oct 1, 2015, at 3:10 PM, Stephan Witt > wrote:


Am 01.10.2015 um 20:28 schrieb Robert Dolan 
>:



Hello,

I am using the latest version of Lyx with MacTex 2015 on OX El 
Capitan. Since I installed El Capitan I have not been able to 
preview the pdf using the “view” icon on the Lyx toolbar. I changed 
the path as instructed


Can you be a bit more specific? What did you change?

and I am able to export the lyx file as a pdf. However, I just 
cannot view/update/preview it without exporting it.


Please, try the reconfiguration of LyX.

Stephan


Any help would be greatly appreciated.

Thank you!






Re: I can't insert symbols in math environments since I switched to El Capitan

2015-10-01 Thread Paola Manzini
Philippe, I have the same problem, but playing aournd with this, I have 
found the following:
first click with the mouse on the "empty" space to the right corner of 
the greek letters panel (nothing happens), then click on the letter you 
need.


It is as if the mouse was not recognising the panel with the letters was 
open: if you over over
\beta for instance you can see "set top line", so it is as if you were 
hovering over the set top line symbol, wihtout the panel open. Clicking 
on the empy part of the panel with the greek letters seem to make LyX 
understand the panel is there.


Best,
paola


On 01/10/2015 20:32, Philippe Lemoine wrote:

Hi everyone,

I just updated MacOS X to El Capitan and, since I did,
I cannot insert symbols
in math environments anymore.

When I click on a button at the bottom of the LyX window
to insert a symbol like a Greek letter,
it displays the list of symbols of that type, but the mouse pointer
  is the same as if it was just
above my text so I can't click on any of the symbols.

Does anybody else has this problem since they updated MacOS X?
This is really bad for me
because it means I basically cannot do *any* work!

So I hope it will be solved rapidly, I'm kind of desperate right now...

Best,
Philippe



Re: El Capitan

2015-10-01 Thread Paola Manzini

ok, do not know why, but this works:

go into the Document settings, select "Fonts", and tick the option "Use 
non-TeX fonts (via XeTeX/LuaTeX)".


This made the view and compile button work for me.

best,
paola

On 01/10/2015 22:45, Paola Manzini wrote:

Hello,

I was about to report the same - I also got to the same stage.

I hope there is some fix, but in the meantime to compile the file and 
view the pdf one can use the other two icons to the right ("update 
other formats" and "view other formats").


Paola

On 01/10/2015 22:38, Robert Dolan wrote:

Hello,

I follows this: https://tug.org/mactex/UpdatingForElCapitan.pdf, 
which states to "Go to the Paths item of Lyx → Preferences. Change 
the contents of the PATH prefix box from /usr/texbin to 
/Library/TeX/texbin; see Figure (6) on page 4. Then go to Tools → 
reconfigure and reset Lyx.” Before I did this, I was unable to even 
see the math text. This fixed that problem, but I still cant preview 
PDFs. As you can see in the photo below, the icons are greyed out. 
Also, when I press Command-R (which is the command to view pdf) it 
says command disabled at the bottom of the screen.


Thanks for your help!

On Oct 1, 2015, at 3:10 PM, Stephan Witt <st.w...@gmx.net> wrote:

Am 01.10.2015 um 20:28 schrieb Robert Dolan 
<dolan...@connect.wcsu.edu <mailto:dolan...@connect.wcsu.edu>>:



Hello,

I am using the latest version of Lyx with MacTex 2015 on OX El 
Capitan. Since I installed El Capitan I have not been able to 
preview the pdf using the “view” icon on the Lyx toolbar. I changed 
the path as instructed


Can you be a bit more specific? What did you change?

and I am able to export the lyx file as a pdf. However, I just 
cannot view/update/preview it without exporting it.


Please, try the reconfiguration of LyX.

Stephan


Any help would be greatly appreciated.

Thank you!






{Disarmed} Re: [ANNOUNCE] LyX 2.1.2.1 Released

2014-10-31 Thread Paola Manzini
I will also add my hearfelt thanks, upgraded last night to Yosemite and this 
version of LyX without a hitch, thank you guys!
Paola

On 31 October 2014 13:11:14 GMT, Hal Kierstead hal.kierst...@me.com wrote:
Many thanks---it is working great.

Hal

 On Oct 30, 2014, at 9:20 AM, Richard Heck rgh...@lyx.org wrote:
 
 
 Public release of LyX version 2.1.2.1
 =
 
 We are proud to announce the release of LyX 2.1.2.1.
 
 This is an emergency release for OSX only. It resolves problems that
affect
 LyX on OSX 10.10 (Yosemite) and, indeed, any program that depends
upon the
 passing of environment variables to sub-processes. Only users of OSX
10.10
 should upgrade to this version.
 
 LyX is a document processor that encourages an approach to writing
based
 on the structure of your documents and not simply their appearance.
It is
 released under a Free and Open Source Software license.
 
 You can download LyX 2.1.2.1 from http://www.lyx.org/Download/.
 
 The remainder of this file describes the 2.1.2 release, which was the
 second maintenance release in the 2.1.x series.
 
 LyX 2.1.2 is the result of on-going efforts to make our stable
version
 even more reliable and stable. We have fixed a number of bugs and
made
 a number of improvements. These are detailed below. We strongly
encourage
 all LyX users to upgrade to this version.
 
 The most important fix here is that we believe we have resolved the
problem
 that led several users to experience seemingly random crashes with
2.1.0,
 sometimes resulting in dataloss. (This was bug 9049.) These crashes
generally
 happened when the user attempted to save a file containing a table,
usually a
 fairly complex table. A seemingly unrelated bug report concerning a
crash when
 trying to save a default template (bug 9236) led to the solution.
That bug has
 also been fixed.
 
 Do report your bugs, then! It really does help make LyX better, often
in ways
 you might not expect.
 
 So, if you think you have found a bug in LyX 2.1.2, open a bug report
at
 http://www.lyx.org/trac/wiki/BugTrackerHome. If you're not sure
whether it
 really is a bug, you can e-mail the LyX developers' mailing list
(lyx-devel
 at lists.lyx.org) and ask.
 
 If you have trouble using LyX or have a question, consult the
 documentation that comes with LyX and the LyX wiki, which lives at
 http://wiki.lyx.org/. If you can't find the answer there, e-mail the
LyX
 users' list (lyx-users at lists.lyx.org).
 
 We hope you enjoy using LyX 2.1.2.
 
 The LyX team.
 http://www.lyx.org
 
 
 What's new
 ==
 
 ** Updates:
 ***
 
 * USER INTERFACE
 
 - Detect some additional postscript and pdf viewers when they are on
the
  system PATH (AcroRd32, SumatraPDF, gsview and qpdfview).
 
 
 * DOCUMENTATION AND LOCALIZATION
 
 - Update docs explaining how to activate reverse search in qpdfview.
 
 - New French translations of the beamer examples.
 
 
 * BUILD/INSTALLATION
 
 - On Cygwin, use getent instead of grepping /etc/passwd for
determining
  the user's home directory when launching LyX through the gui
wrapper.
 
 
 
 ** Bug fixes:
 *
 
 * DOCUMENT INPUT/OUTPUT
 
 - Fix crash when saving certain documents with tables (bug 9049).
 
 - Fix crash when saving default template (bug 9236).
 
 - Do not sort advanced listings settings, since their insertion order
is
  relevant (bug 5203).
 
 - Fix import of latex documents with scaled fonts.
 
 
 * LYX2LYX
 
 - Fix warning Missing \use_indices when converting from 1.6.x
format
  or older.
 
 - Fix several conversion problems of beamer box arguments when the
  arguments use multiple ERTs (part of bug 9208, bug 9225, bug 9144).
 
 - Fix conversion of beamer overlay arguments when the module
  beamer-resenumerate is used (part of bug 9208).
 
 
 * USER INTERFACE
 
 - Do not forget last words of paragraphs in completion possibilities.
 
 - Select word on double click even when at boundary (bug 9159).
 
 - Fix listings inset parameter validation when font size is selected
  (bug 8144).
 
 - Fix listings validator with regard to aboveskip and belowskip (bug
7373).
 
 - Fix reverse search in insets (figures, tables, branches, etc.) (bug
9151).
 
 - Fix on-screen display of images whose type is not known to LyX (bug
9146).
 
 - Fix the -geometry command line argument for Windows.
 
 
 * INTERNALS
 
 - Improve thread-safety.
 
 - Fix potential bug spotted by cppcheck.
 
 - Fix problems arising when converting floating point values to the
  corresponding string representation (bugs 9190 and 9193).
 
 
 * BUILD/INSTALLATION
 
 - Fix compatibility issue with 64-bit cygwin.
 

-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

{Disarmed} Re: [ANNOUNCE] LyX 2.1.2.1 Released

2014-10-31 Thread Paola Manzini
I will also add my hearfelt thanks, upgraded last night to Yosemite and this 
version of LyX without a hitch, thank you guys!
Paola

On 31 October 2014 13:11:14 GMT, Hal Kierstead hal.kierst...@me.com wrote:
Many thanks---it is working great.

Hal

 On Oct 30, 2014, at 9:20 AM, Richard Heck rgh...@lyx.org wrote:
 
 
 Public release of LyX version 2.1.2.1
 =
 
 We are proud to announce the release of LyX 2.1.2.1.
 
 This is an emergency release for OSX only. It resolves problems that
affect
 LyX on OSX 10.10 (Yosemite) and, indeed, any program that depends
upon the
 passing of environment variables to sub-processes. Only users of OSX
10.10
 should upgrade to this version.
 
 LyX is a document processor that encourages an approach to writing
based
 on the structure of your documents and not simply their appearance.
It is
 released under a Free and Open Source Software license.
 
 You can download LyX 2.1.2.1 from http://www.lyx.org/Download/.
 
 The remainder of this file describes the 2.1.2 release, which was the
 second maintenance release in the 2.1.x series.
 
 LyX 2.1.2 is the result of on-going efforts to make our stable
version
 even more reliable and stable. We have fixed a number of bugs and
made
 a number of improvements. These are detailed below. We strongly
encourage
 all LyX users to upgrade to this version.
 
 The most important fix here is that we believe we have resolved the
problem
 that led several users to experience seemingly random crashes with
2.1.0,
 sometimes resulting in dataloss. (This was bug 9049.) These crashes
generally
 happened when the user attempted to save a file containing a table,
usually a
 fairly complex table. A seemingly unrelated bug report concerning a
crash when
 trying to save a default template (bug 9236) led to the solution.
That bug has
 also been fixed.
 
 Do report your bugs, then! It really does help make LyX better, often
in ways
 you might not expect.
 
 So, if you think you have found a bug in LyX 2.1.2, open a bug report
at
 http://www.lyx.org/trac/wiki/BugTrackerHome. If you're not sure
whether it
 really is a bug, you can e-mail the LyX developers' mailing list
(lyx-devel
 at lists.lyx.org) and ask.
 
 If you have trouble using LyX or have a question, consult the
 documentation that comes with LyX and the LyX wiki, which lives at
 http://wiki.lyx.org/. If you can't find the answer there, e-mail the
LyX
 users' list (lyx-users at lists.lyx.org).
 
 We hope you enjoy using LyX 2.1.2.
 
 The LyX team.
 http://www.lyx.org
 
 
 What's new
 ==
 
 ** Updates:
 ***
 
 * USER INTERFACE
 
 - Detect some additional postscript and pdf viewers when they are on
the
  system PATH (AcroRd32, SumatraPDF, gsview and qpdfview).
 
 
 * DOCUMENTATION AND LOCALIZATION
 
 - Update docs explaining how to activate reverse search in qpdfview.
 
 - New French translations of the beamer examples.
 
 
 * BUILD/INSTALLATION
 
 - On Cygwin, use getent instead of grepping /etc/passwd for
determining
  the user's home directory when launching LyX through the gui
wrapper.
 
 
 
 ** Bug fixes:
 *
 
 * DOCUMENT INPUT/OUTPUT
 
 - Fix crash when saving certain documents with tables (bug 9049).
 
 - Fix crash when saving default template (bug 9236).
 
 - Do not sort advanced listings settings, since their insertion order
is
  relevant (bug 5203).
 
 - Fix import of latex documents with scaled fonts.
 
 
 * LYX2LYX
 
 - Fix warning Missing \use_indices when converting from 1.6.x
format
  or older.
 
 - Fix several conversion problems of beamer box arguments when the
  arguments use multiple ERTs (part of bug 9208, bug 9225, bug 9144).
 
 - Fix conversion of beamer overlay arguments when the module
  beamer-resenumerate is used (part of bug 9208).
 
 
 * USER INTERFACE
 
 - Do not forget last words of paragraphs in completion possibilities.
 
 - Select word on double click even when at boundary (bug 9159).
 
 - Fix listings inset parameter validation when font size is selected
  (bug 8144).
 
 - Fix listings validator with regard to aboveskip and belowskip (bug
7373).
 
 - Fix reverse search in insets (figures, tables, branches, etc.) (bug
9151).
 
 - Fix on-screen display of images whose type is not known to LyX (bug
9146).
 
 - Fix the -geometry command line argument for Windows.
 
 
 * INTERNALS
 
 - Improve thread-safety.
 
 - Fix potential bug spotted by cppcheck.
 
 - Fix problems arising when converting floating point values to the
  corresponding string representation (bugs 9190 and 9193).
 
 
 * BUILD/INSTALLATION
 
 - Fix compatibility issue with 64-bit cygwin.
 

-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

{Disarmed} Re: [ANNOUNCE] LyX 2.1.2.1 Released

2014-10-31 Thread Paola Manzini
I will also add my hearfelt thanks, upgraded last night to Yosemite and this 
version of LyX without a hitch, thank you guys!
Paola

On 31 October 2014 13:11:14 GMT, Hal Kierstead  wrote:
>Many thanks---it is working great.
>
>Hal
>
>> On Oct 30, 2014, at 9:20 AM, Richard Heck  wrote:
>> 
>> 
>> Public release of LyX version 2.1.2.1
>> =
>> 
>> We are proud to announce the release of LyX 2.1.2.1.
>> 
>> This is an emergency release for OSX only. It resolves problems that
>affect
>> LyX on OSX 10.10 (Yosemite) and, indeed, any program that depends
>upon the
>> passing of environment variables to sub-processes. Only users of OSX
>10.10
>> should upgrade to this version.
>> 
>> LyX is a document processor that encourages an approach to writing
>based
>> on the structure of your documents and not simply their appearance.
>It is
>> released under a Free and Open Source Software license.
>> 
>> You can download LyX 2.1.2.1 from http://www.lyx.org/Download/.
>> 
>> The remainder of this file describes the 2.1.2 release, which was the
>> second maintenance release in the 2.1.x series.
>> 
>> LyX 2.1.2 is the result of on-going efforts to make our stable
>version
>> even more reliable and stable. We have fixed a number of bugs and
>made
>> a number of improvements. These are detailed below. We strongly
>encourage
>> all LyX users to upgrade to this version.
>> 
>> The most important fix here is that we believe we have resolved the
>problem
>> that led several users to experience seemingly random crashes with
>2.1.0,
>> sometimes resulting in dataloss. (This was bug 9049.) These crashes
>generally
>> happened when the user attempted to save a file containing a table,
>usually a
>> fairly complex table. A seemingly unrelated bug report concerning a
>crash when
>> trying to save a default template (bug 9236) led to the solution.
>That bug has
>> also been fixed.
>> 
>> Do report your bugs, then! It really does help make LyX better, often
>in ways
>> you might not expect.
>> 
>> So, if you think you have found a bug in LyX 2.1.2, open a bug report
>at
>> http://www.lyx.org/trac/wiki/BugTrackerHome. If you're not sure
>whether it
>> really is a bug, you can e-mail the LyX developers' mailing list
>(lyx-devel
>>  lists.lyx.org) and ask.
>> 
>> If you have trouble using LyX or have a question, consult the
>> documentation that comes with LyX and the LyX wiki, which lives at
>> http://wiki.lyx.org/. If you can't find the answer there, e-mail the
>LyX
>> users' list (lyx-users  lists.lyx.org).
>> 
>> We hope you enjoy using LyX 2.1.2.
>> 
>> The LyX team.
>> http://www.lyx.org
>> 
>> 
>> What's new
>> ==
>> 
>> ** Updates:
>> ***
>> 
>> * USER INTERFACE
>> 
>> - Detect some additional postscript and pdf viewers when they are on
>the
>>  system PATH (AcroRd32, SumatraPDF, gsview and qpdfview).
>> 
>> 
>> * DOCUMENTATION AND LOCALIZATION
>> 
>> - Update docs explaining how to activate reverse search in qpdfview.
>> 
>> - New French translations of the beamer examples.
>> 
>> 
>> * BUILD/INSTALLATION
>> 
>> - On Cygwin, use getent instead of grepping /etc/passwd for
>determining
>>  the user's home directory when launching LyX through the gui
>wrapper.
>> 
>> 
>> 
>> ** Bug fixes:
>> *
>> 
>> * DOCUMENT INPUT/OUTPUT
>> 
>> - Fix crash when saving certain documents with tables (bug 9049).
>> 
>> - Fix crash when saving default template (bug 9236).
>> 
>> - Do not sort advanced listings settings, since their insertion order
>is
>>  relevant (bug 5203).
>> 
>> - Fix import of latex documents with scaled fonts.
>> 
>> 
>> * LYX2LYX
>> 
>> - Fix warning "Missing \use_indices" when converting from 1.6.x
>format
>>  or older.
>> 
>> - Fix several conversion problems of beamer box arguments when the
>>  arguments use multiple ERTs (part of bug 9208, bug 9225, bug 9144).
>> 
>> - Fix conversion of beamer overlay arguments when the module
>>  "beamer-resenumerate" is used (part of bug 9208).
>> 
>> 
>> * USER INTERFACE
>> 
>> - Do not forget last words of paragraphs in completion possibilities.
>> 
>> - Select word on double click even when at boundary (bug 9159).
>> 
>> - Fix listings inset parameter validation when font size is selected
>>  (bug 8144).
>> 
>> - Fix listings validator with regard to aboveskip and belowskip (bug
>7373).
>> 
>> - Fix reverse search in insets (figures, tables, branches, etc.) (bug
>9151).
>> 
>> - Fix on-screen display of images whose type is not known to LyX (bug
>9146).
>> 
>> - Fix the -geometry command line argument for Windows.
>> 
>> 
>> * INTERNALS
>> 
>> - Improve thread-safety.
>> 
>> - Fix potential bug spotted by cppcheck.
>> 
>> - Fix problems arising when converting floating point values to the
>>  corresponding string representation (bugs 9190 and 9193).
>> 
>> 
>> * BUILD/INSTALLATION
>> 
>> - Fix compatibility issue with 64-bit cygwin.
>> 

-- 
Sent from my Android device with K-9 Mail. 

Re: lyx on Mac - blurred fonts

2014-10-20 Thread Paola Manzini
Hi all, I do have a macbook pro with retina display running Mavericks, 
and I never noticed any lags, nor does the blurriness' bother me to the 
point of not being able to work on it.


I also have a windows machine with high resolution display, and on that 
one LyX is unusable, the icons are just too tiny. On the MPBr yes the 
font is not neat, but I can sure work on it. Anyhow, as this may very 
well be a matter of taste, here is a link to little video of how LyX 
looks on my machine while I type, so you can judge for yourself:


https://www.dropbox.com/s/qtkozxjx335617j/LyxOnRetina.mov?dl=0

Best,
paola

On 20/10/2014 20:29, Chris Menzel wrote:


Since Stephan Witt has said LyX will be updated to accommodate Retina 
displays within the next couple of months, it seems to me that that 
will address your concerns about upgrading to a rMBP. As to your 
question, fonts render normally on a non-Retina external monitor 
hooked up to a rMBP.


-chris

On Oct 20, 2014 2:07 PM, Stephen Buonopane sbuon...@bucknell.edu 
mailto:sbuon...@bucknell.edu wrote:


I have been following this thread (and past related ones)  with
great interest as I will be forced to upgrade to a retina Mac in
the next 6 months or so.
Could someone post some screen shots that show the on-screen
quality on a retina mac versus non-retina?
How is the image quality on a non-retina external display hooked
up to a retina Mac?
Sounds like typing responsiveness is also an issue as well.

Steve


On Oct 20, 2014, at 12:42 PM, Christopher Menzel wrote:


Stephan Witt wrote:

Am 20.10.2014 um 17:44 schrieb Christopher Menzelchris.men...@gmail.com  
mailto:chris.men...@gmail.com:


On Oct 20, 2014 7:46 AM, Julio Rojasjcredbe...@gmail.com  
mailto:jcredbe...@gmail.com  wrote:

Unfortunately, it is so. My wife has both versions and Lyx on Retina is not 
a useless application, but a very difficult one to work with.

My experience is quite different (though of course YMMV). There is no doubt 
that the screen fonts in LyX ≤2.1.2 look much better on a non-Retina display 
when examined close up; on a rMBP, the edges of font characters and most icons 
are blurred and pixelated. But I find that, with the right choice of screen 
fonts (notably, in my case, Georgia for the main text font), if I am working at 
a comfortable distance from the screen (including with the laptop in my lap), 
the blurred/pixelated edges of the fonts are not noticeable. (For the record, 
my (corrected) vision is very good.)
That said, there is little doubt that the LyX user experience on the rMBP 
will be much better still when the version with Retina support comes out, and I 
eagerly await it. (IIRC Stephan thinks that might be around Christmas.)
Stephan (or anyone), quick question: Is there any reason to think screen 
fonts in LyX 2.1.2 will look appreciably better or worse on a new 5k-Retina 
iMac than on a rMBP?

Chris, frankly, I wasn't sure I understood Jerry's comment.
Perhaps he's talking about speed and not about crisp fonts.


Ah, yes, that could be (subject of the thread notwithstanding).
Typing is a bit laggy on a rMBP (assuming that's the sort of
thing you have in mind by speed). Since I mostly use LyX for
writing papers and I tend to write rather haltingly, the lag is
not usually noticeable. But if I were using it for tasks where I
wanted to type full speed, especially if I were a really fast
typist, I can see that lag could be pretty annoying.


To answer your question: I have to check it first.


Thanks!

-chris






Re: lyx on Mac - blurred fonts

2014-10-20 Thread Paola Manzini
Hi all, I do have a macbook pro with retina display running Mavericks, 
and I never noticed any lags, nor does the blurriness' bother me to the 
point of not being able to work on it.


I also have a windows machine with high resolution display, and on that 
one LyX is unusable, the icons are just too tiny. On the MPBr yes the 
font is not neat, but I can sure work on it. Anyhow, as this may very 
well be a matter of taste, here is a link to little video of how LyX 
looks on my machine while I type, so you can judge for yourself:


https://www.dropbox.com/s/qtkozxjx335617j/LyxOnRetina.mov?dl=0

Best,
paola

On 20/10/2014 20:29, Chris Menzel wrote:


Since Stephan Witt has said LyX will be updated to accommodate Retina 
displays within the next couple of months, it seems to me that that 
will address your concerns about upgrading to a rMBP. As to your 
question, fonts render normally on a non-Retina external monitor 
hooked up to a rMBP.


-chris

On Oct 20, 2014 2:07 PM, Stephen Buonopane sbuon...@bucknell.edu 
mailto:sbuon...@bucknell.edu wrote:


I have been following this thread (and past related ones)  with
great interest as I will be forced to upgrade to a retina Mac in
the next 6 months or so.
Could someone post some screen shots that show the on-screen
quality on a retina mac versus non-retina?
How is the image quality on a non-retina external display hooked
up to a retina Mac?
Sounds like typing responsiveness is also an issue as well.

Steve


On Oct 20, 2014, at 12:42 PM, Christopher Menzel wrote:


Stephan Witt wrote:

Am 20.10.2014 um 17:44 schrieb Christopher Menzelchris.men...@gmail.com  
mailto:chris.men...@gmail.com:


On Oct 20, 2014 7:46 AM, Julio Rojasjcredbe...@gmail.com  
mailto:jcredbe...@gmail.com  wrote:

Unfortunately, it is so. My wife has both versions and Lyx on Retina is not 
a useless application, but a very difficult one to work with.

My experience is quite different (though of course YMMV). There is no doubt 
that the screen fonts in LyX ≤2.1.2 look much better on a non-Retina display 
when examined close up; on a rMBP, the edges of font characters and most icons 
are blurred and pixelated. But I find that, with the right choice of screen 
fonts (notably, in my case, Georgia for the main text font), if I am working at 
a comfortable distance from the screen (including with the laptop in my lap), 
the blurred/pixelated edges of the fonts are not noticeable. (For the record, 
my (corrected) vision is very good.)
That said, there is little doubt that the LyX user experience on the rMBP 
will be much better still when the version with Retina support comes out, and I 
eagerly await it. (IIRC Stephan thinks that might be around Christmas.)
Stephan (or anyone), quick question: Is there any reason to think screen 
fonts in LyX 2.1.2 will look appreciably better or worse on a new 5k-Retina 
iMac than on a rMBP?

Chris, frankly, I wasn't sure I understood Jerry's comment.
Perhaps he's talking about speed and not about crisp fonts.


Ah, yes, that could be (subject of the thread notwithstanding).
Typing is a bit laggy on a rMBP (assuming that's the sort of
thing you have in mind by speed). Since I mostly use LyX for
writing papers and I tend to write rather haltingly, the lag is
not usually noticeable. But if I were using it for tasks where I
wanted to type full speed, especially if I were a really fast
typist, I can see that lag could be pretty annoying.


To answer your question: I have to check it first.


Thanks!

-chris






Re: lyx on Mac - blurred fonts

2014-10-20 Thread Paola Manzini
Hi all, I do have a macbook pro with retina display running Mavericks, 
and I never noticed any lags, nor does the "blurriness' bother me to the 
point of not being able to work on it.


I also have a windows machine with high resolution display, and on that 
one LyX is unusable, the icons are just too tiny. On the MPBr yes the 
font is not neat, but I can sure work on it. Anyhow, as this may very 
well be a matter of taste, here is a link to little video of how LyX 
looks on my machine while I type, so you can judge for yourself:


https://www.dropbox.com/s/qtkozxjx335617j/LyxOnRetina.mov?dl=0

Best,
paola

On 20/10/2014 20:29, Chris Menzel wrote:


Since Stephan Witt has said LyX will be updated to accommodate Retina 
displays within the next couple of months, it seems to me that that 
will address your concerns about upgrading to a rMBP. As to your 
question, fonts render normally on a non-Retina external monitor 
hooked up to a rMBP.


-chris

On Oct 20, 2014 2:07 PM, "Stephen Buonopane" > wrote:


I have been following this thread (and past related ones)  with
great interest as I will be forced to upgrade to a retina Mac in
the next 6 months or so.
Could someone post some screen shots that show the on-screen
quality on a retina mac versus non-retina?
How is the image quality on a non-retina external display hooked
up to a retina Mac?
Sounds like typing responsiveness is also an issue as well.

Steve


On Oct 20, 2014, at 12:42 PM, Christopher Menzel wrote:


Stephan Witt wrote:

Am 20.10.2014 um 17:44 schrieb Christopher Menzel  
:


On Oct 20, 2014 7:46 AM, "Julio Rojas"  
  wrote:

Unfortunately, it is so. My wife has both versions and Lyx on Retina is not 
a useless application, but a very difficult one to work with.

My experience is quite different (though of course YMMV). There is no doubt 
that the screen fonts in LyX ≤2.1.2 look much better on a non-Retina display 
when examined close up; on a rMBP, the edges of font characters and most icons 
are blurred and pixelated. But I find that, with the right choice of screen 
fonts (notably, in my case, Georgia for the main text font), if I am working at 
a comfortable distance from the screen (including with the laptop in my lap), 
the blurred/pixelated edges of the fonts are not noticeable. (For the record, 
my (corrected) vision is very good.)
That said, there is little doubt that the LyX user experience on the rMBP 
will be much better still when the version with Retina support comes out, and I 
eagerly await it. (IIRC Stephan thinks that might be around Christmas.)
Stephan (or anyone), quick question: Is there any reason to think screen 
fonts in LyX 2.1.2 will look appreciably better or worse on a new 5k-Retina 
iMac than on a rMBP?

Chris, frankly, I wasn't sure I understood Jerry's comment.
Perhaps he's talking about speed and not about crisp fonts.


Ah, yes, that could be (subject of the thread notwithstanding).
Typing is a bit laggy on a rMBP (assuming that's the sort of
thing you have in mind by "speed"). Since I mostly use LyX for
writing papers and I tend to write rather haltingly, the lag is
not usually noticeable. But if I were using it for tasks where I
wanted to type full speed, especially if I were a really fast
typist, I can see that lag could be pretty annoying.


To answer your question: I have to check it first.


Thanks!

-chris






Re: preferences option has disappeared from the tools dialogue

2014-07-27 Thread Paola Manzini

Hi Bob,
in Mac OS I see Preferences under the LyX Menu. You can also invoke 
them with command+,

paola

On 27/07/2014 01:56, robert baskin wrote:

LyX 2.1.1 (2014-07-02)
Built on Jul 3 2014, 22:52:01
Configuration
Host type: x86_64-apple-darwin12.5.0

I’m a new user.  I have recently installed LyX 2.1.1, in fact multiple times.  
In the penultimate install I noticed the ‘preference’ option had disappeared 
from the Tool dialogue box.  I tried to reinstall LyX but it didn’t change.  I 
found that I could get to the preference dialogue box by going through the help 
menu and clicking on some link to preferences there but I it isn’t easy to find.

How is it possible to get Preferences back under Tools?

thanks for any help
bob




Re: preferences option has disappeared from the tools dialogue

2014-07-27 Thread Paola Manzini

Hi Bob,
in Mac OS I see Preferences under the LyX Menu. You can also invoke 
them with command+,

paola

On 27/07/2014 01:56, robert baskin wrote:

LyX 2.1.1 (2014-07-02)
Built on Jul 3 2014, 22:52:01
Configuration
Host type: x86_64-apple-darwin12.5.0

I’m a new user.  I have recently installed LyX 2.1.1, in fact multiple times.  
In the penultimate install I noticed the ‘preference’ option had disappeared 
from the Tool dialogue box.  I tried to reinstall LyX but it didn’t change.  I 
found that I could get to the preference dialogue box by going through the help 
menu and clicking on some link to preferences there but I it isn’t easy to find.

How is it possible to get Preferences back under Tools?

thanks for any help
bob




Re: preferences option has disappeared from the tools dialogue

2014-07-27 Thread Paola Manzini

Hi Bob,
in Mac OS I see "Preferences" under the "LyX" Menu. You can also invoke 
them with command+,

paola

On 27/07/2014 01:56, robert baskin wrote:

LyX 2.1.1 (2014-07-02)
Built on Jul 3 2014, 22:52:01
Configuration
Host type: x86_64-apple-darwin12.5.0

I’m a new user.  I have recently installed LyX 2.1.1, in fact multiple times.  
In the penultimate install I noticed the ‘preference’ option had disappeared 
from the Tool dialogue box.  I tried to reinstall LyX but it didn’t change.  I 
found that I could get to the preference dialogue box by going through the help 
menu and clicking on some link to preferences there but I it isn’t easy to find.

How is it possible to get Preferences back under Tools?

thanks for any help
bob




Re: Templates on Mac OS X

2014-07-16 Thread Paola Manzini
thank you - changing the path in the Preferences - Paths - Document 
templates: box to

/Applications/LyX.app/Contents/Resources/templates
solved the problem for me.

On 16/07/2014 18:25, Stephen Buonopane wrote:

On the Mac installation, they get buried inside of the app package.

Find LyX.app in your applications folder
Right click on it and select show package contents
Then go to Contents - Resources - templates

On my installation of LyX,
File - New from Template goes to 
 /Library/ApplicationSupport/LyX/templates

so that may be a more convenient place for the templates to be placed.





On Jul 16, 2014, at 1:08 PM, Julio Rojas wrote:

Thanks, but that is not the problem. The files for the templates are 
not copied to the hard drive at installation time, thus they are 
nowhere to be found when one tries to create a new document.


-
Julio Rojas
jcredbe...@gmail.com mailto:jcredbe...@gmail.com


On Wed, Jul 16, 2014 at 12:49 PM, co...@vt.edu 
mailto:co...@vt.edu wrote:


Reconfiguration is under Tools menu.



Dear all,

Is anybody aware that templates are not installed when
installing Lyx on OS X? Is there something I am missing? I
remember that on previous versions one should run some
configuration tool after installation, but this tool is nowhere
to be found in Lyx 2.1.1.

Regards,
-
Julio Rojas
jcredbe...@gmail.com mailto:jcredbe...@gmail.com









Re: Templates on Mac OS X

2014-07-16 Thread Paola Manzini
thank you - changing the path in the Preferences - Paths - Document 
templates: box to

/Applications/LyX.app/Contents/Resources/templates
solved the problem for me.

On 16/07/2014 18:25, Stephen Buonopane wrote:

On the Mac installation, they get buried inside of the app package.

Find LyX.app in your applications folder
Right click on it and select show package contents
Then go to Contents - Resources - templates

On my installation of LyX,
File - New from Template goes to 
 /Library/ApplicationSupport/LyX/templates

so that may be a more convenient place for the templates to be placed.





On Jul 16, 2014, at 1:08 PM, Julio Rojas wrote:

Thanks, but that is not the problem. The files for the templates are 
not copied to the hard drive at installation time, thus they are 
nowhere to be found when one tries to create a new document.


-
Julio Rojas
jcredbe...@gmail.com mailto:jcredbe...@gmail.com


On Wed, Jul 16, 2014 at 12:49 PM, co...@vt.edu 
mailto:co...@vt.edu wrote:


Reconfiguration is under Tools menu.



Dear all,

Is anybody aware that templates are not installed when
installing Lyx on OS X? Is there something I am missing? I
remember that on previous versions one should run some
configuration tool after installation, but this tool is nowhere
to be found in Lyx 2.1.1.

Regards,
-
Julio Rojas
jcredbe...@gmail.com mailto:jcredbe...@gmail.com









Re: Templates on Mac OS X

2014-07-16 Thread Paola Manzini
thank you - changing the path in the "Preferences -> Paths -> Document 
templates:" box to

/Applications/LyX.app/Contents/Resources/templates
solved the problem for me.

On 16/07/2014 18:25, Stephen Buonopane wrote:

On the Mac installation, they get buried inside of the app package.

Find LyX.app in your applications folder
Right click on it and select "show package contents"
Then go to Contents -> Resources -> templates

On my installation of LyX,
File -> New from Template goes to 
 /Library/ApplicationSupport/LyX/templates

so that may be a more convenient place for the templates to be placed.





On Jul 16, 2014, at 1:08 PM, Julio Rojas wrote:

Thanks, but that is not the problem. The files for the templates are 
not copied to the hard drive at installation time, thus they are 
nowhere to be found when one tries to create a new document.


-
Julio Rojas
jcredbe...@gmail.com 


On Wed, Jul 16, 2014 at 12:49 PM, > wrote:


"Reconfiguration" is under "Tools" menu.



Dear all,

Is anybody aware that templates are not installed when
installing Lyx on OS X? Is there something I am missing? I
remember that on previous versions one should run some
configuration tool after installation, but this tool is nowhere
to be found in Lyx 2.1.1.

Regards,
-
Julio Rojas
jcredbe...@gmail.com 









Re: lyx shortcuts in mac os - can't make them work

2014-07-15 Thread Paola Manzini
Thank you Stephan, I know feel rather silly: since it works for you, I 
kept insisting, looking at the message log, and I finally realised that 
I have to let go of the ctrl key after the first G - thanks a million!

paola


On 15/07/2014 09:56, Stephan Witt wrote:

Am 14.07.2014 um 18:11 schrieb Paola Manzini pm...@st-andrews.ac.uk:


Hi All,

I hope somebody can help - I have searched the message board, but there is 
nothing recent that I could find to solve my problem.

I just moved from Windows to Mac (Macbook pro), on OS Maverick, using Lyx 2.1.0 (April 
2014 release). I cannot make most of the shortcuts work. I understand that e.g. the 
shortcut for \gamma, ^ M G G , stands for ctlr-m-m-g, but if I press this key 
combination nothing happens. Using either the command or option keys instead of ctrl also 
makes no difference (or produces different results).

Hi Paola,

the shortcut for \gamma on Mac is Control-m g g - four key strokes: Control, m, 
g, g.

This works for me.

Stephan


I read somewhere that the ctrl key is not recognised in Lyx, so I changed the shortcuts 
in lyx\preferences\Editing\shortcuts, but again nothing happens (for the specific example 
to Command M G G). I have checked and the system is using the mac.bind.

Can anyone suggest a (simple please!) solution? I am a total beginner with Mac 
OS, so I am not at all confindent with meddling with configuration files, and 
would love any solution implementable from inside the Lyx gui.

Thanks!
paola





Re: lyx shortcuts in mac os - can't make them work

2014-07-15 Thread Paola Manzini
Thank you Stephan, I know feel rather silly: since it works for you, I 
kept insisting, looking at the message log, and I finally realised that 
I have to let go of the ctrl key after the first G - thanks a million!

paola


On 15/07/2014 09:56, Stephan Witt wrote:

Am 14.07.2014 um 18:11 schrieb Paola Manzini pm...@st-andrews.ac.uk:


Hi All,

I hope somebody can help - I have searched the message board, but there is 
nothing recent that I could find to solve my problem.

I just moved from Windows to Mac (Macbook pro), on OS Maverick, using Lyx 2.1.0 (April 
2014 release). I cannot make most of the shortcuts work. I understand that e.g. the 
shortcut for \gamma, ^ M G G , stands for ctlr-m-m-g, but if I press this key 
combination nothing happens. Using either the command or option keys instead of ctrl also 
makes no difference (or produces different results).

Hi Paola,

the shortcut for \gamma on Mac is Control-m g g - four key strokes: Control, m, 
g, g.

This works for me.

Stephan


I read somewhere that the ctrl key is not recognised in Lyx, so I changed the shortcuts 
in lyx\preferences\Editing\shortcuts, but again nothing happens (for the specific example 
to Command M G G). I have checked and the system is using the mac.bind.

Can anyone suggest a (simple please!) solution? I am a total beginner with Mac 
OS, so I am not at all confindent with meddling with configuration files, and 
would love any solution implementable from inside the Lyx gui.

Thanks!
paola





Re: lyx shortcuts in mac os - can't make them work

2014-07-15 Thread Paola Manzini
Thank you Stephan, I know feel rather silly: since it works for you, I 
kept insisting, looking at the message log, and I finally realised that 
I have to let go of the ctrl key after the first G - thanks a million!

paola


On 15/07/2014 09:56, Stephan Witt wrote:

Am 14.07.2014 um 18:11 schrieb Paola Manzini <pm...@st-andrews.ac.uk>:


Hi All,

I hope somebody can help - I have searched the message board, but there is 
nothing recent that I could find to solve my problem.

I just moved from Windows to Mac (Macbook pro), on OS Maverick, using Lyx 2.1.0 (April 
2014 release). I cannot make most of the shortcuts work. I understand that e.g. the 
shortcut for \gamma, "^ M G G" , stands for ctlr-m-m-g, but if I press this key 
combination nothing happens. Using either the command or option keys instead of ctrl also 
makes no difference (or produces different results).

Hi Paola,

the shortcut for \gamma on Mac is Control-m g g - four key strokes: Control, m, 
g, g.

This works for me.

Stephan


I read somewhere that the ctrl key is not recognised in Lyx, so I changed the shortcuts 
in lyx\preferences\Editing\shortcuts, but again nothing happens (for the specific example 
to "Command M G G"). I have checked and the system is using the mac.bind.

Can anyone suggest a (simple please!) solution? I am a total beginner with Mac 
OS, so I am not at all confindent with meddling with configuration files, and 
would love any solution implementable from inside the Lyx gui.

Thanks!
paola





lyx shortcuts in mac os - can't make them work

2014-07-14 Thread Paola Manzini

Hi All,

I hope somebody can help - I have searched the message board, but there 
is nothing recent that I could find to solve my problem.


I just moved from Windows to Mac (Macbook pro), on OS Maverick, using 
Lyx 2.1.0 (April 2014 release). I cannot make most of the shortcuts 
work. I understand that e.g. the shortcut for \gamma, ^ M G G , stands 
for ctlr-m-m-g, but if I press this key combination nothing happens. 
Using either the command or option keys instead of ctrl also makes no 
difference (or produces different results).


I read somewhere that the ctrl key is not recognised in Lyx, so I 
changed the shortcuts in lyx\preferences\Editing\shortcuts, but again 
nothing happens (for the specific example to Command M G G). I have 
checked and the system is using the mac.bind.


Can anyone suggest a (simple please!) solution? I am a total beginner 
with Mac OS, so I am not at all confindent with meddling with 
configuration files, and would love any solution implementable from 
inside the Lyx gui.


Thanks!
paola



lyx shortcuts in mac os - can't make them work

2014-07-14 Thread Paola Manzini

Hi All,

I hope somebody can help - I have searched the message board, but there 
is nothing recent that I could find to solve my problem.


I just moved from Windows to Mac (Macbook pro), on OS Maverick, using 
Lyx 2.1.0 (April 2014 release). I cannot make most of the shortcuts 
work. I understand that e.g. the shortcut for \gamma, ^ M G G , stands 
for ctlr-m-m-g, but if I press this key combination nothing happens. 
Using either the command or option keys instead of ctrl also makes no 
difference (or produces different results).


I read somewhere that the ctrl key is not recognised in Lyx, so I 
changed the shortcuts in lyx\preferences\Editing\shortcuts, but again 
nothing happens (for the specific example to Command M G G). I have 
checked and the system is using the mac.bind.


Can anyone suggest a (simple please!) solution? I am a total beginner 
with Mac OS, so I am not at all confindent with meddling with 
configuration files, and would love any solution implementable from 
inside the Lyx gui.


Thanks!
paola



lyx shortcuts in mac os - can't make them work

2014-07-14 Thread Paola Manzini

Hi All,

I hope somebody can help - I have searched the message board, but there 
is nothing recent that I could find to solve my problem.


I just moved from Windows to Mac (Macbook pro), on OS Maverick, using 
Lyx 2.1.0 (April 2014 release). I cannot make most of the shortcuts 
work. I understand that e.g. the shortcut for \gamma, "^ M G G" , stands 
for ctlr-m-m-g, but if I press this key combination nothing happens. 
Using either the command or option keys instead of ctrl also makes no 
difference (or produces different results).


I read somewhere that the ctrl key is not recognised in Lyx, so I 
changed the shortcuts in lyx\preferences\Editing\shortcuts, but again 
nothing happens (for the specific example to "Command M G G"). I have 
checked and the system is using the mac.bind.


Can anyone suggest a (simple please!) solution? I am a total beginner 
with Mac OS, so I am not at all confindent with meddling with 
configuration files, and would love any solution implementable from 
inside the Lyx gui.


Thanks!
paola



Re: Filters, etc ... to make ebooks?

2014-04-12 Thread Paola Manzini

Have you tried eLiXer?
http://alexfernandez.github.io/elyxer/

On 12/04/2014 14:16, Frederick FN Noronha ?  *??? 
??? wrote:
Is there some way please to easily convert a Lyx file into an epub 
ebook? FN


--
FN Phone +91-832-2409490 Mobile +91-9822122436
Blog: The View From My Window http://wp.me/1c1F
About.me: http://about.me/noronhafrederick
Goa,1556: http://bit.ly/Goa1556Books2




Re: Filters, etc ... to make ebooks?

2014-04-12 Thread Paola Manzini

Have you tried eLiXer?
http://alexfernandez.github.io/elyxer/

On 12/04/2014 14:16, Frederick FN Noronha ?  *??? 
??? wrote:
Is there some way please to easily convert a Lyx file into an epub 
ebook? FN


--
FN Phone +91-832-2409490 Mobile +91-9822122436
Blog: The View From My Window http://wp.me/1c1F
About.me: http://about.me/noronhafrederick
Goa,1556: http://bit.ly/Goa1556Books2




Re: Filters, etc ... to make ebooks?

2014-04-12 Thread Paola Manzini

Have you tried eLiXer?
http://alexfernandez.github.io/elyxer/

On 12/04/2014 14:16, Frederick FN Noronha ?  *??? 
??? wrote:
Is there some way please to easily convert a Lyx file into an epub 
ebook? FN


--
FN Phone +91-832-2409490 Mobile +91-9822122436
Blog: The View From My Window http://wp.me/1c1F
About.me: http://about.me/noronhafrederick
Goa,1556: http://bit.ly/Goa1556Books2




Re: ANNOUNCE: LyX version 2.1.0 (rc1)

2014-03-27 Thread Paola Manzini

Hi guys,

first of all thanks for your efforts, it does look great! However I am 
still frustrated in using it on my device with a high resolution screen 
(Windows), as the icons are too small (the problem that I highlighted here:

http://comments.gmane.org/gmane.editors.lyx.general/81497

but was unable to solve on my own): any chance this could be solved in 
2.1 final release? I am sure I am not alone with this problem, and from 
the release notes it seems this issue is still there.


Thanks again,
Paola

On 26/03/2014 21:41, Vincent van Ravesteijn wrote:

Public release of LyX version 2.1.0rc1


We are proud to announce the first release candidate of the new
LyX 2.1 series.

With this release, LyX celebrates 18 years of existence. The 2.1 series
has a rich set of new features compared to the current stable series.

LyX 2.1.0rc1 is the culmination of three years of hard work.
This release is meant for testing before we actually release LyX 2.1.

An overview of the new features can be found here:
  http://wiki.lyx.org/LyX/NewInLyX21

You can download LyX 2.1.0rc1 from ftp://ftp.lyx.org/pub/lyx/devel/.

We hope you will enjoy the result!

The file RELEASE-NOTES lists some known issues and problems compared
to the current stable releases (LyX 2.0.x). We strongly recommend that
packagers of LyX on various platforms and distributions read this file.

As with any major release, this one comes with lot of new features but
also some bugs. If you think you have found a bug in LyX 2.1.0rc1,
either email the LyX developers' mailing list (lyx-devel at 
lists.lyx.org),

or open a bug report at http://www.lyx.org/trac/wiki/BugTrackerHome.

If you have trouble using LyX or have a question, consult the
documentation that comes with LyX (under Help) and the LyX wiki, which 
you
will find at http://wiki.lyx.org/. You can also send email to the LyX 
users'

list (lyx-users at lists.lyx.org).

The LyX team.
http://www.lyx.org



--
--

Prof. Paola Manzini
School of Economics and Finance
University of St. Andrews
Castlecliffe, The Scores
St. Andrews KY16 9AL
Scotland, U.K.

tel: +44 (0)1334 462436
fax: +44 (0)1334 462444
http://www.st-andrews.ac.uk/~pm210/
Skype: paolamanzini

The University of St Andrews is a charity registered in Scotland : No SC013532



Re: ANNOUNCE: LyX version 2.1.0 (rc1)

2014-03-27 Thread Paola Manzini

Hi guys,

first of all thanks for your efforts, it does look great! However I am 
still frustrated in using it on my device with a high resolution screen 
(Windows), as the icons are too small (the problem that I highlighted here:

http://comments.gmane.org/gmane.editors.lyx.general/81497

but was unable to solve on my own): any chance this could be solved in 
2.1 final release? I am sure I am not alone with this problem, and from 
the release notes it seems this issue is still there.


Thanks again,
Paola

On 26/03/2014 21:41, Vincent van Ravesteijn wrote:

Public release of LyX version 2.1.0rc1


We are proud to announce the first release candidate of the new
LyX 2.1 series.

With this release, LyX celebrates 18 years of existence. The 2.1 series
has a rich set of new features compared to the current stable series.

LyX 2.1.0rc1 is the culmination of three years of hard work.
This release is meant for testing before we actually release LyX 2.1.

An overview of the new features can be found here:
  http://wiki.lyx.org/LyX/NewInLyX21

You can download LyX 2.1.0rc1 from ftp://ftp.lyx.org/pub/lyx/devel/.

We hope you will enjoy the result!

The file RELEASE-NOTES lists some known issues and problems compared
to the current stable releases (LyX 2.0.x). We strongly recommend that
packagers of LyX on various platforms and distributions read this file.

As with any major release, this one comes with lot of new features but
also some bugs. If you think you have found a bug in LyX 2.1.0rc1,
either email the LyX developers' mailing list (lyx-devel at 
lists.lyx.org),

or open a bug report at http://www.lyx.org/trac/wiki/BugTrackerHome.

If you have trouble using LyX or have a question, consult the
documentation that comes with LyX (under Help) and the LyX wiki, which 
you
will find at http://wiki.lyx.org/. You can also send email to the LyX 
users'

list (lyx-users at lists.lyx.org).

The LyX team.
http://www.lyx.org



--
--

Prof. Paola Manzini
School of Economics and Finance
University of St. Andrews
Castlecliffe, The Scores
St. Andrews KY16 9AL
Scotland, U.K.

tel: +44 (0)1334 462436
fax: +44 (0)1334 462444
http://www.st-andrews.ac.uk/~pm210/
Skype: paolamanzini

The University of St Andrews is a charity registered in Scotland : No SC013532



Re: ANNOUNCE: LyX version 2.1.0 (rc1)

2014-03-27 Thread Paola Manzini

Hi guys,

first of all thanks for your efforts, it does look great! However I am 
still frustrated in using it on my device with a high resolution screen 
(Windows), as the icons are too small (the problem that I highlighted here:

http://comments.gmane.org/gmane.editors.lyx.general/81497

but was unable to solve on my own): any chance this could be solved in 
2.1 final release? I am sure I am not alone with this problem, and from 
the release notes it seems this issue is still there.


Thanks again,
Paola

On 26/03/2014 21:41, Vincent van Ravesteijn wrote:

Public release of LyX version 2.1.0rc1


We are proud to announce the first release candidate of the new
LyX 2.1 series.

With this release, LyX celebrates 18 years of existence. The 2.1 series
has a rich set of new features compared to the current stable series.

LyX 2.1.0rc1 is the culmination of three years of hard work.
This release is meant for testing before we actually release LyX 2.1.

An overview of the new features can be found here:
  http://wiki.lyx.org/LyX/NewInLyX21

You can download LyX 2.1.0rc1 from ftp://ftp.lyx.org/pub/lyx/devel/.

We hope you will enjoy the result!

The file RELEASE-NOTES lists some known issues and problems compared
to the current stable releases (LyX 2.0.x). We strongly recommend that
packagers of LyX on various platforms and distributions read this file.

As with any major release, this one comes with lot of new features but
also some bugs. If you think you have found a bug in LyX 2.1.0rc1,
either email the LyX developers' mailing list (lyx-devel at 
lists.lyx.org),

or open a bug report at http://www.lyx.org/trac/wiki/BugTrackerHome.

If you have trouble using LyX or have a question, consult the
documentation that comes with LyX (under Help) and the LyX wiki, which 
you
will find at http://wiki.lyx.org/. You can also send email to the LyX 
users'

list (lyx-users at lists.lyx.org).

The LyX team.
http://www.lyx.org



--
--

Prof. Paola Manzini
School of Economics and Finance
University of St. Andrews
Castlecliffe, The Scores
St. Andrews KY16 9AL
Scotland, U.K.

tel: +44 (0)1334 462436
fax: +44 (0)1334 462444
http://www.st-andrews.ac.uk/~pm210/
Skype: paolamanzini

The University of St Andrews is a charity registered in Scotland : No SC013532