Re: lyx-1.1.5pre1

2000-05-08 Thread Lars Gullik Bjønnes

robin [EMAIL PROTECTED] writes:

| Thanks to all who have helped me.(table of contents) 
| 
| Now I tried to instal lyx-1.1.5pre1 :
| 
| "./configure" and "make" work fine, but "src/lyx" gives:
| 
| "You are either running LyX wrong version of dynamic Xforms library or
| you have build LyX with conflicing header and library".

Hey, the test works (somewhat)

Are you sure that the xforms lib and the xforms header match?
(Am I sure that the test in main.C is correct?)

|  I don't understand this problem since lyx-1.1.4 works fine and the
|  library xforms required is the same for lyx-1.1.5pre1 ?

Actually 1.1.5pre1 will only work with 0.88 and 0.89.

Lgb




unsupported languages

2000-05-08 Thread Aleksandr Konstantinov

Hello

 I think LyX is great. But I'm missing few features (I'm using LyX
1.1.4fix3).
 I need to write in language not suppoted by standard babel
(lithuanian). 
 So I added nonstandard language to babel package on my computer.  
Unfortunately LyX has all languages and input encodings compiled in.
Are any plans to add such feature ?  
I made a patch (attached below) to make possible to add languages and
input encodings in configuraton file with commands
/add_language language
/add_input_encoding input_encoding
but not sure if this doesn't violate spirit of LyX in some way ?

Another feature I'm missing is support for multilanguge documents 
(something what would automatically change screen fonts and 
add /selectlanguage into tex file). Are there any plans for such feature
?

  Thanks for any answer

  Sorry for bad english.


A.K.
 lyx_add_language.patch


Cite quetion

2000-05-08 Thread Angus Leeming

Is it possible to get Lyx to run citations together?

That is, how can I get the processed output of (e.g. [Dawes92] [Dawes93])* to
look  (e.g. [2,3]) rather than (e.g. [2] [3]) as it is now?

*[Dawes92] is a LyX citation reference, as is [Dawes 93].

Many thanks,
Angus



convert multiplart tex to lyx

2000-05-08 Thread Torsten Mueller

Hallo Lyxers,

I have one multipart tex document and want to import it into lyx (1.0.3).
When I do so, only the main part is converted, all other parts which
are included with \input stay in tex format.

What can I do about this?

Thanks,
Torsten




Problems with 1.1.5.pre1

2000-05-08 Thread Paul Lussier


Hi all,

I just upgraded to LyX 1.1.5pre1, and now when I try to view/update either 
postscript or dvi, I get an error from LyX saying that I had 1 error, and I 
should fix it.  At the command line where I started LyX from I get and error:

sh: none: command not found

Any idea what LyX is really complaining about?  1.1.4pre1 works just fine here.

I'm running Linux/RH6.1.

Thanks,



-- 
Seeya,
Paul

"I always explain our company via interpretive dance.
 I meet lots of interesting people that way."
  Niall Kavanagh, 10 April, 2000

 If you're not having fun, you're not doing it right!





Spanish accents and ispell

2000-05-08 Thread Miguel


Hi,
When using Spanish texts in LyX I see that ispell thinks every word
with an accent is mistyped. Anyone has a way to fix it?
Thanks,
--
Miguel Sanchez Lopez | [EMAIL PROTECTED]
Universidad Politecnica de Valencia | voice:+3496 387 9700
Camino de Vera, 14 | fax: +3496 387 7579
46071 VALENCIA (Spain) |



Cut and paste crash with version 1.1.5pre1.rpm

2000-05-08 Thread Shawn Koons

Having spent the weekend working with lyx, I have come to the conclusion
that cut and paste will not work when the text being cut and pasted
includes hard spaces that have been imported from an ascii file. Every
time I try to  paste text I had just cut or copied that included a hard
space (either in the same line or between paragraphs) the program
crashes. 

I worked around this problem by highlighting the text and
middle-clicking where I wished to place the text. It worked, but is a
definate pain when having to navigate a 50+ page document.

Unfortunately, I have not been able to learn to use gdb yet (I will work
on learning it soon, but have had a hard year of lots of law school
stuff:-| -- then again, I whine.)
I would be willing to post some of the problem text as a file, if that
would help.

I am running Suse 6.4 with Lyx version 1.1.5pre1.rpm which I installed
via YaST. I am also using the document layout 'article'.


Shawn Koons


-- 
Mitakuye Oyasin



Re: A few questions

2000-05-08 Thread jdd

