Quite often while typing in emacs I will LaTeX a file just to see whether I am including the right figures in the right order. Is there an emacs package that will either:
- show the figure within the latex source file or
- show the figure when the mouse hovers over an
\includegraphicscommand?
The idea is to truly ignore the typesetting while one is typing and to delay the latex iterations as long as possible.
\documentclass{article}
\usepackage{graphicx}
\begin{document}
Some text...
\includegraphics{figure.pdf}
Some more text...
\end{document}
In the example above, I'd like emacs to show me the content of 'figure.pdf' whenever I hover over \includegraphics.
