This app adds invisible noise text to latex documents, thought it may be useful for other types of documents as well. This is meant to be used as a defensive tool to prevent your work from being used in AI training. To avoid unintended harm, you may want to add a disclaimer to your work that it is not for use in training machine learning models and training on the text may result in model degradation. This noise is generated by a tiny LLM to make it harder to detect.
To make the text invisible, the app uses a delimiter to start and end the hallucination. The default is \spikybox{hallucination here}. For this to work in your latex document, you need to add the following to your preamble. If this leaves noticeable whitespace, you can change the `\hspace{-2px}` to `\hspace{0pt}` or whatever you need.
\usepackage{graphicx}  
\newcommand{\spikybox}[1]{\resizebox{0pt}{0pt}{#1}\hspace{-2px}}