I have a document with a graphics and I want to replaced this graphics with another as part of a revision. To make this clear I want to show the old version of a figure next (or below) to the new version, but struck out.
I tried using the changes package (\deleted around the \includegraphics command) which gives an error and also with the sout package, which gives a weird result.
How can strike out a graphics reliable in LaTeX?
\documentclass{article}
\usepackage{graphics}
\begin{document}
\begin{figure}
\includegraphics{old} \\ %strike this figure out, with a diagonal, horizontal or cross lines
\includegraphics{new}
\caption{description}
\end{figure}
\end{document}

changescould fall back to this when other types of strike out don't work (see comment in https://tex.stackexchange.com/a/135334/1871) – alfC Dec 08 '18 at 03:41
– NCH32 Feb 04 '19 at 10:55\documentclass{article} \usepackage{graphicx,tikz} \begin{document} \begin{tikzpicture} \node(mypic){\includegraphics[width=2in]{image}}; \node[above left of = mypic](corner1){}; \node[above right of = mypic](corner2){}; \node[below left of = mypic](corner3){}; \node[below right of = mypic](corner4){}; \draw[red, thick](corner1)--(corner4); \draw[red, thick](corner2)--(corner3); \end{tikzpicture} \end{document}