Forum Discussion
ed1948
Apr 14, 2023Copper Contributor
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 he...
Apr 14, 2023
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
- ed1948Apr 14, 2023Copper Contributor
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)
- ed1948Apr 14, 2023Copper ContributorIt 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?- Apr 15, 2023
ed1948 What you might have to do is, when you have completed editing the document, select the Index and use Cmd+6 to unlink it from it sources and convert it to ordinary Text. Then if you apply Italic formatting where required, it will not longer revert when the fields in the document are updated.