Re: Access LyX version number from within a document

2010-04-17 Thread rgheck

On 04/16/2010 07:44 AM, nore...@augrime.net wrote:

Hi,

I would like to stamp documents with the version number of LyX which 
produces them, i.e. a PDF should contain something like this:


This document was produced with LyX 1.6.4.1

Is this currently possible?

I've just added this facility to LyX 2.0, via InsetInfo. To enter it, 
use the mini buffer and enter:

info-insert lyx version

rh



Re: alpha 2 crash

2010-04-17 Thread Marcelo Acuña
   When I make a click in Find and Replace button, I
 have a crash.
 
  can't reproduce here, please file bug report and attach
 backtrace if possible.
  pavel

 The problem is with Find and Replace Advanced.
 This problem not appears with alpha 1.
 I have linux lenny, qt 4.6.2 and g++ 4.3.2.
 With this system I have compiled lyx 1.6.5, 2.0.0 alpha 1 and alpha 2.
 
Marcelo


  Menus.cpp(655): Menu warning: menu entry Maple, Simplify does 
not contain shortcut `s'.

Menus.cpp(655): Menu warning: menu entry Maple, Factor does not 
contain shortcut `f'.

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

[...]

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

Violación de segmento





Re: Margins of a particular page

2010-04-17 Thread Paul A. Rubin

On 4/16/2010 11:59 AM, YURENA MENDOZA wrote:


How I could reduce the margins only for a particular page? I have not found
the option in lyx for one page only. Do I need to enter a latex code?



I think the changepage package would do what you seek.

/Paul



Re: option of spanish babel in lyx

2010-04-17 Thread Marcelo Acuña
   What is the LaTeX code
 you are using in Kile?
  This
   LaTeX-code
   ~---like this---
   
    That is the one that I am using.
  
  This doesn't work for me but for you, so can you
 please
  send me a TeX-file that you created with Kile that
 works for
  you?
  
  regards Uwe
  
  p.s. what is your babel version?
 
  Here the code and the pdf with the option that I need to
 use in Lyx.
  This was make with kile.
  The babel version is that became with linux lenny.
  
 Marcelo


  

dashproblem.tex
Description: Binary data


dashproblem-bad.tex
Description: Binary data


grammar check?

2010-04-17 Thread Marcelo Acuña
It is in schedule a grammar check in future versions of lyx?
Thanks

Marcelo


Marcelo Acuña
 visitá mi sitio web http://www.aleph-uno.com.ar 
==





Re: grammar check?

2010-04-17 Thread rgheck

On 04/17/2010 11:44 AM, Marcelo Acuña wrote:

It is in schedule a grammar check in future versions of lyx?

   
No. If there is a good open source one, it could perhaps be linked into 
LyX, if someone wanted to do that work.


Richard



Re: grammar check?

2010-04-17 Thread Marcelo Acuña
  It is in schedule a grammar check in future versions
 of lyx?

 No. If there is a good open source one, it could perhaps be
 linked into 
 LyX, if someone wanted to do that work.
 
 Richard
 Open Office has one, although with a poor implementation of the Spanish.

Marcelo 





Theoreme Enumeration by subsection

2010-04-17 Thread iustifico
I am using book (KOMA-script) as documentclass and I want to enumerate my 
propositions, definitions etc. by subsection, like this:

I. Section
I.1 Subsection
Definition I.1.1
Proposition I.1.2
I.2 Subsection
Proposition I.2.1
Definition I.2.2
II Section
II.1 Subsection
Definition II.1.1
Proposition II.1.2
I.2 Subsection
Proposition II.2.1
Definition II.2.2

Second one: How do I change the style. At the moment lyx enumerates the 
definitions and propositions by section. That is not what I need...

Is this possible? If yes, how do I tell lyx, to do so? Thank you for your help.
Kind regards,
iustifico

Re: Theoreme Enumeration by subsection

2010-04-17 Thread Philiрp Rеichmuth
Am Sat, 17 Apr 2010 19:54:05 +0200 schrieb iustifico:
 I am using book (KOMA-script) as documentclass and I want to 
 enumerate my propositions, definitions etc. by subsection, like this:
 
 I. Section
 I.1 Subsection
 Definition I.1.1
 Proposition I.1.2

You can use the chngcntr package to control which counters get reset when
and where. For example in my preamble I use

\usepackage{chngcntr}
\counterwithout{footnote}{chapter}

for continuous numbering of footnotes across chapter boundaries.

So you could use something like \counterwithin*{defn}{subsection} etc.,
substituting defn for the names of all the environments whose counter you
want to redefine.

Philipp



Re: Theoreme Enumeration by subsection

2010-04-17 Thread rgheck

On 04/17/2010 02:45 PM, Philiрp Rеichmuth wrote:

Am Sat, 17 Apr 2010 19:54:05 +0200 schrieb iustifico:
   

I am using book (KOMA-script) as documentclass and I want to
enumerate my propositions, definitions etc. by subsection, like this:

I. Section
 I.1 Subsection
 Definition I.1.1
 Proposition I.1.2
 

You can use the chngcntr package to control which counters get reset when
and where.

   
Good suggestion. The koma-script packages may have options to control 
this, too, but I don't know. Check the koma-script documentation.


rh



Re: Theoreme Enumeration by subsection

2010-04-17 Thread iustifico

Am 17.04.2010 um 20:45 schrieb Philiрp Rеichmuth:

 Am Sat, 17 Apr 2010 19:54:05 +0200 schrieb iustifico:
 I am using book (KOMA-script) as documentclass and I want to 
 enumerate my propositions, definitions etc. by subsection, like this:
 
 I. Section
I.1 Subsection
Definition I.1.1
Proposition I.1.2
 
 You can use the chngcntr package to control which counters get reset when
 and where. For example in my preamble I use
 
 \usepackage{chngcntr}
 \counterwithout{footnote}{chapter}
 
 for continuous numbering of footnotes across chapter boundaries.
 
 So you could use something like \counterwithin*{defn}{subsection} etc.,
 substituting defn for the names of all the environments whose counter you
 want to redefine.

When I do
\usepackage{chngcntr}
\counterwithin{definition}{subsection}
in the preamble of Lyx, it tells me definition is not a counter. I assume, that 
e.g. propositions or  definitions have a counter variable.

But how do I get their names?

Kind regards,
iustifico

Re: Theoreme Enumeration by subsection

2010-04-17 Thread rgheck

On 04/17/2010 04:42 PM, iustifico wrote:

Am 17.04.2010 um 20:45 schrieb Philiрp Rеichmuth:

   

Am Sat, 17 Apr 2010 19:54:05 +0200 schrieb iustifico:
 

I am using book (KOMA-script) as documentclass and I want to
enumerate my propositions, definitions etc. by subsection, like this:

I. Section
I.1 Subsection
Definition I.1.1
Proposition I.1.2
   

You can use the chngcntr package to control which counters get reset when
and where. For example in my preamble I use

\usepackage{chngcntr}
\counterwithout{footnote}{chapter}

for continuous numbering of footnotes across chapter boundaries.

So you could use something like \counterwithin*{defn}{subsection} etc.,
substituting defn for the names of all the environments whose counter you
want to redefine.
 

When I do
\usepackage{chngcntr}
\counterwithin{definition}{subsection}
in the preamble of Lyx, it tells me definition is not a counter. I assume, that e.g. 
propositions or  definitions have a counter variable.

But how do I get their names?

   

The counters are shared with theorem, lemma, etc. I think what you want is:
\counterwithin{thm}{subsection}
See the theorems-std.inc or theorems-ams.inc file for how the theorem 
environments are defined.


By the way, I don't know why it didn't occur to me before, but the 
attached is a module for this. It's the obvious adaptation of the the 
Theorems by Section module. Put it in your LyX user directory (e.g., 
~/.lyx/layouts/ on Linux), reconfigure LyX, and it will appear under 
DocumentSettingsModules. Select it, and your theorems will be numbered 
by subsection.


Richard


#\DeclareLyXModule{Theorems (Numbered by Subsection)}
#DescriptionBegin
#Numbers theorems and the like by subsection (i.e., the counter is reset at
#each subsection start).
#DescriptionEnd
#Requires: theorems-std | theorems-ams
#Excludes: theorems-chap theorems-sec

# Author: Richard Heck rgh...@comcast.net
# Tweaked by Paul Rubin ru...@msu.edu June '09 (added theoremstyle)

Format 11

Counter theorem
Within subsection
End

Style Theorem
Preamble
\theoremstyle{plain}
\newtheorem{thm}{Theorem}[subsection]
EndPreamble
End


Re: Theoreme Enumeration by subsection

2010-04-17 Thread Paul A. Rubin

On 4/17/2010 4:42 PM, iustifico wrote:



When I do
\usepackage{chngcntr}
\counterwithin{definition}{subsection}
in the preamble of Lyx, it tells me definition is not a counter. I assume, that e.g. 
propositions or  definitions have a counter variable.

But how do I get their names?

Kind regards,
iustifico


All the theorem-like environments use the counter thm.

An alternative to the chngcntr package is to create a module to do this. 
 In LyX's layouts directory, you should have theorems-sec.module.  Copy 
it to your local layouts directory with the name theorems-subsec.module. 
 Open it with a plain text editor, change section to subsection in 
lines 1, 3, 14 and 20 and save that.  Reconfigure and restart LyX.  In 
your document, go to Document  Settings  Modules and load either 
Theorems or Theorems (AMS), followed by the new Theorems (By Subsection) 
module.  That should do it.


/Paul




Re: Theoreme Enumeration by subsection

2010-04-17 Thread iustifico
Am 17.04.2010 um 23:04 schrieb rgheck:
 The counters are shared with theorem, lemma, etc. I think what you want is:
\counterwithin{thm}{subsection}
Thank you very much, this is exactly the way I needed it to work.

Regards,
iustifico



Re: Theoreme Enumeration by subsection

2010-04-17 Thread iustifico

Am 17.04.2010 um 23:22 schrieb Paul A. Rubin:
 All the theorem-like environments use the counter thm.
 
 An alternative to the chngcntr package is to create a module to do this.  In 
 LyX's layouts directory, you should have theorems-sec.module.  Copy it to 
 your local layouts directory with the name theorems-subsec.module.  Open it 
 with a plain text editor, change section to subsection in lines 1, 3, 14 
 and 20 and save that.  Reconfigure and restart LyX.  In your document, go to 
 Document  Settings  Modules and load either Theorems or Theorems (AMS), 
 followed by the new Theorems (By Subsection) module.  That should do it.
 
 /Paul

That's a nice explanation. Thank you very much.

Kind regards,
iustifico

Re: Access LyX version number from within a document

2010-04-17 Thread rgheck

On 04/16/2010 07:44 AM, nore...@augrime.net wrote:

Hi,

I would like to stamp documents with the version number of LyX which 
produces them, i.e. a PDF should contain something like this:


This document was produced with LyX 1.6.4.1

Is this currently possible?

I've just added this facility to LyX 2.0, via InsetInfo. To enter it, 
use the mini buffer and enter:

info-insert lyx version

rh



Re: alpha 2 crash

2010-04-17 Thread Marcelo Acuña
   When I make a click in Find and Replace button, I
 have a crash.
 
  can't reproduce here, please file bug report and attach
 backtrace if possible.
  pavel

 The problem is with Find and Replace Advanced.
 This problem not appears with alpha 1.
 I have linux lenny, qt 4.6.2 and g++ 4.3.2.
 With this system I have compiled lyx 1.6.5, 2.0.0 alpha 1 and alpha 2.
 
Marcelo


  Menus.cpp(655): Menu warning: menu entry Maple, Simplify does 
not contain shortcut `s'.

Menus.cpp(655): Menu warning: menu entry Maple, Factor does not 
contain shortcut `f'.

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

[...]

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

Violación de segmento





Re: Margins of a particular page

2010-04-17 Thread Paul A. Rubin

On 4/16/2010 11:59 AM, YURENA MENDOZA wrote:


How I could reduce the margins only for a particular page? I have not found
the option in lyx for one page only. Do I need to enter a latex code?



I think the changepage package would do what you seek.

/Paul



Re: option of spanish babel in lyx

2010-04-17 Thread Marcelo Acuña
   What is the LaTeX code
 you are using in Kile?
  This
   LaTeX-code
   ~---like this---
   
    That is the one that I am using.
  
  This doesn't work for me but for you, so can you
 please
  send me a TeX-file that you created with Kile that
 works for
  you?
  
  regards Uwe
  
  p.s. what is your babel version?
 
  Here the code and the pdf with the option that I need to
 use in Lyx.
  This was make with kile.
  The babel version is that became with linux lenny.
  
 Marcelo


  

dashproblem.tex
Description: Binary data


dashproblem-bad.tex
Description: Binary data


grammar check?

2010-04-17 Thread Marcelo Acuña
It is in schedule a grammar check in future versions of lyx?
Thanks

Marcelo


Marcelo Acuña
 visitá mi sitio web http://www.aleph-uno.com.ar 
==





Re: grammar check?

2010-04-17 Thread rgheck

On 04/17/2010 11:44 AM, Marcelo Acuña wrote:

It is in schedule a grammar check in future versions of lyx?

   
No. If there is a good open source one, it could perhaps be linked into 
LyX, if someone wanted to do that work.


Richard



Re: grammar check?

2010-04-17 Thread Marcelo Acuña
  It is in schedule a grammar check in future versions
 of lyx?

 No. If there is a good open source one, it could perhaps be
 linked into 
 LyX, if someone wanted to do that work.
 
 Richard
 Open Office has one, although with a poor implementation of the Spanish.

Marcelo 





Theoreme Enumeration by subsection

2010-04-17 Thread iustifico
I am using book (KOMA-script) as documentclass and I want to enumerate my 
propositions, definitions etc. by subsection, like this:

I. Section
I.1 Subsection
Definition I.1.1
Proposition I.1.2
I.2 Subsection
Proposition I.2.1
Definition I.2.2
II Section
II.1 Subsection
Definition II.1.1
Proposition II.1.2
I.2 Subsection
Proposition II.2.1
Definition II.2.2

Second one: How do I change the style. At the moment lyx enumerates the 
definitions and propositions by section. That is not what I need...

Is this possible? If yes, how do I tell lyx, to do so? Thank you for your help.
Kind regards,
iustifico

Re: Theoreme Enumeration by subsection

2010-04-17 Thread Philiрp Rеichmuth
Am Sat, 17 Apr 2010 19:54:05 +0200 schrieb iustifico:
 I am using book (KOMA-script) as documentclass and I want to 
 enumerate my propositions, definitions etc. by subsection, like this:
 
 I. Section
 I.1 Subsection
 Definition I.1.1
 Proposition I.1.2

You can use the chngcntr package to control which counters get reset when
and where. For example in my preamble I use

\usepackage{chngcntr}
\counterwithout{footnote}{chapter}

for continuous numbering of footnotes across chapter boundaries.

So you could use something like \counterwithin*{defn}{subsection} etc.,
substituting defn for the names of all the environments whose counter you
want to redefine.

Philipp



Re: Theoreme Enumeration by subsection

2010-04-17 Thread rgheck

On 04/17/2010 02:45 PM, Philiрp Rеichmuth wrote:

Am Sat, 17 Apr 2010 19:54:05 +0200 schrieb iustifico:
   

I am using book (KOMA-script) as documentclass and I want to
enumerate my propositions, definitions etc. by subsection, like this:

I. Section
 I.1 Subsection
 Definition I.1.1
 Proposition I.1.2
 

You can use the chngcntr package to control which counters get reset when
and where.

   
Good suggestion. The koma-script packages may have options to control 
this, too, but I don't know. Check the koma-script documentation.


rh



Re: Theoreme Enumeration by subsection

2010-04-17 Thread iustifico

Am 17.04.2010 um 20:45 schrieb Philiрp Rеichmuth:

 Am Sat, 17 Apr 2010 19:54:05 +0200 schrieb iustifico:
 I am using book (KOMA-script) as documentclass and I want to 
 enumerate my propositions, definitions etc. by subsection, like this:
 
 I. Section
I.1 Subsection
Definition I.1.1
Proposition I.1.2
 
 You can use the chngcntr package to control which counters get reset when
 and where. For example in my preamble I use
 
 \usepackage{chngcntr}
 \counterwithout{footnote}{chapter}
 
 for continuous numbering of footnotes across chapter boundaries.
 
 So you could use something like \counterwithin*{defn}{subsection} etc.,
 substituting defn for the names of all the environments whose counter you
 want to redefine.

When I do
\usepackage{chngcntr}
\counterwithin{definition}{subsection}
in the preamble of Lyx, it tells me definition is not a counter. I assume, that 
e.g. propositions or  definitions have a counter variable.

But how do I get their names?

Kind regards,
iustifico

Re: Theoreme Enumeration by subsection

2010-04-17 Thread rgheck

On 04/17/2010 04:42 PM, iustifico wrote:

Am 17.04.2010 um 20:45 schrieb Philiрp Rеichmuth:

   

Am Sat, 17 Apr 2010 19:54:05 +0200 schrieb iustifico:
 

I am using book (KOMA-script) as documentclass and I want to
enumerate my propositions, definitions etc. by subsection, like this:

I. Section
I.1 Subsection
Definition I.1.1
Proposition I.1.2
   

You can use the chngcntr package to control which counters get reset when
and where. For example in my preamble I use

\usepackage{chngcntr}
\counterwithout{footnote}{chapter}

for continuous numbering of footnotes across chapter boundaries.

So you could use something like \counterwithin*{defn}{subsection} etc.,
substituting defn for the names of all the environments whose counter you
want to redefine.
 

When I do
\usepackage{chngcntr}
\counterwithin{definition}{subsection}
in the preamble of Lyx, it tells me definition is not a counter. I assume, that e.g. 
propositions or  definitions have a counter variable.

But how do I get their names?

   

The counters are shared with theorem, lemma, etc. I think what you want is:
\counterwithin{thm}{subsection}
See the theorems-std.inc or theorems-ams.inc file for how the theorem 
environments are defined.


By the way, I don't know why it didn't occur to me before, but the 
attached is a module for this. It's the obvious adaptation of the the 
Theorems by Section module. Put it in your LyX user directory (e.g., 
~/.lyx/layouts/ on Linux), reconfigure LyX, and it will appear under 
DocumentSettingsModules. Select it, and your theorems will be numbered 
by subsection.


Richard


#\DeclareLyXModule{Theorems (Numbered by Subsection)}
#DescriptionBegin
#Numbers theorems and the like by subsection (i.e., the counter is reset at
#each subsection start).
#DescriptionEnd
#Requires: theorems-std | theorems-ams
#Excludes: theorems-chap theorems-sec

# Author: Richard Heck rgh...@comcast.net
# Tweaked by Paul Rubin ru...@msu.edu June '09 (added theoremstyle)

Format 11

Counter theorem
Within subsection
End

Style Theorem
Preamble
\theoremstyle{plain}
\newtheorem{thm}{Theorem}[subsection]
EndPreamble
End


Re: Theoreme Enumeration by subsection

2010-04-17 Thread Paul A. Rubin

On 4/17/2010 4:42 PM, iustifico wrote:



When I do
\usepackage{chngcntr}
\counterwithin{definition}{subsection}
in the preamble of Lyx, it tells me definition is not a counter. I assume, that e.g. 
propositions or  definitions have a counter variable.

But how do I get their names?

Kind regards,
iustifico


All the theorem-like environments use the counter thm.

An alternative to the chngcntr package is to create a module to do this. 
 In LyX's layouts directory, you should have theorems-sec.module.  Copy 
it to your local layouts directory with the name theorems-subsec.module. 
 Open it with a plain text editor, change section to subsection in 
lines 1, 3, 14 and 20 and save that.  Reconfigure and restart LyX.  In 
your document, go to Document  Settings  Modules and load either 
Theorems or Theorems (AMS), followed by the new Theorems (By Subsection) 
module.  That should do it.


/Paul




Re: Theoreme Enumeration by subsection

2010-04-17 Thread iustifico
Am 17.04.2010 um 23:04 schrieb rgheck:
 The counters are shared with theorem, lemma, etc. I think what you want is:
\counterwithin{thm}{subsection}
Thank you very much, this is exactly the way I needed it to work.

Regards,
iustifico



Re: Theoreme Enumeration by subsection

2010-04-17 Thread iustifico

Am 17.04.2010 um 23:22 schrieb Paul A. Rubin:
 All the theorem-like environments use the counter thm.
 
 An alternative to the chngcntr package is to create a module to do this.  In 
 LyX's layouts directory, you should have theorems-sec.module.  Copy it to 
 your local layouts directory with the name theorems-subsec.module.  Open it 
 with a plain text editor, change section to subsection in lines 1, 3, 14 
 and 20 and save that.  Reconfigure and restart LyX.  In your document, go to 
 Document  Settings  Modules and load either Theorems or Theorems (AMS), 
 followed by the new Theorems (By Subsection) module.  That should do it.
 
 /Paul

That's a nice explanation. Thank you very much.

Kind regards,
iustifico

Re: Access LyX version number from within a document

2010-04-17 Thread rgheck

On 04/16/2010 07:44 AM, nore...@augrime.net wrote:

Hi,

I would like to "stamp" documents with the version number of LyX which 
produces them, i.e. a PDF should contain something like this:


"This document was produced with LyX 1.6.4.1"

Is this currently possible?

I've just added this facility to LyX 2.0, via InsetInfo. To enter it, 
use the mini buffer and enter:

info-insert lyx version

rh



Re: alpha 2 crash

2010-04-17 Thread Marcelo Acuña
> > > When I make a click in Find and Replace button, I
> have a crash.
 
> > can't reproduce here, please file bug report and attach
> backtrace if possible.
> > pavel

 The problem is with Find and Replace Advanced.
 This problem not appears with alpha 1.
 I have linux lenny, qt 4.6.2 and g++ 4.3.2.
 With this system I have compiled lyx 1.6.5, 2.0.0 alpha 1 and alpha 2.
 
Marcelo


  Menus.cpp(655): Menu warning: menu entry "Maple, Simplify" does 
not contain shortcut `s'.

Menus.cpp(655): Menu warning: menu entry "Maple, Factor" does not 
contain shortcut `f'.

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

[...]

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

QWidget::repaint: Recursive repaint detected

Violación de segmento





Re: Margins of a particular page

2010-04-17 Thread Paul A. Rubin

On 4/16/2010 11:59 AM, YURENA MENDOZA wrote:


How I could reduce the margins only for a particular page? I have not found
the option in lyx for one page only. Do I need to enter a latex code?



I think the changepage package would do what you seek.

/Paul



Re: option of spanish babel in lyx

2010-04-17 Thread Marcelo Acuña
> > >> What is the LaTeX code
> you are using in Kile?
> > This
> > >> LaTeX-code
> > >> ~---like this---
> > > 
> > >  That is the one that I am using.
> > 
> > This doesn't work for me but for you, so can you
> please
> > send me a TeX-file that you created with Kile that
> works for
> > you?
> > 
> > regards Uwe
> > 
> > p.s. what is your babel version?
 
  Here the code and the pdf with the option that I need to
 use in Lyx.
  This was make with kile.
  The babel version is that became with linux lenny.
  
 Marcelo


  

dashproblem.tex
Description: Binary data


dashproblem-bad.tex
Description: Binary data


grammar check?

2010-04-17 Thread Marcelo Acuña
It is in schedule a grammar check in future versions of lyx?
Thanks

Marcelo


Marcelo Acuña
 visitá mi sitio web http://www.aleph-uno.com.ar 
==





Re: grammar check?

2010-04-17 Thread rgheck

On 04/17/2010 11:44 AM, Marcelo Acuña wrote:

It is in schedule a grammar check in future versions of lyx?

   
No. If there is a good open source one, it could perhaps be linked into 
LyX, if someone wanted to do that work.


