paper size

2013-10-04 Thread Patrick Dupre
Hello,

In the versin 2.0.6 there are 2 way of setting the paper size:
document-setting-Page layout
and
tools-Preferences-Output-Latex

Can we have some clarifications?

Thanks

===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===


Re: paper size

2013-10-04 Thread Liviu Andronic
On Fri, Oct 4, 2013 at 10:49 AM, Patrick Dupre pdu...@gmx.com wrote:
 Hello,

 In the versin 2.0.6 there are 2 way of setting the paper size:

A quick guess:

 document-setting-Page layout

Custom chosen paper size for the _current_ document.

 and
 tools-Preferences-Output-Latex

Default paper size for new documents.

Liviu


Re: no title

2013-10-04 Thread Jürgen Spitzmüller
Am Donnerstag 03 Oktober 2013, 23:37:37 schrieb Patrick Dupre:
 I have a bib file correct where I the field TITLE are filled.
 However, I would like to control this field. For example, with some
 documents I do not want to have the TITLES in the reference list.
 I did not find a way to use:
 AtEveryBibitem{\clearfield{title}}
 
 Is there another option?

(I assume you use biblatex):

\DeclareFieldFormat*{title}{}

in preamble after biblatex has been loaded.

Jürgen


Re: no title

2013-10-04 Thread Patrick Dupre
 
 Am Donnerstag 03 Oktober 2013, 23:37:37 schrieb Patrick Dupre:
  I have a bib file correct where I the field TITLE are filled.
  However, I would like to control this field. For example, with some
  documents I do not want to have the TITLES in the reference list.
  I did not find a way to use:
  AtEveryBibitem{\clearfield{title}}
  
  Is there another option?
 
 (I assume you use biblatex):
 
 \DeclareFieldFormat*{title}{}
 
 in preamble after biblatex has been loaded.
 
Thank for the idea. However,
if I declare \usepackage[style=authoryear,natbib=true]{biblatex}
after
 \usepackage[sort, compress]{natbib} 

there is a conflict

If I remove 
\usepackage[sort, compress]{natbib} 
then I cannot use
\bibliographystyle{unsrt}
If would like keep using Bibtex generated bibliography.

I tried with and withou the .lyx/layouts/biblatex.module

Idea?

===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===


Re: no title

2013-10-04 Thread Jürgen Spitzmüller
Patrick Dupre wrote:
 Thank for the idea. However,
 if I declare \usepackage[style=authoryear,natbib=true]{biblatex}
 after
  \usepackage[sort, compress]{natbib} 
 
 there is a conflict

Sure, you have to decide which approach you want to use, you cannot use both.

 If I remove 
 \usepackage[sort, compress]{natbib} 
 then I cannot use
 \bibliographystyle{unsrt}
 If would like keep using Bibtex generated bibliography.

OK, so you are NOT using biblatex. Then you will need to copy and edit the 
style file unsrt.bst. Note, though, that unsrt is not really compatible with 
natbib, you should rather use unsrtnat.

So, make a copy of unsrtnat.bst, say unsrtnat-notitle.bst. In this file, 
change the following method:

FUNCTION {format.title}
{ title empty$
{  }
{ title t change.case$ }
  if$
}

to

FUNCTION {format.title}{  }

Make sure the file unsrtnat-notitle.bst is in your texmf tree. In LyX, issue 
rescan in the bibtex dialog, then you should be able to chose unsert-
notitle.

HTH
Jürgen


page of floats margins

2013-10-04 Thread Liviu Andronic
Dear all,
I'm writing a document in which I'd like to keep default page margins
but for the page of floats. I have some floats with very wide tables
that do not get properly centered using default page margins. So is it
possible to set custom page margins for the page of floats? And can I
make certain page of floats use landscape mode?

Regards,
Liviu

-- 
Do you know how to read?
http://www.alienetworks.com/srtest.cfm
http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
Do you know how to write?
http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail


Re: no title

2013-10-04 Thread Patrick Dupre
Humm,

I just copy 
cp /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt.bst 
/usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt-notitle.bst

and after changing unsrt by unsrt-notitle, I get a file without any references:

This is BibTeX, Version 0.99d (TeX Live 2013/dev)
The top-level auxiliary file: Pre-ANR_2014.aux
I couldn't open style file unsrt-notitle.bst
---line 77 of file Pre-ANR_2014.aux
 : \bibstyle{unsrt-notitle
 :                        }
I'm skipping whatever remains of this command

It looks like that I have to run something else! I already rescaned and 
reconfigured lyx.

But!!



 Patrick Dupre wrote:
  Thank for the idea. However,
  if I declare \usepackage[style=authoryear,natbib=true]{biblatex}
  after
  \usepackage[sort, compress]{natbib} 
  
  there is a conflict
 
 Sure, you have to decide which approach you want to use, you cannot use both.
 
  If I remove 
  \usepackage[sort, compress]{natbib} 
  then I cannot use
  \bibliographystyle{unsrt}
  If would like keep using Bibtex generated bibliography.
 
 OK, so you are NOT using biblatex. Then you will need to copy and edit the 
 style file unsrt.bst. Note, though, that unsrt is not really compatible 
 with 
 natbib, you should rather use unsrtnat.
 
 So, make a copy of unsrtnat.bst, say unsrtnat-notitle.bst. In this file, 
 change the following method:
 
 FUNCTION {format.title}
 { title empty$
  {  }
  { title t change.case$ }
  if$
 }
 
 to
 
 FUNCTION {format.title}{  }
 
 Make sure the file unsrtnat-notitle.bst is in your texmf tree. In LyX, issue 
 rescan in the bibtex dialog, then you should be able to chose unsert-
 notitle.
 
 HTH
 Jürgen


===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===


Re: no title

2013-10-04 Thread stefano franchi
On Fri, Oct 4, 2013 at 10:10 AM, Patrick Dupre pdu...@gmx.com wrote:

 Humm,

 I just copy
 cp /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt.bst
 /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt-notitle.bst

 and after changing unsrt by unsrt-notitle, I get a file without any
 references:

 This is BibTeX, Version 0.99d (TeX Live 2013/dev)
 The top-level auxiliary file: Pre-ANR_2014.aux
 I couldn't open style file unsrt-notitle.bst
 ---line 77 of file Pre-ANR_2014.aux
  : \bibstyle{unsrt-notitle
  :}
 I'm skipping whatever remains of this command

 It looks like that I have to run something else! I already rescaned and
 reconfigured lyx.


Hmm, did you update texlive's database (sudo texhash)? It looks like tex
can't find the new .bst file.

Stefano

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

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


Only highlighting a single bullet point

2013-10-04 Thread Daniel Rogger

Dear All,

I am creating a presentation with bullet points.  On the outline slide, 
I want all but one of the bullets to be dimmed.  Then I want to go on to 
some other slides under that section.  Then I produce a new version of 
the outline slide in which all but a new bullet is dimmed.


Is this possible in LyX?

With best wishes,

Dan




Re: no title

2013-10-04 Thread Patrick Dupre


 - Original Message -
 From: stefano franchi
 Sent: 10/04/13 05:15 PM
 To: Patrick Dupre
 Subject: Re: no title
 
 On Fri, Oct 4, 2013 at 10:10 AM, Patrick Dupre pdu...@gmx.com wrote:
 
  Humm,
 
  I just copy
  cp /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt.bst
  /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt-notitle.bst
 
  and after changing unsrt by unsrt-notitle, I get a file without any
  references:
 
  This is BibTeX, Version 0.99d (TeX Live 2013/dev)
  The top-level auxiliary file: Pre-ANR_2014.aux
  I couldn't open style file unsrt-notitle.bst
  ---line 77 of file Pre-ANR_2014.aux
  : \bibstyle{unsrt-notitle
  : }
  I'm skipping whatever remains of this command
 
  It looks like that I have to run something else! I already rescaned and
  reconfigured lyx.
 
 
 Hmm, did you update texlive's database (sudo texhash)? It looks like tex
 can't find the new .bst file.
 
I did texhash and then I get:

Package natbib Warning: Citation(s) may have changed.
(natbib)                Rerun to get citations correct.


! Package natbib Error: Bibliography not compatible with author-year citations.

(natbib)                Press return to continue in numerical citation style.


See the natbib package documentation for explanation.
Type  H return  for immediate help.
 ...                                              
                                                  
l.121 ...and\NAT@force@numbers{}\NAT@force@numbers
                                                  
Check the bibliography entries for non-compliant syntax,
or select author-year BibTeX style, e.g. plainnat

) ) 

===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===


Re: Only highlighting a single bullet point

2013-10-04 Thread Jürgen Spitzmüller
Am Freitag 04 Oktober 2013, 16:48:53 schrieb Daniel Rogger:
 I am creating a presentation with bullet points.  On the outline slide, 
 I want all but one of the bullets to be dimmed.  Then I want to go on to 
 some other slides under that section.  Then I produce a new version of 
 the outline slide in which all but a new bullet is dimmed.
 
 Is this possible in LyX?

If you use the beamer class, yes. See attached example.

Jürgen

ex.lyx
Description: application/lyx


For Lyx Users: index

2013-10-04 Thread Frederick FN Noronha फ्रेड्रिक नोरोन्या *فريدريك نورونيا
Please could you help me with this?

In the index, I'm adding:
resorts|see{beeach resorts}

And what I get is
resorts, see {eeach resorts}191

OR
resorts|see beeach resorts
and
resorts, see beach resorts191

QUESTION:
How do I leave out the page number?
Why do I need to misspell the word to get 'beach' correctly spelt?

Thanks in advance, FN

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
_/_/
_/
_/  FN  P +91-832-240-9490 M +91-982-212-2436 f...@goa-india.org
_/  Goa,1556 titles: http://bit.ly/Goa1556Books2
_/
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/


Requesting a feature... semi-automated index-creation tool

2013-10-04 Thread Frederick FN Noronha फ्रेड्रिक नोरोन्या *فريدريك نورونيا
Is it possible to have some semi-automated tool for creating indexes in
Lyx? Something like TExtract http://www.Texyz.com -- it could allow the
user to enter the keywords, and then accept those appearing in the text. FN

FN +91-832-2409490 or +91-9822122436 f...@goa-india.org


Re: page of floats margins

2013-10-04 Thread John Kane
http://wiki.lyx.org/FAQ/Output for the landscape question.  I have a feeling 
that the geometry package will handle the single page issue but I have never  
used it.





 From: Liviu Andronic landronim...@gmail.com
To: lyx-users lyx-users@lists.lyx.org 
Sent: Friday, October 4, 2013 10:22:13 AM
Subject: page of floats margins
 

Dear all,
I'm writing a document in which I'd like to keep default page margins
but for the page of floats. I have some floats with very wide tables
that do not get properly centered using default page margins. So is it
possible to set custom page margins for the page of floats? And can I
make certain page of floats use landscape mode?

Regards,
Liviu

-- 
Do you know how to read?
http://www.alienetworks.com/srtest.cfm
http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
Do you know how to write?
http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail

Re: For Lyx Users: index

2013-10-04 Thread Scott Kostyshak
On Fri, Oct 4, 2013 at 2:17 PM, Frederick FN Noronha फ्रेड्रिक नोरोन्या
*فريدريك نورونيا fredericknoro...@gmail.com wrote:

 Please could you help me with this?

 In the index, I'm adding:
 resorts|see{beeach resorts}

 And what I get is
 resorts, see {eeach resorts}191

 OR
 resorts|see beeach resorts
 and
 resorts, see beach resorts191

 QUESTION:
 How do I leave out the page number?
 Why do I need to misspell the word to get 'beach' correctly spelt?

 Thanks in advance, FN


Does ERT help? I know little about indexes so I won't be able to help, but
Jurgen points out that |see has never been officially supported outside
ERT ( see http://www.lyx.org/trac/ticket/8786)

Best,

Scott


Re: For Lyx Users: index

2013-10-04 Thread stefano franchi
On Fri, Oct 4, 2013 at 2:03 PM, Scott Kostyshak skost...@lyx.org wrote:

 On Fri, Oct 4, 2013 at 2:17 PM, Frederick FN Noronha फ्रेड्रिक नोरोन्या
 *فريدريك نورونيا fredericknoro...@gmail.com wrote:

 Please could you help me with this?

 In the index, I'm adding:
 resorts|see{beeach resorts}

 And what I get is
 resorts, see {eeach resorts}191

 OR
 resorts|see beeach resorts
 and
 resorts, see beach resorts191

 QUESTION:
 How do I leave out the page number?
 Why do I need to misspell the word to get 'beach' correctly spelt?

 Thanks in advance, FN


 Does ERT help? I know little about indexes so I won't be able to help, but
 Jurgen points out that |see has never been officially supported outside
 ERT ( see http://www.lyx.org/trac/ticket/8786)


I got the see xxx construct to work by enclosing the argument in ERT
braces. IIn your case, I would write:
resorts|seeERT{ beach resortsERT}

In other words, both braces are inside ERT insets, and everyting (including
the two ERT insets) is inside an IDX inset.

Hope it helps,

Stefano

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

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


Re: For Lyx Users: index

2013-10-04 Thread Frederick FN Noronha फ्रेड्रिक नोरोन्या *فريدريك نورونيا
Dear Stefano and Scott,

Could you kindly correct my version (attached) for me to understand how it
should be done in Memoir class?

Tks, FN

FN +91-832-2409490 or +91-9822122436 f...@goa-india.org
Audio recordings (mostly from Goa): http://bit.ly/GoaRecordings
Goa,1556 http://www.scribd.com/doc/76671049/Goa1556-Catalogue-Books-from-Goa



On 5 October 2013 01:57, stefano franchi stefano.fran...@gmail.com wrote:




 On Fri, Oct 4, 2013 at 2:03 PM, Scott Kostyshak skost...@lyx.org wrote:

 On Fri, Oct 4, 2013 at 2:17 PM, Frederick FN Noronha फ्रेड्रिक नोरोन्या
 *فريدريك نورونيا fredericknoro...@gmail.com wrote:

 Please could you help me with this?

 In the index, I'm adding:
 resorts|see{beeach resorts}

 And what I get is
 resorts, see {eeach resorts}191

 OR
 resorts|see beeach resorts
 and
 resorts, see beach resorts191

 QUESTION:
 How do I leave out the page number?
 Why do I need to misspell the word to get 'beach' correctly spelt?

 Thanks in advance, FN


 Does ERT help? I know little about indexes so I won't be able to help,
 but Jurgen points out that |see has never been officially supported
 outside ERT ( see http://www.lyx.org/trac/ticket/8786)


 I got the see xxx construct to work by enclosing the argument in ERT
 braces. IIn your case, I would write:
 resorts|seeERT{ beach resortsERT}

 In other words, both braces are inside ERT insets, and everyting
 (including the two ERT insets) is inside an IDX inset.

 Hope it helps,

 Stefano

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

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



raghu-oct7-for-stefanno.pdf
Description: Adobe PDF document


raghu-oct7-for-stefanno.lyx
Description: Binary data


Re: Requesting a feature... semi-automated index-creation tool

2013-10-04 Thread Richard Heck
On 10/04/2013 02:18 PM, Frederick FN Noronha फ्रेड्रिक नोरोन्या *فريدريك 
نورونيا wrote:
Is it possible to have some semi-automated tool for creating indexes 
in Lyx? Something like TExtract http://www.Texyz.com -- it could allow 
the user to enter the keywords, and then accept those appearing in the 
text. FN


This would be best implemented as some sort of external script that ran 
on the LyX file itself. One could perhaps even adapt TExtract to the 
purpose.


Richard



paper size

2013-10-04 Thread Patrick Dupre
Hello,

In the versin 2.0.6 there are 2 way of setting the paper size:
document-setting-Page layout
and
tools-Preferences-Output-Latex

Can we have some clarifications?

Thanks

===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===


Re: paper size

2013-10-04 Thread Liviu Andronic
On Fri, Oct 4, 2013 at 10:49 AM, Patrick Dupre pdu...@gmx.com wrote:
 Hello,

 In the versin 2.0.6 there are 2 way of setting the paper size:

A quick guess:

 document-setting-Page layout

Custom chosen paper size for the _current_ document.

 and
 tools-Preferences-Output-Latex

Default paper size for new documents.

Liviu


Re: no title

2013-10-04 Thread Jürgen Spitzmüller
Am Donnerstag 03 Oktober 2013, 23:37:37 schrieb Patrick Dupre:
 I have a bib file correct where I the field TITLE are filled.
 However, I would like to control this field. For example, with some
 documents I do not want to have the TITLES in the reference list.
 I did not find a way to use:
 AtEveryBibitem{\clearfield{title}}
 
 Is there another option?

(I assume you use biblatex):

\DeclareFieldFormat*{title}{}

in preamble after biblatex has been loaded.

Jürgen


Re: no title

2013-10-04 Thread Patrick Dupre
 
 Am Donnerstag 03 Oktober 2013, 23:37:37 schrieb Patrick Dupre:
  I have a bib file correct where I the field TITLE are filled.
  However, I would like to control this field. For example, with some
  documents I do not want to have the TITLES in the reference list.
  I did not find a way to use:
  AtEveryBibitem{\clearfield{title}}
  
  Is there another option?
 
 (I assume you use biblatex):
 
 \DeclareFieldFormat*{title}{}
 
 in preamble after biblatex has been loaded.
 
Thank for the idea. However,
if I declare \usepackage[style=authoryear,natbib=true]{biblatex}
after
 \usepackage[sort, compress]{natbib} 

there is a conflict

If I remove 
\usepackage[sort, compress]{natbib} 
then I cannot use
\bibliographystyle{unsrt}
If would like keep using Bibtex generated bibliography.

I tried with and withou the .lyx/layouts/biblatex.module

Idea?

===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===


Re: no title

2013-10-04 Thread Jürgen Spitzmüller
Patrick Dupre wrote:
 Thank for the idea. However,
 if I declare \usepackage[style=authoryear,natbib=true]{biblatex}
 after
  \usepackage[sort, compress]{natbib} 
 
 there is a conflict

Sure, you have to decide which approach you want to use, you cannot use both.

 If I remove 
 \usepackage[sort, compress]{natbib} 
 then I cannot use
 \bibliographystyle{unsrt}
 If would like keep using Bibtex generated bibliography.

OK, so you are NOT using biblatex. Then you will need to copy and edit the 
style file unsrt.bst. Note, though, that unsrt is not really compatible with 
natbib, you should rather use unsrtnat.

So, make a copy of unsrtnat.bst, say unsrtnat-notitle.bst. In this file, 
change the following method:

FUNCTION {format.title}
{ title empty$
{  }
{ title t change.case$ }
  if$
}

to

FUNCTION {format.title}{  }

Make sure the file unsrtnat-notitle.bst is in your texmf tree. In LyX, issue 
rescan in the bibtex dialog, then you should be able to chose unsert-
notitle.

HTH
Jürgen


page of floats margins

2013-10-04 Thread Liviu Andronic
Dear all,
I'm writing a document in which I'd like to keep default page margins
but for the page of floats. I have some floats with very wide tables
that do not get properly centered using default page margins. So is it
possible to set custom page margins for the page of floats? And can I
make certain page of floats use landscape mode?

Regards,
Liviu

-- 
Do you know how to read?
http://www.alienetworks.com/srtest.cfm
http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
Do you know how to write?
http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail


Re: no title

2013-10-04 Thread Patrick Dupre
Humm,

I just copy 
cp /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt.bst 
/usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt-notitle.bst

and after changing unsrt by unsrt-notitle, I get a file without any references:

This is BibTeX, Version 0.99d (TeX Live 2013/dev)
The top-level auxiliary file: Pre-ANR_2014.aux
I couldn't open style file unsrt-notitle.bst
---line 77 of file Pre-ANR_2014.aux
 : \bibstyle{unsrt-notitle
 :                        }
I'm skipping whatever remains of this command

It looks like that I have to run something else! I already rescaned and 
reconfigured lyx.

But!!



 Patrick Dupre wrote:
  Thank for the idea. However,
  if I declare \usepackage[style=authoryear,natbib=true]{biblatex}
  after
  \usepackage[sort, compress]{natbib} 
  
  there is a conflict
 
 Sure, you have to decide which approach you want to use, you cannot use both.
 
  If I remove 
  \usepackage[sort, compress]{natbib} 
  then I cannot use
  \bibliographystyle{unsrt}
  If would like keep using Bibtex generated bibliography.
 
 OK, so you are NOT using biblatex. Then you will need to copy and edit the 
 style file unsrt.bst. Note, though, that unsrt is not really compatible 
 with 
 natbib, you should rather use unsrtnat.
 
 So, make a copy of unsrtnat.bst, say unsrtnat-notitle.bst. In this file, 
 change the following method:
 
 FUNCTION {format.title}
 { title empty$
  {  }
  { title t change.case$ }
  if$
 }
 
 to
 
 FUNCTION {format.title}{  }
 
 Make sure the file unsrtnat-notitle.bst is in your texmf tree. In LyX, issue 
 rescan in the bibtex dialog, then you should be able to chose unsert-
 notitle.
 
 HTH
 Jürgen


===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===


Re: no title

2013-10-04 Thread stefano franchi
On Fri, Oct 4, 2013 at 10:10 AM, Patrick Dupre pdu...@gmx.com wrote:

 Humm,

 I just copy
 cp /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt.bst
 /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt-notitle.bst

 and after changing unsrt by unsrt-notitle, I get a file without any
 references:

 This is BibTeX, Version 0.99d (TeX Live 2013/dev)
 The top-level auxiliary file: Pre-ANR_2014.aux
 I couldn't open style file unsrt-notitle.bst
 ---line 77 of file Pre-ANR_2014.aux
  : \bibstyle{unsrt-notitle
  :}
 I'm skipping whatever remains of this command

 It looks like that I have to run something else! I already rescaned and
 reconfigured lyx.


Hmm, did you update texlive's database (sudo texhash)? It looks like tex
can't find the new .bst file.

Stefano

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

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


Only highlighting a single bullet point

2013-10-04 Thread Daniel Rogger

Dear All,

I am creating a presentation with bullet points.  On the outline slide, 
I want all but one of the bullets to be dimmed.  Then I want to go on to 
some other slides under that section.  Then I produce a new version of 
the outline slide in which all but a new bullet is dimmed.


Is this possible in LyX?

With best wishes,

Dan




Re: no title

2013-10-04 Thread Patrick Dupre


 - Original Message -
 From: stefano franchi
 Sent: 10/04/13 05:15 PM
 To: Patrick Dupre
 Subject: Re: no title
 
 On Fri, Oct 4, 2013 at 10:10 AM, Patrick Dupre pdu...@gmx.com wrote:
 
  Humm,
 
  I just copy
  cp /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt.bst
  /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt-notitle.bst
 
  and after changing unsrt by unsrt-notitle, I get a file without any
  references:
 
  This is BibTeX, Version 0.99d (TeX Live 2013/dev)
  The top-level auxiliary file: Pre-ANR_2014.aux
  I couldn't open style file unsrt-notitle.bst
  ---line 77 of file Pre-ANR_2014.aux
  : \bibstyle{unsrt-notitle
  : }
  I'm skipping whatever remains of this command
 
  It looks like that I have to run something else! I already rescaned and
  reconfigured lyx.
 
 
 Hmm, did you update texlive's database (sudo texhash)? It looks like tex
 can't find the new .bst file.
 
I did texhash and then I get:

Package natbib Warning: Citation(s) may have changed.
(natbib)                Rerun to get citations correct.


! Package natbib Error: Bibliography not compatible with author-year citations.

(natbib)                Press return to continue in numerical citation style.


See the natbib package documentation for explanation.
Type  H return  for immediate help.
 ...                                              
                                                  
l.121 ...and\NAT@force@numbers{}\NAT@force@numbers
                                                  
Check the bibliography entries for non-compliant syntax,
or select author-year BibTeX style, e.g. plainnat

) ) 

===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===


Re: Only highlighting a single bullet point

2013-10-04 Thread Jürgen Spitzmüller
Am Freitag 04 Oktober 2013, 16:48:53 schrieb Daniel Rogger:
 I am creating a presentation with bullet points.  On the outline slide, 
 I want all but one of the bullets to be dimmed.  Then I want to go on to 
 some other slides under that section.  Then I produce a new version of 
 the outline slide in which all but a new bullet is dimmed.
 
 Is this possible in LyX?

If you use the beamer class, yes. See attached example.

Jürgen

ex.lyx
Description: application/lyx


For Lyx Users: index

2013-10-04 Thread Frederick FN Noronha फ्रेड्रिक नोरोन्या *فريدريك نورونيا
Please could you help me with this?

In the index, I'm adding:
resorts|see{beeach resorts}

And what I get is
resorts, see {eeach resorts}191

OR
resorts|see beeach resorts
and
resorts, see beach resorts191

QUESTION:
How do I leave out the page number?
Why do I need to misspell the word to get 'beach' correctly spelt?

Thanks in advance, FN

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
_/_/
_/
_/  FN  P +91-832-240-9490 M +91-982-212-2436 f...@goa-india.org
_/  Goa,1556 titles: http://bit.ly/Goa1556Books2
_/
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/


Requesting a feature... semi-automated index-creation tool

2013-10-04 Thread Frederick FN Noronha फ्रेड्रिक नोरोन्या *فريدريك نورونيا
Is it possible to have some semi-automated tool for creating indexes in
Lyx? Something like TExtract http://www.Texyz.com -- it could allow the
user to enter the keywords, and then accept those appearing in the text. FN

FN +91-832-2409490 or +91-9822122436 f...@goa-india.org


Re: page of floats margins

2013-10-04 Thread John Kane
http://wiki.lyx.org/FAQ/Output for the landscape question.  I have a feeling 
that the geometry package will handle the single page issue but I have never  
used it.





 From: Liviu Andronic landronim...@gmail.com
To: lyx-users lyx-users@lists.lyx.org 
Sent: Friday, October 4, 2013 10:22:13 AM
Subject: page of floats margins
 

Dear all,
I'm writing a document in which I'd like to keep default page margins
but for the page of floats. I have some floats with very wide tables
that do not get properly centered using default page margins. So is it
possible to set custom page margins for the page of floats? And can I
make certain page of floats use landscape mode?

Regards,
Liviu

-- 
Do you know how to read?
http://www.alienetworks.com/srtest.cfm
http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
Do you know how to write?
http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail

Re: For Lyx Users: index

2013-10-04 Thread Scott Kostyshak
On Fri, Oct 4, 2013 at 2:17 PM, Frederick FN Noronha फ्रेड्रिक नोरोन्या
*فريدريك نورونيا fredericknoro...@gmail.com wrote:

 Please could you help me with this?

 In the index, I'm adding:
 resorts|see{beeach resorts}

 And what I get is
 resorts, see {eeach resorts}191

 OR
 resorts|see beeach resorts
 and
 resorts, see beach resorts191

 QUESTION:
 How do I leave out the page number?
 Why do I need to misspell the word to get 'beach' correctly spelt?

 Thanks in advance, FN


Does ERT help? I know little about indexes so I won't be able to help, but
Jurgen points out that |see has never been officially supported outside
ERT ( see http://www.lyx.org/trac/ticket/8786)

Best,

Scott


Re: For Lyx Users: index

2013-10-04 Thread stefano franchi
On Fri, Oct 4, 2013 at 2:03 PM, Scott Kostyshak skost...@lyx.org wrote:

 On Fri, Oct 4, 2013 at 2:17 PM, Frederick FN Noronha फ्रेड्रिक नोरोन्या
 *فريدريك نورونيا fredericknoro...@gmail.com wrote:

 Please could you help me with this?

 In the index, I'm adding:
 resorts|see{beeach resorts}

 And what I get is
 resorts, see {eeach resorts}191

 OR
 resorts|see beeach resorts
 and
 resorts, see beach resorts191

 QUESTION:
 How do I leave out the page number?
 Why do I need to misspell the word to get 'beach' correctly spelt?

 Thanks in advance, FN


 Does ERT help? I know little about indexes so I won't be able to help, but
 Jurgen points out that |see has never been officially supported outside
 ERT ( see http://www.lyx.org/trac/ticket/8786)


I got the see xxx construct to work by enclosing the argument in ERT
braces. IIn your case, I would write:
resorts|seeERT{ beach resortsERT}

In other words, both braces are inside ERT insets, and everyting (including
the two ERT insets) is inside an IDX inset.

Hope it helps,

Stefano

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

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


Re: For Lyx Users: index

2013-10-04 Thread Frederick FN Noronha फ्रेड्रिक नोरोन्या *فريدريك نورونيا
Dear Stefano and Scott,

Could you kindly correct my version (attached) for me to understand how it
should be done in Memoir class?

Tks, FN

FN +91-832-2409490 or +91-9822122436 f...@goa-india.org
Audio recordings (mostly from Goa): http://bit.ly/GoaRecordings
Goa,1556 http://www.scribd.com/doc/76671049/Goa1556-Catalogue-Books-from-Goa



On 5 October 2013 01:57, stefano franchi stefano.fran...@gmail.com wrote:




 On Fri, Oct 4, 2013 at 2:03 PM, Scott Kostyshak skost...@lyx.org wrote:

 On Fri, Oct 4, 2013 at 2:17 PM, Frederick FN Noronha फ्रेड्रिक नोरोन्या
 *فريدريك نورونيا fredericknoro...@gmail.com wrote:

 Please could you help me with this?

 In the index, I'm adding:
 resorts|see{beeach resorts}

 And what I get is
 resorts, see {eeach resorts}191

 OR
 resorts|see beeach resorts
 and
 resorts, see beach resorts191

 QUESTION:
 How do I leave out the page number?
 Why do I need to misspell the word to get 'beach' correctly spelt?

 Thanks in advance, FN


 Does ERT help? I know little about indexes so I won't be able to help,
 but Jurgen points out that |see has never been officially supported
 outside ERT ( see http://www.lyx.org/trac/ticket/8786)


 I got the see xxx construct to work by enclosing the argument in ERT
 braces. IIn your case, I would write:
 resorts|seeERT{ beach resortsERT}

 In other words, both braces are inside ERT insets, and everyting
 (including the two ERT insets) is inside an IDX inset.

 Hope it helps,

 Stefano

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

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



raghu-oct7-for-stefanno.pdf
Description: Adobe PDF document


raghu-oct7-for-stefanno.lyx
Description: Binary data


Re: Requesting a feature... semi-automated index-creation tool

2013-10-04 Thread Richard Heck
On 10/04/2013 02:18 PM, Frederick FN Noronha फ्रेड्रिक नोरोन्या *فريدريك 
نورونيا wrote:
Is it possible to have some semi-automated tool for creating indexes 
in Lyx? Something like TExtract http://www.Texyz.com -- it could allow 
the user to enter the keywords, and then accept those appearing in the 
text. FN


This would be best implemented as some sort of external script that ran 
on the LyX file itself. One could perhaps even adapt TExtract to the 
purpose.


Richard



paper size

2013-10-04 Thread Patrick Dupre
Hello,

In the versin 2.0.6 there are 2 way of setting the paper size:
document->setting->Page layout
and
tools->Preferences->Output->Latex

Can we have some clarifications?

Thanks

===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===


Re: paper size

2013-10-04 Thread Liviu Andronic
On Fri, Oct 4, 2013 at 10:49 AM, Patrick Dupre  wrote:
> Hello,
>
> In the versin 2.0.6 there are 2 way of setting the paper size:

A quick guess:

> document->setting->Page layout
>
Custom chosen paper size for the _current_ document.

> and
> tools->Preferences->Output->Latex
>
Default paper size for new documents.

Liviu


Re: no title

2013-10-04 Thread Jürgen Spitzmüller
Am Donnerstag 03 Oktober 2013, 23:37:37 schrieb Patrick Dupre:
> I have a bib file correct where I the field TITLE are filled.
> However, I would like to control this field. For example, with some
> documents I do not want to have the TITLES in the reference list.
> I did not find a way to use:
> AtEveryBibitem{\clearfield{title}}
> 
> Is there another option?

(I assume you use biblatex):

\DeclareFieldFormat*{title}{}

in preamble after biblatex has been loaded.

Jürgen


Re: no title

2013-10-04 Thread Patrick Dupre
> 
> Am Donnerstag 03 Oktober 2013, 23:37:37 schrieb Patrick Dupre:
> > I have a bib file correct where I the field TITLE are filled.
> > However, I would like to control this field. For example, with some
> > documents I do not want to have the TITLES in the reference list.
> > I did not find a way to use:
> > AtEveryBibitem{\clearfield{title}}
> > 
> > Is there another option?
> 
> (I assume you use biblatex):
> 
> \DeclareFieldFormat*{title}{}
> 
> in preamble after biblatex has been loaded.
> 
Thank for the idea. However,
if I declare \usepackage[style=authoryear,natbib=true]{biblatex}
after
 \usepackage[sort, compress]{natbib} 

there is a conflict

If I remove 
\usepackage[sort, compress]{natbib} 
then I cannot use
\bibliographystyle{unsrt}
If would like keep using Bibtex generated bibliography.

I tried with and withou the .lyx/layouts/biblatex.module

Idea?

===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===


Re: no title

2013-10-04 Thread Jürgen Spitzmüller
Patrick Dupre wrote:
> Thank for the idea. However,
> if I declare \usepackage[style=authoryear,natbib=true]{biblatex}
> after
>  \usepackage[sort, compress]{natbib} 
> 
> there is a conflict

Sure, you have to decide which approach you want to use, you cannot use both.

> If I remove 
> \usepackage[sort, compress]{natbib} 
> then I cannot use
> \bibliographystyle{unsrt}
> If would like keep using Bibtex generated bibliography.

OK, so you are NOT using biblatex. Then you will need to copy and edit the 
style file unsrt.bst. Note, though, that "unsrt" is not really compatible with 
natbib, you should rather use "unsrtnat".

So, make a copy of unsrtnat.bst, say unsrtnat-notitle.bst. In this file, 
change the following method:

FUNCTION {format.title}
{ title empty$
{ "" }
{ title "t" change.case$ }
  if$
}

to

FUNCTION {format.title}{ "" }

Make sure the file unsrtnat-notitle.bst is in your texmf tree. In LyX, issue 
"rescan" in the bibtex dialog, then you should be able to chose "unsert-
notitle".

HTH
Jürgen


page of floats margins

2013-10-04 Thread Liviu Andronic
Dear all,
I'm writing a document in which I'd like to keep default page margins
but for the page of floats. I have some floats with very wide tables
that do not get properly centered using default page margins. So is it
possible to set custom page margins for the page of floats? And can I
make certain page of floats use landscape mode?

Regards,
Liviu

-- 
Do you know how to read?
http://www.alienetworks.com/srtest.cfm
http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
Do you know how to write?
http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail


Re: no title

2013-10-04 Thread Patrick Dupre
Humm,

I just copy 
cp /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt.bst 
/usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt-notitle.bst

and after changing unsrt by unsrt-notitle, I get a file without any references:

This is BibTeX, Version 0.99d (TeX Live 2013/dev)
The top-level auxiliary file: Pre-ANR_2014.aux
I couldn't open style file unsrt-notitle.bst
---line 77 of file Pre-ANR_2014.aux
 : \bibstyle{unsrt-notitle
 :                        }
I'm skipping whatever remains of this command

It looks like that I have to run something else! I already rescaned and 
reconfigured lyx.

But!!



> Patrick Dupre wrote:
> > Thank for the idea. However,
> > if I declare \usepackage[style=authoryear,natbib=true]{biblatex}
> > after
> > \usepackage[sort, compress]{natbib} 
> > 
> > there is a conflict
> 
> Sure, you have to decide which approach you want to use, you cannot use both.
> 
> > If I remove 
> > \usepackage[sort, compress]{natbib} 
> > then I cannot use
> > \bibliographystyle{unsrt}
> > If would like keep using Bibtex generated bibliography.
> 
> OK, so you are NOT using biblatex. Then you will need to copy and edit the 
> style file unsrt.bst. Note, though, that "unsrt" is not really compatible 
> with 
> natbib, you should rather use "unsrtnat".
> 
> So, make a copy of unsrtnat.bst, say unsrtnat-notitle.bst. In this file, 
> change the following method:
> 
> FUNCTION {format.title}
> { title empty$
>  { "" }
>  { title "t" change.case$ }
>  if$
> }
> 
> to
> 
> FUNCTION {format.title}{ "" }
> 
> Make sure the file unsrtnat-notitle.bst is in your texmf tree. In LyX, issue 
> "rescan" in the bibtex dialog, then you should be able to chose "unsert-
> notitle".
> 
> HTH
> Jürgen


===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===


Re: no title

2013-10-04 Thread stefano franchi
On Fri, Oct 4, 2013 at 10:10 AM, Patrick Dupre  wrote:

> Humm,
>
> I just copy
> cp /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt.bst
> /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt-notitle.bst
>
> and after changing unsrt by unsrt-notitle, I get a file without any
> references:
>
> This is BibTeX, Version 0.99d (TeX Live 2013/dev)
> The top-level auxiliary file: Pre-ANR_2014.aux
> I couldn't open style file unsrt-notitle.bst
> ---line 77 of file Pre-ANR_2014.aux
>  : \bibstyle{unsrt-notitle
>  :}
> I'm skipping whatever remains of this command
>
> It looks like that I have to run something else! I already rescaned and
> reconfigured lyx.
>
>
Hmm, did you update texlive's database (sudo texhash)? It looks like tex
can't find the new .bst file.

Stefano

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

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


Only highlighting a single bullet point

2013-10-04 Thread Daniel Rogger

Dear All,

I am creating a presentation with bullet points.  On the outline slide, 
I want all but one of the bullets to be dimmed.  Then I want to go on to 
some other slides under that section.  Then I produce a new version of 
the outline slide in which all but a new bullet is dimmed.


Is this possible in LyX?

With best wishes,

Dan




Re: no title

2013-10-04 Thread Patrick Dupre


> - Original Message -
> From: stefano franchi
> Sent: 10/04/13 05:15 PM
> To: Patrick Dupre
> Subject: Re: no title
> 
> On Fri, Oct 4, 2013 at 10:10 AM, Patrick Dupre  wrote:
> 
> > Humm,
> >
> > I just copy
> > cp /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt.bst
> > /usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt-notitle.bst
> >
> > and after changing unsrt by unsrt-notitle, I get a file without any
> > references:
> >
> > This is BibTeX, Version 0.99d (TeX Live 2013/dev)
> > The top-level auxiliary file: Pre-ANR_2014.aux
> > I couldn't open style file unsrt-notitle.bst
> > ---line 77 of file Pre-ANR_2014.aux
> > : \bibstyle{unsrt-notitle
> > : }
> > I'm skipping whatever remains of this command
> >
> > It looks like that I have to run something else! I already rescaned and
> > reconfigured lyx.
> >
> >
> Hmm, did you update texlive's database (sudo texhash)? It looks like tex
> can't find the new .bst file.
> 
I did texhash and then I get:

Package natbib Warning: Citation(s) may have changed.
(natbib)                Rerun to get citations correct.


! Package natbib Error: Bibliography not compatible with author-year citations.

(natbib)                Press  to continue in numerical citation style.


See the natbib package documentation for explanation.
Type  H   for immediate help.
 ...                                              
                                                  
l.121 ...and\NAT@force@numbers{}\NAT@force@numbers
                                                  
Check the bibliography entries for non-compliant syntax,
or select author-year BibTeX style, e.g. plainnat

) ) 

===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===


Re: Only highlighting a single bullet point

2013-10-04 Thread Jürgen Spitzmüller
Am Freitag 04 Oktober 2013, 16:48:53 schrieb Daniel Rogger:
> I am creating a presentation with bullet points.  On the outline slide, 
> I want all but one of the bullets to be dimmed.  Then I want to go on to 
> some other slides under that section.  Then I produce a new version of 
> the outline slide in which all but a new bullet is dimmed.
> 
> Is this possible in LyX?

If you use the beamer class, yes. See attached example.

Jürgen

ex.lyx
Description: application/lyx


For Lyx Users: index

2013-10-04 Thread Frederick FN Noronha फ्रेड्रिक नोरोन्या *فريدريك نورونيا
Please could you help me with this?

In the index, I'm adding:
resorts|see{beeach resorts}

And what I get is
resorts, see {eeach resorts}191

OR
resorts|see beeach resorts
and
resorts, see beach resorts191

QUESTION:
How do I leave out the page number?
Why do I need to misspell the word to get 'beach' correctly spelt?

Thanks in advance, FN

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
_/_/
_/
_/  FN  P +91-832-240-9490 M +91-982-212-2436 f...@goa-india.org
_/  Goa,1556 titles: http://bit.ly/Goa1556Books2
_/
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/


Requesting a feature... semi-automated index-creation tool

2013-10-04 Thread Frederick FN Noronha फ्रेड्रिक नोरोन्या *فريدريك نورونيا
Is it possible to have some semi-automated tool for creating indexes in
Lyx? Something like TExtract http://www.Texyz.com -- it could allow the
user to enter the keywords, and then accept those appearing in the text. FN

FN +91-832-2409490 or +91-9822122436 f...@goa-india.org


Re: page of floats margins

2013-10-04 Thread John Kane
http://wiki.lyx.org/FAQ/Output for the landscape question.  I have a feeling 
that the geometry package will handle the single page issue but I have never  
used it.





 From: Liviu Andronic 
To: lyx-users  
Sent: Friday, October 4, 2013 10:22:13 AM
Subject: page of floats margins
 

Dear all,
I'm writing a document in which I'd like to keep default page margins
but for the page of floats. I have some floats with very wide tables
that do not get properly centered using default page margins. So is it
possible to set custom page margins for the page of floats? And can I
make certain page of floats use landscape mode?

Regards,
Liviu

-- 
Do you know how to read?
http://www.alienetworks.com/srtest.cfm
http://goodies.xfce.org/projects/applications/xfce4-dict#speed-reader
Do you know how to write?
http://garbl.home.comcast.net/~garbl/stylemanual/e.htm#e-mail

Re: For Lyx Users: index

2013-10-04 Thread Scott Kostyshak
On Fri, Oct 4, 2013 at 2:17 PM, Frederick FN Noronha फ्रेड्रिक नोरोन्या
*فريدريك نورونيا  wrote:

> Please could you help me with this?
>
> In the index, I'm adding:
> resorts|see{beeach resorts}
>
> And what I get is
> resorts, see {eeach resorts}191
>
> OR
> resorts|see beeach resorts
> and
> resorts, see beach resorts191
>
> QUESTION:
> How do I leave out the page number?
> Why do I need to misspell the word to get 'beach' correctly spelt?
>
> Thanks in advance, FN
>

Does ERT help? I know little about indexes so I won't be able to help, but
Jurgen points out that "|see has never been officially supported outside
ERT" ( see http://www.lyx.org/trac/ticket/8786)

Best,

Scott


Re: For Lyx Users: index

2013-10-04 Thread stefano franchi
On Fri, Oct 4, 2013 at 2:03 PM, Scott Kostyshak  wrote:

> On Fri, Oct 4, 2013 at 2:17 PM, Frederick FN Noronha फ्रेड्रिक नोरोन्या
> *فريدريك نورونيا  wrote:
>
>> Please could you help me with this?
>>
>> In the index, I'm adding:
>> resorts|see{beeach resorts}
>>
>> And what I get is
>> resorts, see {eeach resorts}191
>>
>> OR
>> resorts|see beeach resorts
>> and
>> resorts, see beach resorts191
>>
>> QUESTION:
>> How do I leave out the page number?
>> Why do I need to misspell the word to get 'beach' correctly spelt?
>>
>> Thanks in advance, FN
>>
>
> Does ERT help? I know little about indexes so I won't be able to help, but
> Jurgen points out that "|see has never been officially supported outside
> ERT" ( see http://www.lyx.org/trac/ticket/8786)
>
>
I got the "see xxx" construct to work by enclosing the argument in ERT
braces. IIn your case, I would write:
resorts|seeERT{ beach resortsERT}

In other words, both braces are inside ERT insets, and everyting (including
the two ERT insets) is inside an IDX inset.

Hope it helps,

Stefano

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

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


Re: For Lyx Users: index

2013-10-04 Thread Frederick FN Noronha फ्रेड्रिक नोरोन्या *فريدريك نورونيا
Dear Stefano and Scott,

Could you kindly correct my version (attached) for me to understand how it
should be done in Memoir class?

Tks, FN

FN +91-832-2409490 or +91-9822122436 f...@goa-india.org
Audio recordings (mostly from Goa): http://bit.ly/GoaRecordings
Goa,1556 http://www.scribd.com/doc/76671049/Goa1556-Catalogue-Books-from-Goa



On 5 October 2013 01:57, stefano franchi  wrote:

>
>
>
> On Fri, Oct 4, 2013 at 2:03 PM, Scott Kostyshak  wrote:
>
>> On Fri, Oct 4, 2013 at 2:17 PM, Frederick FN Noronha फ्रेड्रिक नोरोन्या
>> *فريدريك نورونيا  wrote:
>>
>>> Please could you help me with this?
>>>
>>> In the index, I'm adding:
>>> resorts|see{beeach resorts}
>>>
>>> And what I get is
>>> resorts, see {eeach resorts}191
>>>
>>> OR
>>> resorts|see beeach resorts
>>> and
>>> resorts, see beach resorts191
>>>
>>> QUESTION:
>>> How do I leave out the page number?
>>> Why do I need to misspell the word to get 'beach' correctly spelt?
>>>
>>> Thanks in advance, FN
>>>
>>
>> Does ERT help? I know little about indexes so I won't be able to help,
>> but Jurgen points out that "|see has never been officially supported
>> outside ERT" ( see http://www.lyx.org/trac/ticket/8786)
>>
>>
> I got the "see xxx" construct to work by enclosing the argument in ERT
> braces. IIn your case, I would write:
> resorts|seeERT{ beach resortsERT}
>
> In other words, both braces are inside ERT insets, and everyting
> (including the two ERT insets) is inside an IDX inset.
>
> Hope it helps,
>
> Stefano
>
> --
> __
> Stefano Franchi
> Associate Research Professor
> Department of Hispanic StudiesPh:   +1 (979) 845-2125
> Texas A University  Fax:  +1 (979) 845-6421
> College Station, Texas, USA
>
> stef...@tamu.edu
> http://stefano.cleinias.org
>


raghu-oct7-for-stefanno.pdf
Description: Adobe PDF document


raghu-oct7-for-stefanno.lyx
Description: Binary data


Re: Requesting a feature... semi-automated index-creation tool

2013-10-04 Thread Richard Heck
On 10/04/2013 02:18 PM, Frederick FN Noronha फ्रेड्रिक नोरोन्या *فريدريك 
نورونيا wrote:
Is it possible to have some semi-automated tool for creating indexes 
in Lyx? Something like TExtract http://www.Texyz.com -- it could allow 
the user to enter the keywords, and then accept those appearing in the 
text. FN


This would be best implemented as some sort of external script that ran 
on the LyX file itself. One could perhaps even adapt TExtract to the 
purpose.


Richard