This question might be seen is a follow up/complement to this question and answer. I'm actually taking the example from there:
\documentclass{article}
\usepackage{xcolor}
\usepackage{transparent}
\begin{document}
horse
ho\phantom{r}se
ho\textcolor{white}{r}se
ho\makebox[0pt]{{\transparent{0}r}}se
\end{document}
Four times the word horse. The first one is the regular word. The 2nd appears as ho se, because the r is invisible. The third also appears as ho se, but in contrast with the previous case, the word "horse" is contained in the document (appears as a search result, the copy/paste of the text, and the output of pdftotext). The last example appears as hose visually, but the text "horse" is contained in the pdf.
I need a the opposite case: I want the r to be visible but not contained in the text of the pdf. In other words, I want to be able to see the word horse on the pdf, but when searching the document (or mouse select + copy/paste, or pdftotext output), only the word "hose" appears.
Is this possible?

pst-textpackage, which means you are stuck withlatex→dvips→ps2pdf. If you want to do it for the whole document, you can useghostscriptto outline all fonts. – David Purton Jul 23 '18 at 04:07inkscapeand include it as atikzpicture. – David Purton Jul 23 '18 at 04:31! Undefined control sequence <argument> {\transparent{0}r}– AndréC Jul 24 '18 at 05:37pdflatex@AndréC?\transparentonly works in PDF mode, not dvi – phollox Jul 24 '18 at 10:48