To replace "iz" with "is" in LATEX documents:
- find
(?<!\\(?:cite|href|url)\{[^}]*)(\b(?!size\b|sizes\b|sized\b|downsize\b|footnotesize\b|BSize\b|resized\b|quantize\b|quantization\b|horizontally\b|itemize\b|scriptsize\b|resize\b|horizontal\b|Webviz\b|OdoViz\b)\w*)iz(\w*\b)
- replace
$1is$2
This will still miss words like:
- labeled
- analyze
which will need to be manually checked.
Note that some tech words like:
- quantization are
in the exclude list.