Can someone reproduce the following in LateX:
I have looked extensively at various packages and techniques but none seem quite able to reproduce the desired behavior. I essentially wish to draw an arrow going from A to B with impunity: regardless of what is on the page (LateX tables, images, equations).
This is the MWE to generate the table and contents shown:
\documentclass{article}
\usepackage{array}
\usepackage{graphicx}
\usepackage{cellspace}
\begin{document}
\begingroup
\setlength\cellspacetoplimit{3pt}
\setlength\cellspacebottomlimit{3pt}
\begin{table}[h!]
\begin{tabular}{| S{p{0.5\linewidth}} | S{p{0.7\linewidth}} |}
\hline
\begin{minipage}[t]{0.5\textwidth}
\vspace{0pt}
\includegraphics[width=0.7\linewidth]{gadget1a} \newline
Set the leftmost control to equal the point 3 value \newline
\end{minipage}
&
\begin{minipage}[t]{0.9\textwidth}
\vspace{0pt}
\includegraphics[width=0.75\linewidth]{gadget1b}
\end{minipage} \
\hline
\end{tabular}
\end{table}
\endgroup
\end{document}



nodesseparated by2mm-- the arrow origin is selected2ptabove thesouthofnodeAand the exit angle-60 degrees-- the origin is also put incircle nodewhich can be changed toellipseetc -- thearrow stylecan also be changed to taste – js bibra Mar 14 '21 at 15:28