
This can be done, albeit with significant caveats.
Caveat 1: This works for acrobat reader, but not for most other pdf readers.
Caveat 2: It's a hassle to install; see below.
Caveat 3: It won't work with all TeX engines: if you're using pdftex then you're ok.
Caveat 4; It doesn't pick up all reference commands, such as \cref from the cleveref package.
That said, here goes (assuming texlive; if you're on windows you likely have miktex)
- This uses the `fancytooltips` package which is in texlive, but fancytooltips requires the `acrotex` bundle, which for curious reasons appears not to be included in texlive. So you need to install acrotex, which you can download from ctan.
- Although fancytooltips is installed, the `fancy-preview` script is still gzipped. Find the file `fancy-preview.gz` on your system and ungzip it. Then make it executable.
- Try to run `fancy-preview` on the example code below. If it complains that `Config::IniFiles module` is missing or some such thing, then you have to install that. I achieved this by running cpan install Config::IniFiles .
- If it runs, then all should be fine. Just open up the pdf file in acrobat reader and enjoy. Note that if you run fancy-preview then you should *not* load the fancytooltips package in your LaTeX code; the manual doesn't tell you this, but it won't work if you do.
\documentclass{article}
\usepackage{amsmath}
\usepackage{lipsum}
\usepackage{hyperref}
\begin{document}
\begin{equation}
y=e^{x'\beta+u} \label{eq}
\end{equation}
\lipsum[1-2]
blabla \eqref{eq}
\end{document}
hyperrefthose numbers become hyperrefs, which are clickable (there might be other packages with similar results). I don't know how an app should reliably find the correct equation. You might try searching for that number. The question all in all seems displaced in this forum, as it's not really about TeX (except for the one part I already answered in this comment), therefore I'm voting to close it as it is now as too broad. – Skillmon Jul 25 '17 at 15:29