Skip to content

Instantly share code, notes, and snippets.

@kitaev-chen
Created September 29, 2020 22:25
Show Gist options
  • Save kitaev-chen/e05d047374108e6c7e57cf2bd2b3d0bb to your computer and use it in GitHub Desktop.
Save kitaev-chen/e05d047374108e6c7e57cf2bd2b3d0bb to your computer and use it in GitHub Desktop.

VSCode +LaTeX-Workshop +Sumatra PDF

// settings.json
{
  "latex-workshop.view.pdf.viewer": "external",
  "latex-workshop.view.pdf.external.command": {
      "command": "C:\\path\\to\\SumatraPDF.exe",
      "args": [
          "-reuse-instance",
          "-inverse-search",
          "\"C:\\Users\\username\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe\" \"C:\\Users\\username\\AppData\\Local\\Programs\\Microsoft VS Code\\resources\\app\\out\\cli.js\" -g \"%f:%l\"",
          "%PDF%"
      ]
  },
  "latex-workshop.view.pdf.external.synctex": {
    "command": "C:\\path\\to\\SumatraPDF.exe",
    "args": [
      "-reuse-instance",
      "-forward-search",
      "%TEX%",
      "%LINE%",
      "%PDF%"
    ]
  }
}

References:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment