In this technical note, we’d like to setup GNU Emacs and AUCTeX so that it can do both forward searches (using Emacs to control the PDF Viewer) and inverse searches (using the PDF Viewer to control Emacs). This work is based on William’s instructions, but with some additional modifications from Miguel Frasson that remove the dependency on sumatra-forward.el, as long you primarily use pdflatex as your LaTeX target. The technique uses the command line rather than DDE to interface with Sumatra PDF.
- Unlike on the Mac, TeX tool support on Windows is quite a challenge. With the exception of Sumatra PDF, there are basically no PDF viewers that support source synchronization. Be sure to use the full installer, and not the portable apps version of Sumatra PDF.
- To get PDF synchronization to work, you’ll need to set a few AUCTeX variables in Emacs (
M-x customize-variable). The first isTeX-view-program-list, which is perhaps the most complicated. TheNameshould read asSumatra PDF, and theChoiceshould be set toCommand parts. Then, you will need to insert (INS) twoCommand parts:- The first
Command parthas a value of"C:/Program Files (x86)/SumatraPDF/SumatraPDF.exe" -reuse-instance, adjusting accordingly for your actual path. - The second part is a
Predicate and command partwith aPredicateofmode-io-correlateand aCommand partof␣-forward-search %b %n. The character ␣ is meant to represent a leading whitespace character. - The third part is a
Command partwith␣%o. Once again, don’t forget the leading whitespace character.
- The first
- Since the last step isn’t entirely obvious, the following screen capture should help you with this variable (click to enlarge). And if you’re curious about what
%o,%nand so on do, then check the variableTeX-expand-list.

- Select
Save for future sessionsand then restart Emacs; otherwise the next step won’t work without knowing some Emacs tricks. For the remaining variables in this recipe, remember toSave for future sessionsas well. - The next variable is
TeX-view-program-selection, where theViewerforoutput-pdfshould be set toSumatra PDF. - Similarly, find
TeX-source-correlate-modeand set this toOn. Finally, setTeX-source-correlate-methodtosynctex. - You’ll probably want to setup Emacs with
(server-start)ahead of time, so add this to yourinit.el. On Windows in particular,(server-start)is problematic and can fail by default with something like:error: The directory ‘~/.emacs.d/server' is unsafe. This is due to a permissions problem; the file~/.emacs.d/serverneeds to be owned by you. The easiest way to do this is through the command-line:takeown /f server, though you can also use the GUI to take ownership of the file (Properties > Security > Advanced > Owner). If you like, you can optionally also set the variableTeX-source-correlate-start-servertoAlways. - The only thing left to do now is inverse search. Under Sumatra PDF, go to
Settings > Options. Set the inverse search command-line toc:\emacs\bin\emacsclientw.exe --no-wait +%l "%f"or equivalent.

Initially, Sumatra PDF may not have the inverse search field under Options. In this case, you can initially set it through a Command Prompt with"C:\Program Files (x86)\SumatraPDF\SumatraPDF.exe" -inverse-search "C:\emacs\bin\emacsclientw.exe --no-wait +%l \"%f\"". - It’s recommended that you restart Emacs at this point, unless you’re an Emacs guru.
- Whew! To perform forward search (from within Emacs) hit AUCTeX’s built-in
C-c C-v(View). To perform inverse search (from within Sumatra PDF), double-click the area of text.
If needed, you can get a quick reference of the changes to your init.el custom-set-variables for a sanity check.
Thanks for the help! One extra step that I needed to do was set LaTeX compilation to PDF (it’s DVI) by default. This can be done by setting the variable (
M-x customize-variable)TeX-PDF-modeto on (non-nil).