On ven, 05 mai 2000, Lars Gullik Bjønnes à écrit

Note that in the typographic traditions I have seen this is considered
"bad taste", you either skip or indent not both.

as of typographic tradition, may I ask why lyx insists to use a different
skip for the first paragraph after a section. (in fact no skip for this
first §), I never saw this in books neither in the ViewPostscript nor on
the paper...

-- 
http://www.dodin.net mailto:[EMAIL PROTECTED]
QUI EST CET HOMME ? Aidez-moi à le retrouver
WHO'S THAT GUY ? Help me find him.
http://www.dodin.net/serge/index.html




Re: Cite quetion

2000-05-08 Thread Herbert Voss

Angus Leeming wrote:
 
 Is it possible to get Lyx to run citations together?
 
 That is, how can I get the processed output of (e.g. [Dawes92] [Dawes93])* 

[Dawes92, Dawes93] 

the first bibentry with lyx, the second and more by clicking on
the bibmark and insert.

other possibilities with package cite.

Herbert


-- 
[EMAIL PROTECTED]
http://perce.de/voss





word count

2000-05-08 Thread Shawn Koons

Hello:

Forgive this possible faq, but is there a way to do a word count in lyx
(I have checked the documentation and found nothing) - or - should I
convert to ascii and check it that way?

Shawn
-- 
Mitakuye Oyasin



Re: word count

2000-05-08 Thread Ned Konz

Shawn Koons wrote:
 
 Hello:
 
 Forgive this possible faq, but is there a way to do a word count in lyx
 (I have checked the documentation and found nothing) - or - should I
 convert to ascii and check it that way?
 
 Shawn
 --
 Mitakuye Oyasin

Well, here's a perl script that should do something close (this defines
a "word"
as a group of letters and/or apostrophes or dashes). Uncomment the
"print" line
to see if it leaves the words you want.

#!/usr/bin/perl -w
# Count words in a lyx file
my $total = 0;
while ()
{
chomp;
next if ($. == 1) || m'^\\' || m'^$';
tr/-a-zA-Z' / /cds;
tr/'//;
# print "$_\n"; # uncomment to see it operating
$total += split;
}
print "$total\n";

-- 
Ned Konz
currently: Stanwood, WA
email: [EMAIL PROTECTED]
homepage:  http://www.bike-nomad.com



Re: word count

2000-05-08 Thread Ralph Boland

Shawn Koons wrote:
 
 Hello:
 
 Forgive this possible faq, but is there a way to do a word count in lyx
 (I have checked the documentation and found nothing) - or - should I
 convert to ascii and check it that way?
 
 Shawn
 --
 Mitakuye Oyasin

If you run the spell checker it will tell you how many words 
were checked.  

Alternatively export the file to a latex file.
There is supposed to be a program to strip out all the
latex commands.  Then you can use wc.

I don't know what the program to strip out latex
commands is called but perhaps
you can use that.
If I find out the name I'll let you know.
Hope this helps 

Ralph boland



Re: lyx-1.1.5pre1

2000-05-08 Thread Lars Gullik Bjønnes

robin [EMAIL PROTECTED] writes:

| Thanks to all who have helped me.(table of contents) 
| 
| Now I tried to instal lyx-1.1.5pre1 :
| 
| "./configure" and "make" work fine, but "src/lyx" gives:
| 
| "You are either running LyX wrong version of dynamic Xforms library or
| you have build LyX with conflicing header and library".

Hey, the test works (somewhat)

Are you sure that the xforms lib and the xforms header match?
(Am I sure that the test in main.C is correct?)

|  I don't understand this problem since lyx-1.1.4 works fine and the
|  library xforms required is the same for lyx-1.1.5pre1 ?

Actually 1.1.5pre1 will only work with 0.88 and 0.89.

Lgb




unsupported languages

2000-05-08 Thread Aleksandr Konstantinov

Hello

 I think LyX is great. But I'm missing few features (I'm using LyX
1.1.4fix3).
 I need to write in language not suppoted by standard babel
(lithuanian). 
 So I added nonstandard language to babel package on my computer.  
Unfortunately LyX has all languages and input encodings compiled in.
Are any plans to add such feature ?  
I made a patch (attached below) to make possible to add languages and
input encodings in configuraton file with commands
/add_language language
/add_input_encoding input_encoding
but not sure if this doesn't violate spirit of LyX in some way ?

