views:

121

answers:

1

Hello: Is there a way Emacs can automatically refresh the buffer showing the dvi right after my LaTeX compilation? Thank you.

+6  A: 

Use interactive function:

auto-revert-mode

to enable reloading when the file changes.

Jürgen Hötzel
Or put (global-auto-revert-mode t) in .emacs in case you want this behavior for all files(I most certainly do)
Bozhidar Batsov