|
|
| Next: xldialogprintersetup |
| Author |
Message |
Antonio External

Since: May 26, 2006 Posts: 41
|
Posted: Thu Mar 26, 2009 6:30 am Post subject: Numeration of references Archived from groups: microsoft>public>word>numbering (more info?) |
|
|
Hello!
I have a document with a Bibliografy.
The entries are like this:
[1] entry 1
[2] entry 2
[x] entry x
Sometimes, in some part of my text, I have to reference to some of them.
Some authors [1],[2],[3] believe that....
but instead of [1],[2],[3] I would like to put [1,2,3] when I'm inserting
the references.
How could I do it?
could you help me, please?
Best regards,
Antonio. |
|
| Back to top |
|
 |
Suzanne S. Barnhill External

Since: Sep 26, 2003 Posts: 24065
|
Posted: Thu Mar 26, 2009 10:23 am Post subject: Re: Numeration of references [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
See http://sbarnhill.mvps.org/WordFAQs/CombineXrefs.htm for general
principles, but note that, if the brackets are part of the number format, it
may not be possible to put the range within a single set of brackets.
--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org
"Antonio" <Antonio.TakeThisOut@discussions.microsoft.com> wrote in message
news:BBA8E82A-04BB-4E8D-AADB-9096995CF81E@microsoft.com...
> Hello!
>
> I have a document with a Bibliografy.
> The entries are like this:
> [1] entry 1
> [2] entry 2
>
>
> [x] entry x
>
> Sometimes, in some part of my text, I have to reference to some of them.
> Some authors [1],[2],[3] believe that....
>
> but instead of [1],[2],[3] I would like to put [1,2,3] when I'm inserting
> the references.
>
> How could I do it?
> could you help me, please?
>
> Best regards,
> Antonio.
>
>
> |
|
| Back to top |
|
 |
Antonio External

Since: May 26, 2006 Posts: 41
|
Posted: Fri Mar 27, 2009 6:57 am Post subject: Re: Numeration of references [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
Hi Suzanne,
Thanks for your answer.
"Suzanne S. Barnhill" wrote:
> See http://sbarnhill.mvps.org/WordFAQs/CombineXrefs.htm for general
> principles, but note that, if the brackets are part of the number format, it
> may not be possible to put the range within a single set of brackets.
Yes, the brakets are part of the number format
How could I solve it to get the references as I would like?
thanks for you help,
Regards,
Antonio.
>
> --
> Suzanne S. Barnhill
> Microsoft MVP (Word)
> Words into Type
> Fairhope, Alabama USA
> http://word.mvps.org
>
> "Antonio" <Antonio.DeleteThis@discussions.microsoft.com> wrote in message
> news:BBA8E82A-04BB-4E8D-AADB-9096995CF81E@microsoft.com...
> > Hello!
> >
> > I have a document with a Bibliografy.
> > The entries are like this:
> > [1] entry 1
> > [2] entry 2
> >
> >
> > [x] entry x
> >
> > Sometimes, in some part of my text, I have to reference to some of them.
> > Some authors [1],[2],[3] believe that....
> >
> > but instead of [1],[2],[3] I would like to put [1,2,3] when I'm inserting
> > the references.
> >
> > How could I do it?
> > could you help me, please?
> >
> > Best regards,
> > Antonio.
> >
> >
> >
>
> |
|
| Back to top |
|
 |
Suzanne S. Barnhill External

Since: Sep 26, 2003 Posts: 24065
|
Posted: Fri Mar 27, 2009 9:26 am Post subject: Re: Numeration of references [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
That may well require a macro, which I am unable to supply. Perhaps someone
else can help?
--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org
"Antonio" <Antonio.DeleteThis@discussions.microsoft.com> wrote in message
news:5E1E41E6-43C5-4C3D-B931-C1EE768C71CA@microsoft.com...
> Hi Suzanne,
>
> Thanks for your answer.
>
> "Suzanne S. Barnhill" wrote:
>
>> See http://sbarnhill.mvps.org/WordFAQs/CombineXrefs.htm for general
>> principles, but note that, if the brackets are part of the number format,
>> it
>> may not be possible to put the range within a single set of brackets.
>
> Yes, the brakets are part of the number format
> How could I solve it to get the references as I would like?
>
> thanks for you help,
> Regards,
> Antonio.
>
>>
>> --
>> Suzanne S. Barnhill
>> Microsoft MVP (Word)
>> Words into Type
>> Fairhope, Alabama USA
>> http://word.mvps.org
>>
>> "Antonio" <Antonio.DeleteThis@discussions.microsoft.com> wrote in message
>> news:BBA8E82A-04BB-4E8D-AADB-9096995CF81E@microsoft.com...
>> > Hello!
>> >
>> > I have a document with a Bibliografy.
>> > The entries are like this:
>> > [1] entry 1
>> > [2] entry 2
>> >
>> >
>> > [x] entry x
>> >
>> > Sometimes, in some part of my text, I have to reference to some of
>> > them.
>> > Some authors [1],[2],[3] believe that....
>> >
>> > but instead of [1],[2],[3] I would like to put [1,2,3] when I'm
>> > inserting
>> > the references.
>> >
>> > How could I do it?
>> > could you help me, please?
>> >
>> > Best regards,
>> > Antonio.
>> >
>> >
>> >
>>
>>
> |
|
| Back to top |
|
 |
Doug Robbins - Word MVP o External

Since: Feb 24, 2009 Posts: 51
|
Posted: Fri Mar 27, 2009 7:10 pm Post subject: Re: Numeration of references [Login to view extended thread Info.] Archived from groups: per prev. post (more info?) |
|
|
If you do not need the references to be hyperlinked to their source, which
they could not be in that format anyway, you run the following macro to
unlink them and replace ],[ with a ,
Dim af As Field
For Each af In ActiveDocument.Fields
If af.Type = wdFieldRef Then
af.Unlink
End If
Next af
With Selection
.HomeKey wdStory
.Find.Execute FindText:="],[", MatchWildcards:=False, _
Format:=ClearFormatting, ReplaceWith:=",", Replace:=wdReplaceAll
End With
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"Antonio" <Antonio.TakeThisOut@discussions.microsoft.com> wrote in message
news:5E1E41E6-43C5-4C3D-B931-C1EE768C71CA@microsoft.com...
> Hi Suzanne,
>
> Thanks for your answer.
>
> "Suzanne S. Barnhill" wrote:
>
>> See http://sbarnhill.mvps.org/WordFAQs/CombineXrefs.htm for general
>> principles, but note that, if the brackets are part of the number format,
>> it
>> may not be possible to put the range within a single set of brackets.
>
> Yes, the brakets are part of the number format
> How could I solve it to get the references as I would like?
>
> thanks for you help,
> Regards,
> Antonio.
>
>>
>> --
>> Suzanne S. Barnhill
>> Microsoft MVP (Word)
>> Words into Type
>> Fairhope, Alabama USA
>> http://word.mvps.org
>>
>> "Antonio" <Antonio.TakeThisOut@discussions.microsoft.com> wrote in message
>> news:BBA8E82A-04BB-4E8D-AADB-9096995CF81E@microsoft.com...
>> > Hello!
>> >
>> > I have a document with a Bibliografy.
>> > The entries are like this:
>> > [1] entry 1
>> > [2] entry 2
>> >
>> >
>> > [x] entry x
>> >
>> > Sometimes, in some part of my text, I have to reference to some of
>> > them.
>> > Some authors [1],[2],[3] believe that....
>> >
>> > but instead of [1],[2],[3] I would like to put [1,2,3] when I'm
>> > inserting
>> > the references.
>> >
>> > How could I do it?
>> > could you help me, please?
>> >
>> > Best regards,
>> > Antonio.
>> >
>> >
>> >
>>
>> |
|
| Back to top |
|
 |
|
|
|
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
| |
|
|