Another feature I'm missing is support for multilanguge documents 
(something what would automatically change screen fonts and 
add /selectlanguage into tex file). Are there any plans for such feature
?

  Thanks for any answer

  Sorry for bad english.


A.K.
 lyx_add_language.patch


Cite quetion

2000-05-08 Thread Angus Leeming

Is it possible to get Lyx to run citations together?

That is, how can I get the processed output of (e.g. [Dawes92] [Dawes93])* to
look  (e.g. [2,3]) rather than (e.g. [2] [3]) as it is now?

*[Dawes92] is a LyX citation reference, as is [Dawes 93].

Many thanks,
Angus



convert multiplart tex to lyx

2000-05-08 Thread Torsten Mueller

Hallo Lyxers,

I have one multipart tex document and want to import it into lyx (1.0.3).
When I do so, only the main part is converted, all other parts which
are included with \input stay in tex format.

What can I do about this?

Thanks,
Torsten




Problems with 1.1.5.pre1

2000-05-08 Thread Paul Lussier


Hi all,

I just upgraded to LyX 1.1.5pre1, and now when I try to view/update either 
postscript or dvi, I get an error from LyX saying that I had 1 error, and I 
should fix it.  At the command line where I started LyX from I get and error:

sh: none: command not found

Any idea what LyX is really complaining about?  1.1.4pre1 works just fine here.

I'm running Linux/RH6.1.

Thanks,



-- 
Seeya,
Paul

"I always explain our company via interpretive dance.
 I meet lots of interesting people that way."
  Niall Kavanagh, 10 April, 2000

 If you're not having fun, you're not doing it right!





Spanish accents and ispell

2000-05-08 Thread Miguel


Hi,
When using Spanish texts in LyX I see that ispell thinks every word
with an accent is mistyped. Anyone has a way to fix it?
Thanks,
--
Miguel Sanchez Lopez | [EMAIL PROTECTED]
Universidad Politecnica de Valencia | voice:+3496 387 9700
Camino de Vera, 14 | fax: +3496 387 7579
46071 VALENCIA (Spain) |



Cut and paste crash with version 1.1.5pre1.rpm

2000-05-08 Thread Shawn Koons

Having spent the weekend working with lyx, I have come to the conclusion
that cut and paste will not work when the text being cut and pasted
includes hard spaces that have been imported from an ascii file. Every
time I try to  paste text I had just cut or copied that included a hard
space (either in the same line or between paragraphs) the program
crashes. 

I worked around this problem by highlighting the text and
middle-clicking where I wished to place the text. It worked, but is a
definate pain when having to navigate a 50+ page document.

Unfortunately, I have not been able to learn to use gdb yet (I will work
on learning it soon, but have had a hard year of lots of law school
stuff:-| -- then again, I whine.)
I would be willing to post some of the problem text as a file, if that
would help.

I am running Suse 6.4 with Lyx version 1.1.5pre1.rpm which I installed
via YaST. I am also using the document layout 'article'.


Shawn Koons


-- 
Mitakuye Oyasin



Re: A few questions

2000-05-08 Thread jdd

On ven, 05 mai 2000, Lars Gullik Bjønnes à écrit

Note that in the typographic traditions I have seen this is considered
"bad taste", you either skip or indent not both.

as of typographic tradition, may I ask why lyx insists to use a different
skip for the first paragraph after a section. (in fact no skip for this
first §), I never saw this in books neither in the ViewPostscript nor on
the paper...

-- 
http://www.dodin.net mailto:[EMAIL PROTECTED]
QUI EST CET HOMME ? Aidez-moi à le retrouver
WHO'S THAT GUY ? Help me find him.
http://www.dodin.net/serge/index.html




Re: Cite quetion

2000-05-08 Thread Herbert Voss

Angus Leeming wrote:
 
 Is it possible to get Lyx to run citations together?
 
 That is, how can I get the processed output of (e.g. [Dawes92] [Dawes93])* 

[Dawes92, Dawes93] 

the first bibentry with lyx, the second and more by clicking on
the bibmark and insert.

other possibilities with package cite.

Herbert


-- 
[EMAIL PROTECTED]
http://perce.de/voss





word count

2000-05-08 Thread Shawn Koons

Hello:

Forgive this possible faq, but is there a way to do a word count in lyx
(I have checked the documentation and found nothing) - or - should I
convert to ascii and check it that way?

Shawn
-- 
Mitakuye Oyasin



Re: word count

2000-05-08 Thread Ned Konz

