Skip to content

Instantly share code, notes, and snippets.

@edemaine
Created June 23, 2021 20:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edemaine/fe572b583bf8b321d49ac8f76312de2d to your computer and use it in GitHub Desktop.
Save edemaine/fe572b583bf8b321d49ac8f76312de2d to your computer and use it in GitHub Desktop.
VSCode configuration to use Cygwin LaTeX in LaTeX Workshop
  1. Make sure that ...\cygwin\bin is in your PATH.
  2. Modify your "latex-workshop.latex.tools" configuration, or specifically the latexmk tool, as follows:
{
    "latex-workshop.latex.tools": [
      {
        "name": "latexmk",
        "command": "bash",
        "args": [
          "-c",
          "latexmk -synctex=1 -interaction=nonstopmode -file-line-error -pdf -outdir=\"`cygpath \"%OUTDIR%\"`\" \"`cygpath -u \"%DOC%\"`\" | sed 's#/cygdrive/\\([a-zA-Z]\\)/#\\1:/#g' && (gunzip -kf %DOCFILE%.synctex.gz && sed 's#/cygdrive/\\([a-zA-Z]\\)/#\\1:/#g' <%DOCFILE%.synctex | gzip -c - >%DOCFILE%.synctex.gz ; rm -f %DOCFILE%.synctex)"
        ],
        "env": {}
      }
    ]
}

Description of what's going on:

  • -outdir=\"cygpath "%OUTDIR%"\" specifies the output directory while mapping the path into Cygwin naming
  • \"cygpath -u "%DOC%"\" specifies the input file while mapping the path into Cygwin naming
  • | sed 's#/cygdrive/\\([a-zA-Z]\\)/#\\1:/#g' converts the output to use Windows naming, so that LaTeX Workshop can parse it. For example, this enables clicking on error messages to go to the correct line.
  • (gunzip -kf %DOCFILE%.synctex.gz && sed 's#/cygdrive/\\([a-zA-Z]\\)/#\\1:/#g' <%DOCFILE%.synctex | gzip -c - >%DOCFILE%.synctex.gz ; rm -f %DOCFILE%.synctex) converts the synctex file to use Windows naming (and ignores error messages), so that you can jump back and forth between corresponding parts of the PDF and TeX files.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment