RE: Finding Labels in Text

2004-08-24 Thread Rob S
See I'm too late!

Rob S

 -Original Message-
 From: Rich Shepard [mailto:[EMAIL PROTECTED]
 Sent: 24 August 2004 02:08
 To: [EMAIL PROTECTED]
 Subject: Re: Finding Labels in Text
 
 On Mon, 23 Aug 2004, Rich Shepard wrote:
 
I've somehow managed to enter a label twice. While I suppose it
 doesn't
  matter technically, it is not elegant and I'd like to clean it up.
To do
 so,
  I need to find all references to that label and make sure that each
one
  points to only one instance of it.
 
   While waiting for this message to post I figured out what I did and
 fixed
 things up. I have the same chapter title in two different parts of my
book.
 I need to distinguish the labels so each points to the proper place.
 
   Got it done.
 
 Rich
 
 --
 Dr. Richard B. Shepard, President
 Applied Ecosystem Services, Inc. (TM)
 http://www.appl-ecosys.com



RE: Finding Labels in Text

2004-08-24 Thread Rob S
See I'm too late!

Rob S

 -Original Message-
 From: Rich Shepard [mailto:[EMAIL PROTECTED]
 Sent: 24 August 2004 02:08
 To: [EMAIL PROTECTED]
 Subject: Re: Finding Labels in Text
 
 On Mon, 23 Aug 2004, Rich Shepard wrote:
 
I've somehow managed to enter a label twice. While I suppose it
 doesn't
  matter technically, it is not elegant and I'd like to clean it up.
To do
 so,
  I need to find all references to that label and make sure that each
one
  points to only one instance of it.
 
   While waiting for this message to post I figured out what I did and
 fixed
 things up. I have the same chapter title in two different parts of my
book.
 I need to distinguish the labels so each points to the proper place.
 
   Got it done.
 
 Rich
 
 --
 Dr. Richard B. Shepard, President
 Applied Ecosystem Services, Inc. (TM)
 http://www.appl-ecosys.com



RE: Finding Labels in Text

2004-08-24 Thread Rob S
See I'm too late!

Rob S

> -Original Message-
> From: Rich Shepard [mailto:[EMAIL PROTECTED]
> Sent: 24 August 2004 02:08
> To: [EMAIL PROTECTED]
> Subject: Re: Finding Labels in Text
> 
> On Mon, 23 Aug 2004, Rich Shepard wrote:
> 
> >   I've somehow managed to enter a label twice. While I suppose it
> doesn't
> > matter technically, it is not elegant and I'd like to clean it up.
To do
> so,
> > I need to find all references to that label and make sure that each
one
> > points to only one instance of it.
> 
>   While waiting for this message to post I figured out what I did and
> fixed
> things up. I have the same chapter title in two different parts of my
book.
> I need to distinguish the labels so each points to the proper place.
> 
>   Got it done.
> 
> Rich
> 
> --
> Dr. Richard B. Shepard, President
> Applied Ecosystem Services, Inc. (TM)
> <http://www.appl-ecosys.com>



Finding Labels in Text

2004-08-23 Thread Rich Shepard
  I've somehow managed to enter a label twice. While I suppose it doesn't
matter technically, it is not elegant and I'd like to clean it up. To do so,
I need to find all references to that label and make sure that each one
points to only one instance of it.

  I've tried searching for the the label string and for the chapter heading
it references. Find doesn't find any matching hits. I'm sure I've not
specified the search string correctly.

  Please pass me a pointer on how to find all references to a label.

Thanks,

Rich

-- 
Dr. Richard B. Shepard, President
Applied Ecosystem Services, Inc. (TM)
http://www.appl-ecosys.com


Re: Finding Labels in Text

2004-08-23 Thread Angus Leeming
Rich Shepard wrote:

   I've somehow managed to enter a label twice. While I suppose it doesn't
 matter technically, it is not elegant and I'd like to clean it up. To do
 so, I need to find all references to that label and make sure that each
 one points to only one instance of it.
 
   I've tried searching for the the label string and for the chapter
   heading
 it references. Find doesn't find any matching hits. I'm sure I've not
 specified the search string correctly.
 
   Please pass me a pointer on how to find all references to a label.

grep -n my_label *.lyx

?

Actually, since a label reference is just a string, removing the extra
label 'should just work'.

-- 
Angus



Finding Labels in Text

2004-08-23 Thread Rich Shepard
  I've somehow managed to enter a label twice. While I suppose it doesn't
matter technically, it is not elegant and I'd like to clean it up. To do so,
I need to find all references to that label and make sure that each one
points to only one instance of it.

  I've tried searching for the the label string and for the chapter heading
it references. Find doesn't find any matching hits. I'm sure I've not
specified the search string correctly.

  Please pass me a pointer on how to find all references to a label.

Thanks,

Rich

-- 
Dr. Richard B. Shepard, President
Applied Ecosystem Services, Inc. (TM)
http://www.appl-ecosys.com


Re: Finding Labels in Text

2004-08-23 Thread Angus Leeming
Rich Shepard wrote:

   I've somehow managed to enter a label twice. While I suppose it doesn't
 matter technically, it is not elegant and I'd like to clean it up. To do
 so, I need to find all references to that label and make sure that each
 one points to only one instance of it.
 
   I've tried searching for the the label string and for the chapter
   heading
 it references. Find doesn't find any matching hits. I'm sure I've not
 specified the search string correctly.
 
   Please pass me a pointer on how to find all references to a label.

grep -n my_label *.lyx

?

Actually, since a label reference is just a string, removing the extra
label 'should just work'.

-- 
Angus



Finding Labels in Text

2004-08-23 Thread Rich Shepard
  I've somehow managed to enter a label twice. While I suppose it doesn't
matter technically, it is not elegant and I'd like to clean it up. To do so,
I need to find all references to that label and make sure that each one
points to only one instance of it.

  I've tried searching for the the label string and for the chapter heading
it references. "Find" doesn't find any matching hits. I'm sure I've not
specified the search string correctly.

  Please pass me a pointer on how to find all references to a label.

Thanks,

Rich

-- 
Dr. Richard B. Shepard, President
Applied Ecosystem Services, Inc. (TM)



Re: Finding Labels in Text

2004-08-23 Thread Angus Leeming
Rich Shepard wrote:

>   I've somehow managed to enter a label twice. While I suppose it doesn't
> matter technically, it is not elegant and I'd like to clean it up. To do
> so, I need to find all references to that label and make sure that each
> one points to only one instance of it.
> 
>   I've tried searching for the the label string and for the chapter
>   heading
> it references. "Find" doesn't find any matching hits. I'm sure I've not
> specified the search string correctly.
> 
>   Please pass me a pointer on how to find all references to a label.

grep -n my_label *.lyx

?

Actually, since a label reference is just a string, removing the extra
label 'should just work'.

-- 
Angus