patchSynctex-package: Allows for communication between .Rnw editor and .pdf viewer.

Description Details Integration in editors and IDEs Note Author(s) References

Description

Utility patching the .synctec(.gz) file resulting from then LaTeXing of a .tex file with the concordance information from the .concordance.tex file resulting from knitting (possibly Sweaving) of the .Rnw source, allowing(for|back)ward searching from the editor to the viewer and back.

Details

Synchronising TeX source and DVI/PDF output considerably eases the editing (and, sometimes, debugging) of such documents, by allowing interaction between source and end-result. Modern DVI/PDF viewers and editors support this synchronization, either directly, by using information embedded in the .dvi or .pdf file, or by using an auxilliary file generated by a LaTeX run with option \synctex=1, teh .synctex(.gz) file.

However, when one uses a tool such as Sweave or knitr to generate a dynamic document (compounding analysis, computations and report), the resulting .tex file is no longer the original source, and the references to the .tex file are of little help in the revision of such a document.

Duncan Murdoch's patchDVI package aims at solving this problem by using a concordance file that can be generated by passing a concordance=TRUE option so Sweave or knit*. This -concordance.tex file contains an RLE encoding of the correspondence between the .Rnw source and the .tex intermediary file.

patchDVI uses this concordance information to patch the DVI pointers to source with the relevant pointers to the .Rnw file.

This package also has a patchSynctex function, attempting t find the relevant information in the .pdf file. However, some (most ?) PDFs happens to be impenetrable to patchDVI's patchSynctex function.

The present package aims at patching the .synctex(.gz) file with pointers to the original .Rnw source(s), using exclusively the .synctex(.gz) file as a source of information. Therefore, the tools (editors and viewers) must support Synctex in such a way that, when a .synctex(.gz) file is present, this information is preffered to the information present in the DVI or PDF document.

This turns out, according to some serious googling and limited testing, to be the case with :

Furthermore, the .synctex(.gz) file file remains necessary for any synchronization, whereas a patched .dvi file can in principle be used without the .synctex(.gz) file.

This package is mostly aimed at programs (integrated development environments (IDEs), such as RStudio, or programmable editors, such as emacs and gedit) able to get R to execute code: it gives them an easy-to-use interface to a simple function does the ncessary patches for a given document (characterized by its name sans extension).

Its unique function can still be used from an interactive R session for debugging purposes.

Integration in editors and IDEs

This section will be enriched by your contributions.

ESS under emacs

The logical point of insertion of .synctex(.gz) patching is after each PDF compilation. It may be a bit wasteful (when two or more compilations are necessary, in order, for example, to fix references), but there is no standard way to determine if a LaTeX run is final.

This can be achieved by placing an advice on the function used to compile to PDF|DVI. The example shows how to advice PDF compilation.

Up to emacs 24.3

The following elisp snippet can be placed in your emacs initialization file (e. g. ~/.emacs in Unix(-like) systems):

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
(defadvice ess-swv-PDF (after ess-run-patchKnitr (&optional
						  PDFLATEX-CMD)
			      activate)
  "Patches the .synctex.gz file after PDF compilation"
  (interactive)
  (let* ((fn (buffer-file-name))
	 (fe (file-name-extension fn)))
    (if (string= fe "Rnw")
	(progn
	  (setq RPScmd (concat "patchSynctex('"
			       (file-name-sans-extension fn)
			       "')"))
	  (ess-create-temp-buffer "tampon-ess-execute")
	  (ess-execute "require(patchSynctex)" 'buffer "tampon-ess-execute")
	  (ess-execute RPScmd 'buffer "tampon-ess-execute")
	  (kill-buffer "tampon-ess-execute")))))
(ad-activate 'ess-swv-PDF)
      
From emacs 24.4 onwards

The previous elisp snippet has to be adapted to the newer advice system of elisp:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
(defun ess-swv-patch-after-PDF (&optional PDFLATEX-CMD)
  "Patch the synctex file after PDF compilation"
  (let* ((fn (buffer-file-name))
	 (fe (file-name-extension fn)))
    (if (string= fe "Rnw")
	(progn
	  (setq RPScmd (concat "patchSynctex('"
			       (file-name-sans-extension fn)
			       "')"))
	  (ess-create-temp-buffer "tampon-ess-execute")
	  (ess-execute "require(patchSynctex)" 'buffer "tampon-ess-execute")
	  (ess-execute RPScmd 'buffer "tampon-ess-execute")
	  (kill-buffer "tampon-ess-execute")))))
(advice-add 'ess-swv-PDF :after #'ess-swv-patch-after-PDF)
      

AUCTeX under emacs

This is a work in progress : AUCTeX is more sophisticated than ESS about PDF production. There is no single function to advice (and knitting is not yet well integrated, by the way...). In the meantime, ESS functions remain available. Stay tuned...

Eclipse + StatET

Create an external build configuration (Sweave document processing) and place :

1
2
3
4
require(knitr); 
opts_knit$set(concordance = TRUE); 
texfile <- knit("${resource_loc:${source_file_path}}", encoding="UTF-8")
    

in the sweave tab, and :

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
syntex <- if (opts_knit$get('concordance'))"-synctex=1" else "-synctex=0";
command=paste("latexmk -pdf", syntex, "-interaction=nonstopmode", shQuote(texfile));
print(paste("Command ",command,"...\n"));
print(shell(command),intern = TRUE);
if (opts_knit$get('concordance')){
    require(patchSynctex);
    patchSynctex(texfile); 
}
print(paste0(substr(texfile,1, nchar(texfile)-3), "pdf"))
      

in the LaTeX tab.

Note

The current (1.8) version of knitr does not yet implement concordance for multifile projects (i. e. children chunks).

Author(s)

Jan Gleixner, Emmanuel Charpentier

Maintainer: Emmanuel Charpentier emm.charpentier@free.fr

References

Duncan Murdoch's excellent patchDVI has a great vignette explaining the basics of the problem.


EmmanuelCharpentier/patchSynctex documentation built on May 6, 2019, 3:47 p.m.