Bibliography to static text in Word 2013 on WIn8.1

Hi

I have been using Reference and Bibliography in writing a book chapter. Now I have to submit static text to the publisher. So I click in the bibliography area, get the bibliography tab appear, click on down arrow and see a potentially greyed out* "Convert Bibliography to Static Text command", which simply does not work.

Cannot find any reference to these difficulties for Word 2013, some ideas for Word 2007, 2010 which revolve around selecting text prior to clicking the convert command.

Also found suggestions for "Unlinking fields" with short cuts of Ctrl+Shift+F9, or Ctrl+6. They don't work either.

So what am I doing wrong or Word 2013 not doing right?

BTW the document stated life most probably as far back as Word2007, but has been saved in Word 2013 accepting the "update to latest version" warning box.

Cheers

Martin

*struggling with the latest colour scheme, need more contrast at my age!

If you press ALT+F9, what do you see in place of the bibliography?

When you used CTRL+SHIFT+F9, did you have the contents of the bibliography selected?

If in the first case you see text enclosed in field delimiters { }, then using CTRL+SHIFT+F9 should convert those fields to ordinary text.

Hope this helps,
Doug Robbins - MVP Office Apps & Services (Word)
dougrobbinsmvp@gmail.com
It's time to replace ‘Diversity, Equity & Inclusion’ with ‘Excellence, Opportunity & Civility’ - V Ramaswamy

4 people found this reply helpful

·

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

Doug

I select all text (Ctrl+A),

Then alt+F9, then the bibliography collapses just to the title and the word Bibliography in curly brackets. But the citations within the body of the text change from e.g. (Goh, 2014) to a field: {CITATION Goh14 \12057}

Pressing ctrl+shift+F9 then returns the list of references in bibliography, and in the body text {CITATION Goh14 \12057} becomes {CITATION Goh14 \12057 |(Goh, 2014)}

Am I misinterpreting the idea of converting to static text, I assumed all field codes would completely disappear, leaving just the current text contents of those field in their place?

Just noticed that a subsequent use of Alt+F9 just totally hid the whole field codes and text associated with them? Umm....

So not a solution yet.

Cheers,

Martin

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

Alt+F9 toggles between showing field codes and field results. To convert all fields in the selection to static text, press Ctrl+Shift+F9 (as Doug already suggested).

Note that the Bibliography field is inside a content control, which won't be deleted when you convert fields. If you are sure you haven't used anything else that isn't supported in older versions of Word, saving to Word 97–2003 (*.doc) format, will get rid of the content controls.
Stefan Blom
MS 365 Word MVP since 2005
Volunteer Moderator
MS 365, Win 11 Pro
~~~
Note that I do not work for Microsoft
https://mvp.microsoft.com/
~~~
Please specify Word version & OS in your question

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

Word's use of building blocks makes this harder than it should be. Try the following macro:

Sub UnlinkCitns_Biblio()
Application.ScreenUpdating = False
Application.DisplayAlerts = wdAlertsNone
Dim i As Long, StrCode As String, Stl As String
Dim Stry As Range, Rng As Range, Fld As Field
With ActiveDocument
  For Each Stry In .StoryRanges
    Select Case Stry.StoryType
      Case wdFootnotesStory, wdEndnotesStory, wdMainTextStory
        'loop through all fields, starting from the end of the story
        For i = Stry.Fields.Count To 1 Step -1
          With Stry.Fields(i)
            If .Type = wdFieldCitation Then
              .Select
              WordBasic.BibliographyCitationToText
            ElseIf .Type = wdFieldBibliography Then
              StrCode = Trim(.Code.Text)
              Set Rng = .Result.Duplicate
              With Rng
                .MoveStart wdParagraph, -2
                Stl = .Paragraphs(1).Style
                .Start = .Start - 1
                .End = .End + 2
                .Text = vbNullString
                .Collapse wdCollapseStart
                .Text = vbCr & "Bibliography" & vbCr
                .Paragraphs(2).Style = Stl
                .Collapse wdCollapseEnd
              End With
              Set Fld = Rng.Fields.Add(Range:=Rng, Type:=wdFieldEmpty, _
                Text:=StrCode, Preserveformatting:=False)
              Fld.Unlink
            End If
          End With
        Next
      Case Else
    End Select
  Next
End With
Set Rng = Nothing: Set Fld = Nothing
Application.DisplayAlerts = wdAlertsAll
Application.ScreenUpdating = True
End Sub

Cheers
Paul Edstein
(Fmr MS MVP - Word)

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

Hi Stefan, Paul

Thanks for the help guys. Stefan, Ctrl+Shift+F9 does not appear to work for me. But as a text document saving as Word 97-2003 got rid of fields, saving back to 2013 made it a docx, with some changes in amount of text on each page, but that is not an issue. So that sorted out my immediate problem, but still doesn't explain while the tab command didn't work or the shortcut either? But I guess I don't really need to know that.

Paul, looks very elegant, my knowledge of macro's and how to use them is quite limited so that was looking scary, so I don't think I'll try it unless I have a spare hour to pass.

Thanks again

Cheers

Martin

1 person found this reply helpful

·

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

For PC macro installation & usage instructions, see: http://www.gmayor.com/installing_macro.htm.

The macro will probably take no more than a few seconds to do the processing.

What the macro does is the equivalent of manually converting each citation to text and then, for the bibliography, toggling the field code display, copying the code text, deleting the bibliography, inserting a new field with the code text (i.e. no encompassing building block), then converting the field to its results. As you can see, the bibliography conversion requires the most work, and that's what the code reflects.

Cheers
Paul Edstein
(Fmr MS MVP - Word)

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

With regards to keyboard shortcuts, note that Ctrl+Shift+F9 should be assigned to the UnlinkFields command. You can verify that in the Customize Keyboard dialog box (click the Customize button at File tab | Options | Customize Ribbon).
Stefan Blom
MS 365 Word MVP since 2005
Volunteer Moderator
MS 365, Win 11 Pro
~~~
Note that I do not work for Microsoft
https://mvp.microsoft.com/
~~~
Please specify Word version & OS in your question

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

Stefan, that's not the issue. The issue is that Ctrl+Shift+F9 deletes a citation!
Cheers
Paul Edstein
(Fmr MS MVP - Word)

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

How strange! I hadn't noticed this before, but I see it in my version of Word 2013 at work: the shortcut deletes an entire citation. :-(
Stefan Blom
MS 365 Word MVP since 2005
Volunteer Moderator
MS 365, Win 11 Pro
~~~
Note that I do not work for Microsoft
https://mvp.microsoft.com/
~~~
Please specify Word version & OS in your question

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

 
 

Question Info


Last updated May 3, 2024 Views 7,791 Applies to: