Enumerated lists

2007-01-16 Thread Nicolás

Hi!

I am wondering if v1.5 supports different enumeration styles (apart from the standard enumeration style with arabic numbers), such as 
a),b),... or i.,ii.,...

I think some of these styles are commonly used, so it would be great if LyX had 
standard support for them.

Cheers,
Nicolás


[announce] LyX150svn from 15-01-2007 for Windows

2007-01-16 Thread Uwe Stöhr

Hello LyXTesters,

I published a new version with LyX1.5.0svn from 15-01-2007:

http://developer.berlios.de/project/showfiles.php?group_id=5117release_id=12024

This fixes a problem that LyX couldn't be started on some machines.

Installer Changelog:

- LyX 1.5svn from 15-01-2007:
  - improved bookmark handling
  - copy/paste now possible between LyX-files opened in different LyX instances 
(programs).
  - updated documentation
- this LyX 1.5svn build can now be started on every Windows 2000/XP machine

- updated Readme files for the installer sourcecode:
  - mention the Galician translation files for NSIS

- updated Galician translation of the installer

Known problem:
- LyX's package and class database is incomplete when you don't have an open 
internet
  connection while LyX is first started. (This is a bug in MiKTeX.)
  Workaround: open an internet connection and reconfigure LyX


happy testing and best regards
Uwe

--- disclaimer ---
LyXsvn builds are for testers and interested LyXers to see the new
features.
If you find bugs, please have a look at
http://bugzilla.lyx.org
and report them there if they aren't already reported.

Note! LyX1.5svn is still in alpha state, that means it is under very
active development. Therefore things can change every day, so
don't use LyX1.5svn for production!


Re: Enumerated lists

2007-01-16 Thread Andreas K .
Nicolás [EMAIL PROTECTED] writes:

 
 Hi!
 
 I am wondering if v1.5 supports different enumeration styles (apart from the 
standard enumeration style
 with arabic numbers), such as 
 a),b),... or i.,ii.,...
 I think some of these styles are commonly used, so it would be great if LyX 
had standard support for them.
 
 Cheers,
 Nicolás
 
 

Hi,
If you make your voice heard here:

http://bugzilla.lyx.org/show_bug.cgi?id=2986

then maybe it will be implemented.

Regards,
Andreas





Re: [announce] LyX150svn from 15-01-2007 for Windows

2007-01-16 Thread Andreas K .
Uwe Stöhr [EMAIL PROTECTED] writes:

 
 Hello LyXTesters,
 
 I published a new version with LyX1.5.0svn from 15-01-2007:
 
 http://developer.berlios.de/project/showfiles.php?
group_id=5117release_id=12024
 


Thanks a lot. Keep ut the good work.

Regards,
Andreas





Problem viewing generated dvi

2007-01-16 Thread Srinivas Nedunuri
Hello, I am running Lyx 1.4.1 on Windows XP. I am unable to view the
DraftDVI as suggested in the Tutorial. When I select View | DraftDVI I get
No information for viewing Draft DVI. Selecting View | PDF (either option)
produces similar messages.

If I try File | Export | DraftDVI I
get an error popup from the 16bit MS-DOS Subsystem (!) that says The NTVDM
CPU has encountered an illegal instruction. I don't know if this is
reltated to the problem or not but I couldn't see anywhere to configure the
location of the dvi previwer.

thanks
PS I ran reconfigure







how to produce hatted (circumflex) symbols in Lyx?

2007-01-16 Thread Srinivas Nedunuri
..besides typing in some ERT? 





Re: Problem viewing generated dvi

2007-01-16 Thread Todd Denniston

Srinivas Nedunuri wrote:

Hello, I am running Lyx 1.4.1 on Windows XP. I am unable to view the
DraftDVI as suggested in the Tutorial. When I select View | DraftDVI I get
No information for viewing Draft DVI. Selecting View | PDF (either option)
produces similar messages.

If I try File | Export | DraftDVI I
get an error popup from the 16bit MS-DOS Subsystem (!) that says The NTVDM
CPU has encountered an illegal instruction. I don't know if this is
reltated to the problem or not but I couldn't see anywhere to configure the
location of the dvi previwer.



I could be wrong but the last time I had a message like that {... CPU ... 
illegal instruction}, it was because the program I was trying to run was 
compiled for i686 and the processor on my machine was an i586.


It might help to know:
A) What processor your machine has. (I don't remember how to find that on 
windows.)
B) What processor the DVI viewer was built for. (you'll probably need to ask 
the folks who built it, AFAIK that would be the MiKTeX crew assuming you used 
Uwe's installer.)
if the DVI viewer was built for an older processor than the one you have, then 
the problem I NOT what I thought it was.


I hope this is helpful.


--
Todd Denniston
Crane Division, Naval Surface Warfare Center (NSWC Crane)
Harnessing the Power of Technology for the Warfighter


Re: how to produce hatted (circumflex) symbols in Lyx?

2007-01-16 Thread Paul A. Rubin

Srinivas Nedunuri wrote:
..besides typing in some ERT? 







Tool-Preferences...-Look and feel-Keyboard, check Use keyboard map, 
then select a map by browsing.  You want one that supports accents (such 
as 'american').  Save, exit and restart LyX.  Thereafter, hitting an 
accent key (including ^) accents the next letter you type; 
double-tapping the accent key prints the accent by itself.


/Paul



Re: Deriving a new LyX environment

2007-01-16 Thread Steve Litt
On Friday 21 January 2005 13:52, Matej Cepl wrote:
 Steve Litt wrote:
  How do I derive a new LyX environment based on an existing one? For
  instance, I'd like to derive a superdefinition environment based on the
  existing Description environment.
 
  I know how to do it in LaTeX:
 
  \let\oldmystyle=\mystyle
  \def\mystyle{
  \oldmystyle
  %%% Place LaTeX for modifications here
  }

 Two things needs to be distinguished (using LaTeX terminology) -- commands
 and environments. What you have shown here is redefinition of command,
 however description (used by Description layout) is an environment, where
 things are slightly more complicated. Try this:

\let\olddescription=\description
\let\endolddescription=\enddescription
\renewenvironment{description}{%
\begin{olddescription}%
%modifications in the beginning of the environment
   }{%
%modifications in the end of the environment
\end{olddescription}}

 Does it work?

Hi Matej (and anyone else who can answer this question)

First, forgive my replying to a two year old post, but I need this information 
and knew that once upon a time Matej had posted it.

What I want to know is this: where does \enddescription come from? Does every 
environment named \foo also have an \endfoo that refers to the stuff that 
gets done after the last piece of text covered from the environment? If so, 
how does that happen? If not, how does Matej's code above work (I tried it 2 
years ago and indeed it did work).

I'm writing an article I think will greatly simplify explaining LaTeX and 
therefore greatly simplify creating or modifying environments (HOORAY), but 
in order to write the doc I not only need to describe the trick above, but I 
need to explain why it works?

Does LaTeX's \newenvironment{myenvironment} automatically create not only 
\myenvironment, but also \endmyenvironment?

Thanks

SteveT

Steve Litt
Author: Universal Troubleshooting Process books and courseware
http://www.troubleshooters.com/


appendix package

2007-01-16 Thread Bob Lounsbury

Hello,

Has anyone used the appendix package so that the table of contents  
looks like ...


'Appendix A Title'

instead of ...

'A Title'?

I've tried all kinds of different ways reading through the appendix  
package documentation with no success. There is an option 'titletoc'  
for the appendices environment listed in the documentation that is  
supposed to do exactly what I would like, but I must not be using it  
correctly.


What I did was start a new document, standard 'book' class. Inserted  
a toc, chapter, start appendix here command, then an appendix  
chapter. I then inserted '\usepackage[titletoc]{appendix}' into the  
preamble. Didn't work. I also tried the standard 'article' class and  
various other commands listed in the appendix package documentation  
to no avail.


Thanks,
Bob Lounsbury
[EMAIL PROTECTED]
--
Please, if possible, don't send me MS Word or Powerpoint attachments.
Send plain text, rich text format, html, or pdf instead.
Why? See: http://www.gnu.org/philosophy/no-word-attachments.html
--
As an alternative to MS Word or Powerpoint.
LyX, OpenOffice




Re: Deriving a new LyX environment

2007-01-16 Thread Steve Litt
On Tuesday 16 January 2007 16:41, Steve Litt wrote:
 On Friday 21 January 2005 13:52, Matej Cepl wrote:
  Steve Litt wrote:
   How do I derive a new LyX environment based on an existing one? For
   instance, I'd like to derive a superdefinition environment based on
   the existing Description environment.
  
   I know how to do it in LaTeX:
  
   \let\oldmystyle=\mystyle
   \def\mystyle{
   \oldmystyle
   %%% Place LaTeX for modifications here
   }
 
  Two things needs to be distinguished (using LaTeX terminology) --
  commands and environments. What you have shown here is redefinition of
  command, however description (used by Description layout) is an
  environment, where things are slightly more complicated. Try this:
 
 \let\olddescription=\description
 \let\endolddescription=\enddescription
 \renewenvironment{description}{%
 \begin{olddescription}%
 %modifications in the beginning of the environment
}{%
 %modifications in the end of the environment
 \end{olddescription}}
 
  Does it work?

 Hi Matej (and anyone else who can answer this question)

 First, forgive my replying to a two year old post, but I need this
 information and knew that once upon a time Matej had posted it.

 What I want to know is this: where does \enddescription come from? 

I just realized neither \endolddescription nor \enddescription are used 
subsequently. What's the purpose of the line:

\let\endolddescription=\enddescription

Thanks

SteveT

Steve Litt
Author: Universal Troubleshooting Process books and courseware
http://www.troubleshooters.com/


Problems with babel configuration

2007-01-16 Thread Daniel Escamilla
Hello list,

I've tried babel package for spanish languague and I always obtain the 
following message, both lyx and latex:

Package babel Error: You haven't defined the language SPANISH yet.
 \end{document}

Checking the log file, I've found the following info:

LaTeX2e 2003/12/01
Babel v3.8d and hyphenation patterns for american, french, german, ngerman, b
ahasa, basque, bulgarian, catalan, croatian, czech, danish, dutch, esperanto, e
stonian, finnish, greek, icelandic, irish, italian, latin, magyar, norsk, polis
h, portuges, romanian, russian, serbian, slovak, slovene, spanish, swedish, tur
kish, ukrainian, nohyphenation, loaded.
(/usr/share/texmf/tex/latex/IEEEtran/IEEEtran.cls

So, it says everything is correct, Could anybody give me a hand to fix the 
problem?

Thanx a lot.

-
Daniel Gerardo Escamilla Montoya
Ingeniero Electrónico




Re: Problems with babel configuration

2007-01-16 Thread Uwe Stöhr

Daniel Escamilla schrieb:


I've tried babel package for spanish languague and I always obtain the 
following message, both lyx and latex:

Package babel Error: You haven't defined the language SPANISH yet.
 \end{document}


If this problem appear, try to do compile the file again, or reopen the document and then recompile 
it. If this doesn't help, you have set something wrong in the document preamble.


regards Uwe


tex4ht

2007-01-16 Thread faunt

On Sun, 14 Jan 2007, Jens Noeckel wrote:


Jamie,
good to know the setup is basically working now. For HTML export, all I can 
say is that I only do that from the command line (since LyX to me is simply 
an editor, not a swiss army knife), and tex4ht works fine for me. Just in 
case you want to revisit it later:


Jens, You've got me interested so I'm trying it again -- from the command 
line. The problem is that I obviously need and can't find documentation. 
Executing tex4ht gives some basic info but not enough for me to get it to 
work. It seems to want a .dvi file. So I tried running one of those and it 
creates a few files which to me are cryptic, and no .html files.


I searched for documentation and came up with a .info file. But it seems 
to be for texinfo -- to which I'm sure tex4ht is related in some way. But 
in searching that doc I come up with nothing on tex4ht in particular. Am I 
looking in the right place? Also there's no man file -- at least that fink 
installed.


Looks like it's quite powerful based on what I can glean and the extensive 
library that comes with it. But I can't get to 1st base. Can you point to 
a starting place?


thanks much,
jamie


Enumerated lists

2007-01-16 Thread Nicolás

Hi!

I am wondering if v1.5 supports different enumeration styles (apart from the standard enumeration style with arabic numbers), such as 
a),b),... or i.,ii.,...

I think some of these styles are commonly used, so it would be great if LyX had 
standard support for them.

Cheers,
Nicolás


[announce] LyX150svn from 15-01-2007 for Windows

2007-01-16 Thread Uwe Stöhr

Hello LyXTesters,

I published a new version with LyX1.5.0svn from 15-01-2007:

http://developer.berlios.de/project/showfiles.php?group_id=5117release_id=12024

This fixes a problem that LyX couldn't be started on some machines.

Installer Changelog:

- LyX 1.5svn from 15-01-2007:
  - improved bookmark handling
  - copy/paste now possible between LyX-files opened in different LyX instances 
(programs).
  - updated documentation
- this LyX 1.5svn build can now be started on every Windows 2000/XP machine

- updated Readme files for the installer sourcecode:
  - mention the Galician translation files for NSIS

- updated Galician translation of the installer

Known problem:
- LyX's package and class database is incomplete when you don't have an open 
internet
  connection while LyX is first started. (This is a bug in MiKTeX.)
  Workaround: open an internet connection and reconfigure LyX


happy testing and best regards
Uwe

--- disclaimer ---
LyXsvn builds are for testers and interested LyXers to see the new
features.
If you find bugs, please have a look at
http://bugzilla.lyx.org
and report them there if they aren't already reported.

Note! LyX1.5svn is still in alpha state, that means it is under very
active development. Therefore things can change every day, so
don't use LyX1.5svn for production!


Re: Enumerated lists

2007-01-16 Thread Andreas K .
Nicolás [EMAIL PROTECTED] writes:

 
 Hi!
 
 I am wondering if v1.5 supports different enumeration styles (apart from the 
standard enumeration style
 with arabic numbers), such as 
 a),b),... or i.,ii.,...
 I think some of these styles are commonly used, so it would be great if LyX 
had standard support for them.
 
 Cheers,
 Nicolás
 
 

Hi,
If you make your voice heard here:

http://bugzilla.lyx.org/show_bug.cgi?id=2986

then maybe it will be implemented.

Regards,
Andreas





Re: [announce] LyX150svn from 15-01-2007 for Windows

2007-01-16 Thread Andreas K .
Uwe Stöhr [EMAIL PROTECTED] writes:

 
 Hello LyXTesters,
 
 I published a new version with LyX1.5.0svn from 15-01-2007:
 
 http://developer.berlios.de/project/showfiles.php?
group_id=5117release_id=12024
 


Thanks a lot. Keep ut the good work.

Regards,
Andreas





Problem viewing generated dvi

2007-01-16 Thread Srinivas Nedunuri
Hello, I am running Lyx 1.4.1 on Windows XP. I am unable to view the
DraftDVI as suggested in the Tutorial. When I select View | DraftDVI I get
No information for viewing Draft DVI. Selecting View | PDF (either option)
produces similar messages.

If I try File | Export | DraftDVI I
get an error popup from the 16bit MS-DOS Subsystem (!) that says The NTVDM
CPU has encountered an illegal instruction. I don't know if this is
reltated to the problem or not but I couldn't see anywhere to configure the
location of the dvi previwer.

thanks
PS I ran reconfigure







how to produce hatted (circumflex) symbols in Lyx?

2007-01-16 Thread Srinivas Nedunuri
..besides typing in some ERT? 





Re: Problem viewing generated dvi

2007-01-16 Thread Todd Denniston

Srinivas Nedunuri wrote:

Hello, I am running Lyx 1.4.1 on Windows XP. I am unable to view the
DraftDVI as suggested in the Tutorial. When I select View | DraftDVI I get
No information for viewing Draft DVI. Selecting View | PDF (either option)
produces similar messages.

If I try File | Export | DraftDVI I
get an error popup from the 16bit MS-DOS Subsystem (!) that says The NTVDM
CPU has encountered an illegal instruction. I don't know if this is
reltated to the problem or not but I couldn't see anywhere to configure the
location of the dvi previwer.



I could be wrong but the last time I had a message like that {... CPU ... 
illegal instruction}, it was because the program I was trying to run was 
compiled for i686 and the processor on my machine was an i586.


It might help to know:
A) What processor your machine has. (I don't remember how to find that on 
windows.)
B) What processor the DVI viewer was built for. (you'll probably need to ask 
the folks who built it, AFAIK that would be the MiKTeX crew assuming you used 
Uwe's installer.)
if the DVI viewer was built for an older processor than the one you have, then 
the problem I NOT what I thought it was.


I hope this is helpful.


--
Todd Denniston
Crane Division, Naval Surface Warfare Center (NSWC Crane)
Harnessing the Power of Technology for the Warfighter


Re: how to produce hatted (circumflex) symbols in Lyx?

2007-01-16 Thread Paul A. Rubin

Srinivas Nedunuri wrote:
..besides typing in some ERT? 







Tool-Preferences...-Look and feel-Keyboard, check Use keyboard map, 
then select a map by browsing.  You want one that supports accents (such 
as 'american').  Save, exit and restart LyX.  Thereafter, hitting an 
accent key (including ^) accents the next letter you type; 
double-tapping the accent key prints the accent by itself.


/Paul



Re: Deriving a new LyX environment

2007-01-16 Thread Steve Litt
On Friday 21 January 2005 13:52, Matej Cepl wrote:
 Steve Litt wrote:
  How do I derive a new LyX environment based on an existing one? For
  instance, I'd like to derive a superdefinition environment based on the
  existing Description environment.
 
  I know how to do it in LaTeX:
 
  \let\oldmystyle=\mystyle
  \def\mystyle{
  \oldmystyle
  %%% Place LaTeX for modifications here
  }

 Two things needs to be distinguished (using LaTeX terminology) -- commands
 and environments. What you have shown here is redefinition of command,
 however description (used by Description layout) is an environment, where
 things are slightly more complicated. Try this:

\let\olddescription=\description
\let\endolddescription=\enddescription
\renewenvironment{description}{%
\begin{olddescription}%
%modifications in the beginning of the environment
   }{%
%modifications in the end of the environment
\end{olddescription}}

 Does it work?

Hi Matej (and anyone else who can answer this question)

First, forgive my replying to a two year old post, but I need this information 
and knew that once upon a time Matej had posted it.

What I want to know is this: where does \enddescription come from? Does every 
environment named \foo also have an \endfoo that refers to the stuff that 
gets done after the last piece of text covered from the environment? If so, 
how does that happen? If not, how does Matej's code above work (I tried it 2 
years ago and indeed it did work).

I'm writing an article I think will greatly simplify explaining LaTeX and 
therefore greatly simplify creating or modifying environments (HOORAY), but 
in order to write the doc I not only need to describe the trick above, but I 
need to explain why it works?

Does LaTeX's \newenvironment{myenvironment} automatically create not only 
\myenvironment, but also \endmyenvironment?

Thanks

SteveT

Steve Litt
Author: Universal Troubleshooting Process books and courseware
http://www.troubleshooters.com/


appendix package

2007-01-16 Thread Bob Lounsbury

Hello,

Has anyone used the appendix package so that the table of contents  
looks like ...


'Appendix A Title'

instead of ...

'A Title'?

I've tried all kinds of different ways reading through the appendix  
package documentation with no success. There is an option 'titletoc'  
for the appendices environment listed in the documentation that is  
supposed to do exactly what I would like, but I must not be using it  
correctly.


What I did was start a new document, standard 'book' class. Inserted  
a toc, chapter, start appendix here command, then an appendix  
chapter. I then inserted '\usepackage[titletoc]{appendix}' into the  
preamble. Didn't work. I also tried the standard 'article' class and  
various other commands listed in the appendix package documentation  
to no avail.


Thanks,
Bob Lounsbury
[EMAIL PROTECTED]
--
Please, if possible, don't send me MS Word or Powerpoint attachments.
Send plain text, rich text format, html, or pdf instead.
Why? See: http://www.gnu.org/philosophy/no-word-attachments.html
--
As an alternative to MS Word or Powerpoint.
LyX, OpenOffice




Re: Deriving a new LyX environment

2007-01-16 Thread Steve Litt
On Tuesday 16 January 2007 16:41, Steve Litt wrote:
 On Friday 21 January 2005 13:52, Matej Cepl wrote:
  Steve Litt wrote:
   How do I derive a new LyX environment based on an existing one? For
   instance, I'd like to derive a superdefinition environment based on
   the existing Description environment.
  
   I know how to do it in LaTeX:
  
   \let\oldmystyle=\mystyle
   \def\mystyle{
   \oldmystyle
   %%% Place LaTeX for modifications here
   }
 
  Two things needs to be distinguished (using LaTeX terminology) --
  commands and environments. What you have shown here is redefinition of
  command, however description (used by Description layout) is an
  environment, where things are slightly more complicated. Try this:
 
 \let\olddescription=\description
 \let\endolddescription=\enddescription
 \renewenvironment{description}{%
 \begin{olddescription}%
 %modifications in the beginning of the environment
}{%
 %modifications in the end of the environment
 \end{olddescription}}
 
  Does it work?

 Hi Matej (and anyone else who can answer this question)

 First, forgive my replying to a two year old post, but I need this
 information and knew that once upon a time Matej had posted it.

 What I want to know is this: where does \enddescription come from? 

I just realized neither \endolddescription nor \enddescription are used 
subsequently. What's the purpose of the line:

\let\endolddescription=\enddescription

Thanks

SteveT

Steve Litt
Author: Universal Troubleshooting Process books and courseware
http://www.troubleshooters.com/


Problems with babel configuration

2007-01-16 Thread Daniel Escamilla
Hello list,

I've tried babel package for spanish languague and I always obtain the 
following message, both lyx and latex:

Package babel Error: You haven't defined the language SPANISH yet.
 \end{document}

Checking the log file, I've found the following info:

