Set italic style for Latin names
Hi all
I have a document with a long list of plant names (genus + species = Panicum schinzii). Some have the same genus but a different species (Panicum deustum). They are not always mentioned in full in the text. In some instances it is just the genus (Panicum), or just the species (schinzii). Others have an abbreviation for the genus (P. schinzii).
I am using the following GREP expression and setting the character style to italics.
(?i)\b(Panicum|deustum|schinzii|P. schinzii)\b
For the most part this is working but I have a few problems that I am hoping to solve easily:
- One genus - sorghum - must not be italicised in the text in certain instances
- One of the species - maximum - is used as a normal word in certain places and should also not be italics
I can selectively turn off the GREP style in some instances but there are quite a few places where sorghum or maximum appear in the same paragraph as words that must not be turned off.
Can I turn off the GREP style selectively in these instances? Is there another way to handle this issue?
Thanks in advance