Richard



Re: grammar check?

2010-04-17 Thread Marcelo Acuña
> > It is in schedule a grammar check in future versions
> of lyx?

> No. If there is a good open source one, it could perhaps be
> linked into 
> LyX, if someone wanted to do that work.
> 
> Richard
 Open Office has one, although with a poor implementation of the Spanish.

Marcelo 





Theoreme Enumeration by subsection

2010-04-17 Thread iustifico
I am using "book (KOMA-script)" as documentclass and I want to enumerate my 
propositions, definitions etc. by subsection, like this:

I. Section
I.1 Subsection
Definition I.1.1
Proposition I.1.2
I.2 Subsection
Proposition I.2.1
Definition I.2.2
II Section
II.1 Subsection
Definition II.1.1
Proposition II.1.2
I.2 Subsection
Proposition II.2.1
Definition II.2.2

Second one: How do I change the style. At the moment lyx enumerates the 
definitions and propositions by section. That is not what I need...

Is this possible? If yes, how do I tell lyx, to do so? Thank you for your help.
Kind regards,
iustifico

Re: Theoreme Enumeration by subsection

2010-04-17 Thread Philiрp Rеichmuth
Am Sat, 17 Apr 2010 19:54:05 +0200 schrieb iustifico:
> I am using "book (KOMA-script)" as documentclass and I want to 
> enumerate my propositions, definitions etc. by subsection, like this:
> 
> I. Section
> I.1 Subsection
> Definition I.1.1
> Proposition I.1.2

You can use the chngcntr package to control which counters get reset when
and where. For example in my preamble I use

\usepackage{chngcntr}
\counterwithout{footnote}{chapter}

for continuous numbering of footnotes across chapter boundaries.

So you could use something like \counterwithin*{defn}{subsection} etc.,
substituting "defn" for the names of all the environments whose counter you
want to redefine.

Philipp



Re: Theoreme Enumeration by subsection

2010-04-17 Thread rgheck

On 04/17/2010 02:45 PM, Philiрp Rеichmuth wrote:

Am Sat, 17 Apr 2010 19:54:05 +0200 schrieb iustifico:
   

I am using "book (KOMA-script)" as documentclass and I want to
enumerate my propositions, definitions etc. by subsection, like this:

I. Section
 I.1 Subsection
 Definition I.1.1
 Proposition I.1.2
 

You can use the chngcntr package to control which counters get reset when
and where.

   
Good suggestion. The koma-script packages may have options to control 
this, too, but I don't know. Check the koma-script documentation.


rh



Re: Theoreme Enumeration by subsection

2010-04-17 Thread iustifico

Am 17.04.2010 um 20:45 schrieb Philiрp Rеichmuth:

> Am Sat, 17 Apr 2010 19:54:05 +0200 schrieb iustifico:
>> I am using "book (KOMA-script)" as documentclass and I want to 
>> enumerate my propositions, definitions etc. by subsection, like this:
>> 
>> I. Section
>>I.1 Subsection
>>Definition I.1.1
>>Proposition I.1.2
> 
> You can use the chngcntr package to control which counters get reset when
> and where. For example in my preamble I use
> 
> \usepackage{chngcntr}
> \counterwithout{footnote}{chapter}
> 
> for continuous numbering of footnotes across chapter boundaries.
> 
> So you could use something like \counterwithin*{defn}{subsection} etc.,
> substituting "defn" for the names of all the environments whose counter you
> want to redefine.

When I do
\usepackage{chngcntr}
\counterwithin{definition}{subsection}
in the preamble of Lyx, it tells me definition is not a counter. I assume, that 
e.g. propositions or  definitions have a "counter variable".

But how do I get their names?

Kind regards,
iustifico

Re: Theoreme Enumeration by subsection

2010-04-17 Thread rgheck

On 04/17/2010 04:42 PM, iustifico wrote:

Am 17.04.2010 um 20:45 schrieb Philiрp Rеichmuth:

   

Am Sat, 17 Apr 2010 19:54:05 +0200 schrieb iustifico:
 

I am using "book (KOMA-script)" as documentclass and I want to
enumerate my propositions, definitions etc. by subsection, like this:

I. Section
I.1 Subsection
Definition I.1.1
Proposition I.1.2
   

You can use the chngcntr package to control which counters get reset when
and where. For example in my preamble I use

\usepackage{chngcntr}
\counterwithout{footnote}{chapter}

for continuous numbering of footnotes across chapter boundaries.

So you could use something like \counterwithin*{defn}{subsection} etc.,
substituting "defn" for the names of all the environments whose counter you
want to redefine.
 

When I do
\usepackage{chngcntr}
\counterwithin{definition}{subsection}
in the preamble of Lyx, it tells me definition is not a counter. I assume, that e.g. 
propositions or  definitions have a "counter variable".

But how do I get their names?

   

The counters are shared with theorem, lemma, etc. I think what you want is:
\counterwithin{thm}{subsection}
See the theorems-std.inc or theorems-ams.inc file for how the theorem 
environments are defined.


By the way, I don't know why it didn't occur to me before, but the 
attached is a module for this. It's the obvious adaptation of the the 
"Theorems by Section" module. Put it in your LyX user directory (e.g., 
~/.lyx/layouts/ on Linux), reconfigure LyX, and it will appear under 
Document>Settings>Modules. Select it, and your theorems will be numbered 
by subsection.


Richard


#\DeclareLyXModule{Theorems (Numbered by Subsection)}
#DescriptionBegin
#Numbers theorems and the like by subsection (i.e., the counter is reset at
#each subsection start).
#DescriptionEnd
#Requires: theorems-std | theorems-ams
#Excludes: theorems-chap theorems-sec

# Author: Richard Heck 
# Tweaked by Paul Rubin  June '09 (added theoremstyle)

Format 11

Counter theorem
Within subsection
End

Style Theorem
Preamble
\theoremstyle{plain}
\newtheorem{thm}{Theorem}[subsection]
EndPreamble
End


Re: Theoreme Enumeration by subsection

2010-04-17 Thread Paul A. Rubin

On 4/17/2010 4:42 PM, iustifico wrote:



When I do
\usepackage{chngcntr}
\counterwithin{definition}{subsection}
in the preamble of Lyx, it tells me definition is not a counter. I assume, that e.g. 
propositions or  definitions have a "counter variable".

But how do I get their names?

Kind regards,
iustifico


All the theorem-like environments use the counter thm.

An alternative to the chngcntr package is to create a module to do this. 
 In LyX's layouts directory, you should have theorems-sec.module.  Copy 
it to your local layouts directory with the name theorems-subsec.module. 
 Open it with a plain text editor, change "section" to "subsection" in 
lines 1, 3, 14 and 20 and save that.  Reconfigure and restart LyX.  In 
your document, go to Document > Settings > Modules and load either 
Theorems or Theorems (AMS), followed by the new Theorems (By Subsection) 
module.  That should do it.


/Paul




Re: Theoreme Enumeration by subsection

2010-04-17 Thread iustifico
Am 17.04.2010 um 23:04 schrieb rgheck:
> The counters are shared with theorem, lemma, etc. I think what you want is:
>\counterwithin{thm}{subsection}
Thank you very much, this is exactly the way I needed it to work.

Regards,
iustifico



Re: Theoreme Enumeration by subsection

2010-04-17 Thread iustifico

Am 17.04.2010 um 23:22 schrieb Paul A. Rubin:
> All the theorem-like environments use the counter thm.
> 
> An alternative to the chngcntr package is to create a module to do this.  In 
> LyX's layouts directory, you should have theorems-sec.module.  Copy it to 
> your local layouts directory with the name theorems-subsec.module.  Open it 
> with a plain text editor, change "section" to "subsection" in lines 1, 3, 14 
> and 20 and save that.  Reconfigure and restart LyX.  In your document, go to 
> Document > Settings > Modules and load either Theorems or Theorems (AMS), 
> followed by the new Theorems (By Subsection) module.  That should do it.
> 
> /Paul

That's a nice explanation. Thank you very much.

Kind regards,
iustifico