Forum Discussion

ed1948's avatar
ed1948
Copper Contributor
Apr 14, 2023

Indexing in Word for iMac

I have a 188 page manuscript filled with scientific names, always italicized. Index does NOT display italics. I've tried changing each entry, but when saved, they revert.  It was suggested by Chat help that Word doesn't recognize italics, which is not possible. 

I'm assuming I did something wrong, but after 4 days of phone calls and chats, nothing works.

Help.

 

And I tried to delete the index by using ^ d XE, but Find and Replace said ^ was not a recognized character, which means I can't even start over! 

More help! 

 

5 Replies

  • ed1948 Select each level of the Index in Turn when after you have clicked on CTRL+SHIFT+S to display the Apply Styles dialog and you will see that the Style that is in effect is of the form Index #

    If you click on the Modify button, it will open the Modify Style dialog for that Style and in that dialog, you can set the required formatting for that Style.

     

    Note, while you cannot search for a particular type of field by using something like ^dXE, you can use just ^d to search for all fields in the document.

     

    If you do want to delete all of the XE fields in the document, it would be best to use a macro containing the code

    Sub DeleteIndexEntries()
    Dim afield As Field
    With ActiveDocument
        For Each afield In .Fields
            If afield.Type = wdFieldIndexEntry Then
                afield.Delete
            End If
        Next afield
    End With
    End Sub
    • ed1948's avatar
      ed1948
      Copper Contributor

      Doug_Robbins_Word_MVP 

       

      I see the Styles can be modified, but can't understand how it helps. Common names are never italicized while scientific names must be. But some common and scientific names are primary entries, while some common and scientific names are subentries.  In other words, common and scientific names are, in some cases, both primary entry and subentry.  How do styles allow both entries, like these....

      Algae (main topic, common name)

      Amoeba ( main topic, scientific name)

      • ed1948's avatar
        ed1948
        Copper Contributor
        It seems you're saying each entry must be a common name, each scientific name a subentry.
        Okay. How do I then reverse that to build a new index of only scientific names?

        maybe that's the easiest way...TWO indexes. Is that possible without re-XE-ing the entire manuscript?

Resources