LaTeX2e 2003/12/01
Babel v3.8d and hyphenation patterns for american, french, german, ngerman, b
ahasa, basque, bulgarian, catalan, croatian, czech, danish, dutch, esperanto, e
stonian, finnish, greek, icelandic, irish, italian, latin, magyar, norsk, polis
h, portuges, romanian, russian, serbian, slovak, slovene, spanish, swedish, tur
kish, ukrainian, nohyphenation, loaded.
(/usr/share/texmf/tex/latex/IEEEtran/IEEEtran.cls

So, it says everything is correct, Could anybody give me a hand to fix the 
problem?

Thanx a lot.

-
Daniel Gerardo Escamilla Montoya
Ingeniero Electrónico




Re: Problems with babel configuration

2007-01-16 Thread Uwe Stöhr

Daniel Escamilla schrieb:


I've tried babel package for spanish languague and I always obtain the 
following message, both lyx and latex:

Package babel Error: You haven't defined the language SPANISH yet.
 \end{document}


If this problem appear, try to do compile the file again, or reopen the document and then recompile 
it. If this doesn't help, you have set something wrong in the document preamble.


regards Uwe


tex4ht

2007-01-16 Thread faunt

On Sun, 14 Jan 2007, Jens Noeckel wrote:


Jamie,
good to know the setup is basically working now. For HTML export, all I can 
say is that I only do that from the command line (since LyX to me is simply 
an editor, not a swiss army knife), and tex4ht works fine for me. Just in 
case you want to revisit it later:


Jens, You've got me interested so I'm trying it again -- from the command 
line. The problem is that I obviously need and can't find documentation. 
Executing tex4ht gives some basic info but not enough for me to get it to 
work. It seems to want a .dvi file. So I tried running one of those and it 
creates a few files which to me are cryptic, and no .html files.


I searched for documentation and came up with a .info file. But it seems 
to be for texinfo -- to which I'm sure tex4ht is related in some way. But 
in searching that doc I come up with nothing on tex4ht in particular. Am I 
looking in the right place? Also there's no man file -- at least that fink 
installed.


Looks like it's quite powerful based on what I can glean and the extensive 
library that comes with it. But I can't get to 1st base. Can you point to 
a starting place?


thanks much,
jamie


Enumerated lists

2007-01-16 Thread Nicolás

Hi!

I am wondering if v1.5 supports different enumeration styles (apart from the standard enumeration style with arabic numbers), such as 
a),b),... or i.,ii.,...

I think some of these styles are commonly used, so it would be great if LyX had 
standard support for them.

Cheers,
Nicolás


[announce] LyX150svn from 15-01-2007 for Windows

2007-01-16 Thread Uwe Stöhr

Hello LyXTesters,

I published a new version with LyX1.5.0svn from 15-01-2007:

http://developer.berlios.de/project/showfiles.php?group_id=5117_id=12024

This fixes a problem that LyX couldn't be started on some machines.

Installer Changelog:

- LyX 1.5svn from 15-01-2007:
  - improved bookmark handling
  - copy/paste now possible between LyX-files opened in different LyX instances 
(programs).
  - updated documentation
- this LyX 1.5svn build can now be started on every Windows 2000/XP machine

- updated Readme files for the installer sourcecode:
  - mention the Galician translation files for NSIS

- updated Galician translation of the installer

Known problem:
- LyX's package and class database is incomplete when you don't have an open 
internet
  connection while LyX is first started. (This is a bug in MiKTeX.)
  Workaround: open an internet connection and reconfigure LyX


happy testing and best regards
Uwe

--- disclaimer ---
LyXsvn builds are for testers and interested LyXers to see the new
features.
If you find bugs, please have a look at
http://bugzilla.lyx.org
and report them there if they aren't already reported.

Note! LyX1.5svn is still in alpha state, that means it is under very
active development. Therefore things can change every day, so
don't use LyX1.5svn for production!


Re: Enumerated lists

2007-01-16 Thread Andreas K .
Nicolás <[EMAIL PROTECTED]> writes:

> 
> Hi!
> 
> I am wondering if v1.5 supports different enumeration styles (apart from the 
standard enumeration style
> with arabic numbers), such as 
> a),b),... or i.,ii.,...
> I think some of these styles are commonly used, so it would be great if LyX 
had standard support for them.
> 
> Cheers,
> Nicolás
> 
> 

Hi,
If you make your voice heard here:

http://bugzilla.lyx.org/show_bug.cgi?id=2986

then maybe it will be implemented.

Regards,
Andreas





Re: [announce] LyX150svn from 15-01-2007 for Windows

2007-01-16 Thread Andreas K .
Uwe Stöhr <[EMAIL PROTECTED]> writes:

> 
> Hello LyXTesters,
> 
> I published a new version with LyX1.5.0svn from 15-01-2007:
> 
> http://developer.berlios.de/project/showfiles.php?
group_id=5117_id=12024
> 
>

Thanks a lot. Keep ut the good work.

Regards,
Andreas





Problem viewing generated dvi

2007-01-16 Thread Srinivas Nedunuri
Hello, I am running Lyx 1.4.1 on Windows XP. I am unable to view the
DraftDVI as suggested in the Tutorial. When I select View | DraftDVI I get
"No information for viewing Draft DVI". Selecting View | PDF (either option)
produces similar messages.

If I try File | Export | DraftDVI I
get an error popup from the 16bit MS-DOS Subsystem (!) that says "The NTVDM
CPU has encountered an illegal instruction". I don't know if this is
reltated to the problem or not but I couldn't see anywhere to configure the
location of the dvi previwer.

thanks
PS I ran "reconfigure"







how to produce hatted (circumflex) symbols in Lyx?

2007-01-16 Thread Srinivas Nedunuri
..besides typing in some ERT? 





Re: Problem viewing generated dvi

2007-01-16 Thread Todd Denniston

Srinivas Nedunuri wrote:

Hello, I am running Lyx 1.4.1 on Windows XP. I am unable to view the
DraftDVI as suggested in the Tutorial. When I select View | DraftDVI I get
"No information for viewing Draft DVI". Selecting View | PDF (either option)
produces similar messages.

If I try File | Export | DraftDVI I
get an error popup from the 16bit MS-DOS Subsystem (!) that says "The NTVDM
CPU has encountered an illegal instruction". I don't know if this is
reltated to the problem or not but I couldn't see anywhere to configure the
location of the dvi previwer.



I could be wrong but the last time I had a message like that {... CPU ... 
illegal instruction}, it was because the program I was trying to run was 
compiled for i686 and the processor on my machine was an i586.


It might help to know:
A) What processor your machine has. (I don't remember how to find that on 
windows.)
B) What processor the DVI viewer was built for. (you'll probably need to ask 
the folks who built it, AFAIK that would be the MiKTeX crew assuming you used 
Uwe's installer.)
if the DVI viewer was built for an older processor than the one you have, then 
the problem I NOT what I thought it was.


I hope this is helpful.


--
Todd Denniston
Crane Division, Naval Surface Warfare Center (NSWC Crane)
Harnessing the Power of Technology for the Warfighter


Re: how to produce hatted (circumflex) symbols in Lyx?

2007-01-16 Thread Paul A. Rubin

Srinivas Nedunuri wrote:
..besides typing in some ERT? 







Tool->Preferences...->Look and feel->Keyboard, check Use keyboard map, 
then select a map by browsing.  You want one that supports accents (such 
as 'american').  Save, exit and restart LyX.  Thereafter, hitting an 
accent key (including ^) accents the next letter you type; 
double-tapping the accent key prints the accent by itself.


/Paul



Re: Deriving a new LyX environment

2007-01-16 Thread Steve Litt
On Friday 21 January 2005 13:52, Matej Cepl wrote:
> Steve Litt wrote:
> > How do I derive a new LyX environment based on an existing one? For
> > instance, I'd like to derive a "superdefinition" environment based on the
> > existing "Description" environment.
> >
> > I know how to do it in LaTeX:
> >
> > \let\oldmystyle=\mystyle
> > \def\mystyle{
> > \oldmystyle
> > %%% Place LaTeX for modifications here
> > }
>
> Two things needs to be distinguished (using LaTeX terminology) -- commands
> and environments. What you have shown here is redefinition of command,
> however description (used by "Description" layout) is an environment, where
> things are slightly more complicated. Try this:
>
>\let\olddescription=\description
>\let\endolddescription=\enddescription
>\renewenvironment{description}{%
>\begin{olddescription}%
>%modifications in the beginning of the environment
>   }{%
>%modifications in the end of the environment
>\end{olddescription}}
>
> Does it work?

Hi Matej (and anyone else who can answer this question)

First, forgive my replying to a two year old post, but I need this information 
and knew that once upon a time Matej had posted it.

What I want to know is this: where does \enddescription come from? Does every 
environment named \foo also have an \endfoo that refers to the stuff that 
gets done after the last piece of text covered from the environment? If so, 
how does that happen? If not, how does Matej's code above work (I tried it 2 
years ago and indeed it did work).

I'm writing an article I think will greatly simplify explaining LaTeX and 
therefore greatly simplify creating or modifying environments (HOORAY), but 
in order to write the doc I not only need to describe the trick above, but I 
need to explain why it works?

Does LaTeX's \newenvironment{myenvironment} automatically create not only 
\myenvironment, but also \endmyenvironment?

Thanks

SteveT

Steve Litt
Author: Universal Troubleshooting Process books and courseware
http://www.troubleshooters.com/


appendix package

2007-01-16 Thread Bob Lounsbury

Hello,

Has anyone used the appendix package so that the table of contents  
looks like ...


'Appendix A Title'

instead of ...

'A Title'?

I've tried all kinds of different ways reading through the appendix  
package documentation with no success. There is an option 'titletoc'  
for the appendices environment listed in the documentation that is  
supposed to do exactly what I would like, but I must not be using it  
correctly.


What I did was start a new document, standard 'book' class. Inserted  
a toc, chapter, start appendix here command, then an appendix  
chapter. I then inserted '\usepackage[titletoc]{appendix}' into the  
preamble. Didn't work. I also tried the standard 'article' class and  
various other commands listed in the appendix package documentation  
to no avail.


Thanks,
Bob Lounsbury
[EMAIL PROTECTED]
--
Please, if possible, don't send me MS Word or Powerpoint attachments.
Send plain text, rich text format, html, or pdf instead.
Why? See: http://www.gnu.org/philosophy/no-word-attachments.html
--
As an alternative to MS Word or Powerpoint.
LyX, OpenOffice




Re: Deriving a new LyX environment

2007-01-16 Thread Steve Litt
On Tuesday 16 January 2007 16:41, Steve Litt wrote:
> On Friday 21 January 2005 13:52, Matej Cepl wrote:
> > Steve Litt wrote:
> > > How do I derive a new LyX environment based on an existing one? For
> > > instance, I'd like to derive a "superdefinition" environment based on
> > > the existing "Description" environment.
> > >
> > > I know how to do it in LaTeX:
> > >
> > > \let\oldmystyle=\mystyle
> > > \def\mystyle{
> > > \oldmystyle
> > > %%% Place LaTeX for modifications here
> > > }
> >
> > Two things needs to be distinguished (using LaTeX terminology) --
> > commands and environments. What you have shown here is redefinition of
> > command, however description (used by "Description" layout) is an
> > environment, where things are slightly more complicated. Try this:
> >
> >\let\olddescription=\description
> >\let\endolddescription=\enddescription
> >\renewenvironment{description}{%
> >\begin{olddescription}%
> >%modifications in the beginning of the environment
> >   }{%
> >%modifications in the end of the environment
> >\end{olddescription}}
> >
> > Does it work?
>
> Hi Matej (and anyone else who can answer this question)
>
> First, forgive my replying to a two year old post, but I need this
> information and knew that once upon a time Matej had posted it.
>
> What I want to know is this: where does \enddescription come from? 

I just realized neither \endolddescription nor \enddescription are used 
subsequently. What's the purpose of the line:

\let\endolddescription=\enddescription

Thanks

SteveT

Steve Litt
Author: Universal Troubleshooting Process books and courseware
http://www.troubleshooters.com/


Problems with babel configuration

2007-01-16 Thread Daniel Escamilla
Hello list,

I've tried babel package for spanish languague and I always obtain the 
following message, both lyx and latex:

Package babel Error: You haven't defined the language SPANISH yet.
 \end{document}

Checking the log file, I've found the following info:

LaTeX2e <2003/12/01>
Babel  and hyphenation patterns for american, french, german, ngerman, b
ahasa, basque, bulgarian, catalan, croatian, czech, danish, dutch, esperanto, e
stonian, finnish, greek, icelandic, irish, italian, latin, magyar, norsk, polis
h, portuges, romanian, russian, serbian, slovak, slovene, spanish, swedish, tur
kish, ukrainian, nohyphenation, loaded.
(/usr/share/texmf/tex/latex/IEEEtran/IEEEtran.cls

So, it says everything is correct, Could anybody give me a hand to fix the 
problem?

Thanx a lot.

-
Daniel Gerardo Escamilla Montoya
Ingeniero Electrónico




Re: Problems with babel configuration

2007-01-16 Thread Uwe Stöhr

Daniel Escamilla schrieb:


I've tried babel package for spanish languague and I always obtain the 
following message, both lyx and latex:

Package babel Error: You haven't defined the language SPANISH yet.
 \end{document}


If this problem appear, try to do compile the file again, or reopen the document and then recompile 
it. If this doesn't help, you have set something wrong in the document preamble.


regards Uwe


tex4ht

2007-01-16 Thread faunt

On Sun, 14 Jan 2007, Jens Noeckel wrote:


Jamie,
good to know the setup is basically working now. For HTML export, all I can 
say is that I only do that from the command line (since LyX to me is simply 
an editor, not a swiss army knife), and tex4ht works fine for me. Just in 
case you want to revisit it later:


Jens, You've got me interested so I'm trying it again -- from the command 
line. The problem is that I obviously need and can't find documentation. 
Executing tex4ht gives some basic info but not enough for me to get it to 
work. It seems to want a .dvi file. So I tried running one of those and it 
creates a few files which to me are cryptic, and no .html files.


I searched for documentation and came up with a .info file. But it seems 
to be for texinfo -- to which I'm sure tex4ht is related in some way. But 
in searching that doc I come up with nothing on tex4ht in particular. Am I 
looking in the right place? Also there's no man file -- at least that fink 
installed.


Looks like it's quite powerful based on what I can glean and the extensive 
library that comes with it. But I can't get to 1st base. Can you point to 
a starting place?


thanks much,
jamie