Shawn Koons wrote:
 
 Hello:
 
 Forgive this possible faq, but is there a way to do a word count in lyx
 (I have checked the documentation and found nothing) - or - should I
 convert to ascii and check it that way?
 
 Shawn
 --
 Mitakuye Oyasin

Well, here's a perl script that should do something close (this defines
a "word"
as a group of letters and/or apostrophes or dashes). Uncomment the
"print" line
to see if it leaves the words you want.

#!/usr/bin/perl -w
# Count words in a lyx file
my $total = 0;
while ()
{
chomp;
next if ($. == 1) || m'^\\' || m'^$';
tr/-a-zA-Z' / /cds;
tr/'//;
# print "$_\n"; # uncomment to see it operating
$total += split;
}
print "$total\n";

-- 
Ned Konz
currently: Stanwood, WA
email: [EMAIL PROTECTED]
homepage:  http://www.bike-nomad.com



Re: word count

2000-05-08 Thread Ralph Boland

Shawn Koons wrote:
 
 Hello:
 
 Forgive this possible faq, but is there a way to do a word count in lyx
 (I have checked the documentation and found nothing) - or - should I
 convert to ascii and check it that way?
 
 Shawn
 --
 Mitakuye Oyasin

If you run the spell checker it will tell you how many words 
were checked.  

Alternatively export the file to a latex file.
There is supposed to be a program to strip out all the
latex commands.  Then you can use wc.

I don't know what the program to strip out latex
commands is called but perhaps
you can use that.
If I find out the name I'll let you know.
Hope this helps 

Ralph boland



Re: lyx-1.1.5pre1

2000-05-08 Thread Lars Gullik Bjønnes

robin <[EMAIL PROTECTED]> writes:

| Thanks to all who have helped me.(table of contents) 
| 
| Now I tried to instal lyx-1.1.5pre1 :
| 
| "./configure" and "make" work fine, but "src/lyx" gives:
| 
| "You are either running LyX wrong version of dynamic Xforms library or
| you have build LyX with conflicing header and library".

Hey, the test works (somewhat)

Are you sure that the xforms lib and the xforms header match?
(Am I sure that the test in main.C is correct?)

|  I don't understand this problem since lyx-1.1.4 works fine and the
|  library xforms required is the same for lyx-1.1.5pre1 ?

Actually 1.1.5pre1 will only work with 0.88 and 0.89.

Lgb




unsupported languages

2000-05-08 Thread Aleksandr Konstantinov

Hello

 I think LyX is great. But I'm missing few features (I'm using LyX
1.1.4fix3).
 I need to write in language not suppoted by standard babel
(lithuanian). 
 So I added nonstandard language to babel package on my computer.  
Unfortunately LyX has all languages and input encodings compiled in.
Are any plans to add such feature ?  
I made a patch (attached below) to make possible to add languages and
input encodings in configuraton file with commands
/add_language language
/add_input_encoding input_encoding
but not sure if this doesn't violate spirit of LyX in some way ?

Another feature I'm missing is support for multilanguge documents 
(something what would automatically change screen fonts and 
add /selectlanguage into tex file). Are there any plans for such feature
?

  Thanks for any answer

  Sorry for bad english.


A.K.
 lyx_add_language.patch


Cite quetion

2000-05-08 Thread Angus Leeming

Is it possible to get Lyx to run citations together?

That is, how can I get the processed output of (e.g. [Dawes92] [Dawes93])* to
look  (e.g. [2,3]) rather than (e.g. [2] [3]) as it is now?

*[Dawes92] is a LyX citation reference, as is [Dawes 93].

Many thanks,
Angus



convert multiplart tex to lyx

2000-05-08 Thread Torsten Mueller

Hallo Lyxers,

I have one multipart tex document and want to import it into lyx (1.0.3).
When I do so, only the main part is converted, all other parts which
are included with \input stay in tex format.

What can I do about this?

Thanks,
Torsten




Problems with 1.1.5.pre1

2000-05-08 Thread Paul Lussier


Hi all,

I just upgraded to LyX 1.1.5pre1, and now when I try to view/update either 
postscript or dvi, I get an error from LyX saying that I had 1 error, and I 
should fix it.  At the command line where I started LyX from I get and error:

sh: none: command not found

Any idea what LyX is really complaining about?  1.1.4pre1 works just fine here.

I'm running Linux/RH6.1.

Thanks,



-- 
Seeya,
Paul

"I always explain our company via interpretive dance.
 I meet lots of interesting people that way."
  Niall Kavanagh, 10 April, 2000

 If you're not having fun, you're not doing it right!





Spanish accents and ispell

2000-05-08 Thread Miguel


Hi,
When using Spanish texts in LyX I see that ispell thinks every word
with an accent is mistyped. Anyone has a way to fix it?
Thanks,
-- 
Miguel Sanchez Lopez    |   [EMAIL PROTECTED]
Universidad Politecnica de Valencia | voice:+3496 387 9700  
Camino de Vera, 14  | fax:  +3496 387 7579 
46071 VALENCIA (Spain)  |
 


Cut and paste crash with version 1.1.5pre1.rpm

2000-05-08 Thread Shawn Koons

Having spent the weekend working with lyx, I have come to the conclusion
that cut and paste will not work when the text being cut and pasted
includes hard spaces that have been imported from an ascii file. Every
time I try to  paste text I had just cut or copied that included a hard
space (either in the same line or between paragraphs) the program
crashes. 

I worked around this problem by highlighting the text and
middle-clicking where I wished to place the text. It worked, but is a
definate pain when having to navigate a 50+ page document.

Unfortunately, I have not been able to learn to use gdb yet (I will work
on learning it soon, but have had a hard year of lots of law school
stuff:-| -- then again, I whine.)
I would be willing to post some of the problem text as a file, if that
would help.

I am running Suse 6.4 with Lyx version 1.1.5pre1.rpm which I installed
via YaST. I am also using the document layout 'article'.


Shawn Koons


-- 
Mitakuye Oyasin



Re: A few questions

2000-05-08 Thread jdd

On ven, 05 mai 2000, Lars Gullik Bjønnes à écrit

>Note that in the typographic traditions I have seen this is considered
>"bad taste", you either skip or indent not both.

as of typographic tradition, may I ask why lyx insists to use a different
skip for the first paragraph after a section. (in fact no skip for this
first §), I never saw this in books neither in the ViewPostscript nor on
the paper...

-- 
 
QUI EST CET HOMME ? Aidez-moi à le retrouver
WHO'S THAT GUY ? Help me find him.
http://www.dodin.net/serge/index.html




Re: Cite quetion

2000-05-08 Thread Herbert Voss

Angus Leeming wrote:
> 
> Is it possible to get Lyx to run citations together?
> 
> That is, how can I get the processed output of (e.g. [Dawes92] [Dawes93])* 

[Dawes92, Dawes93] 

the first bibentry with lyx, the second and more by clicking on
the bibmark and insert.

other possibilities with package cite.

Herbert


-- 
[EMAIL PROTECTED]
http://perce.de/voss





word count

2000-05-08 Thread Shawn Koons

Hello:

Forgive this possible faq, but is there a way to do a word count in lyx
(I have checked the documentation and found nothing) - or - should I
convert to ascii and check it that way?

Shawn
-- 
Mitakuye Oyasin



Re: word count

2000-05-08 Thread Ned Konz

Shawn Koons wrote:
> 
> Hello:
> 
> Forgive this possible faq, but is there a way to do a word count in lyx
> (I have checked the documentation and found nothing) - or - should I
> convert to ascii and check it that way?
> 
> Shawn
> --
> Mitakuye Oyasin

Well, here's a perl script that should do something close (this defines
a "word"
as a group of letters and/or apostrophes or dashes). Uncomment the
"print" line
to see if it leaves the words you want.

#!/usr/bin/perl -w
# Count words in a lyx file
my $total = 0;
while (<>)
{
chomp;
next if ($. == 1) || m'^\\' || m'^$';
tr/-a-zA-Z' / /cds;
tr/'//;
# print "$_\n"; # uncomment to see it operating
$total += split;
}
print "$total\n";

-- 
Ned Konz
currently: Stanwood, WA
email: [EMAIL PROTECTED]
homepage:  http://www.bike-nomad.com



Re: word count

2000-05-08 Thread Ralph Boland

Shawn Koons wrote:
> 
> Hello:
> 
> Forgive this possible faq, but is there a way to do a word count in lyx
> (I have checked the documentation and found nothing) - or - should I
> convert to ascii and check it that way?
> 
> Shawn
> --
> Mitakuye Oyasin

If you run the spell checker it will tell you how many words 
were checked.  

Alternatively export the file to a latex file.
There is supposed to be a program to strip out all the
latex commands.  Then you can use wc.

I don't know what the program to strip out latex
commands is called but perhaps
you can use that.
If I find out the name I'll let you know.
Hope this helps 

Ralph boland