An example is
\documentclass{article} \usepackage{geometry} % see geometry.pdf on how to lay out the page. There's lots. \geometry{a4paper} % or letter or a5paper or ... etc \usepackage{amsmath} \usepackage{amssymb} \usepackage{setspace} \usepackage{soul} \usepackage{color} \title{Example} \author{Letty} %%% BEGIN DOCUMENT \begin{document} \maketitle \onehalfspacing This is text I'm happy with. \hl{This is text that I want to flag an issue with} \end{document}
What I would really like to do is to be able to temporarily suspend this highlighting, so I can print out a non-highlighted version to give to my supervisor. I don't want to go through and take out each \hl{} where I've an issue, as I would like to be able to keep a version that shows my worries for myself, whilst being able to quickly submit a version that doesn't show them.
Simply taking the soul package out of the header for the print-out version doesn't work, as that leaves the \hl command undefined.
Has anyone got a suggestion of a way of doing this? I don't mind if it uses a different highlighting method than the one I'm currently employing.