VSCode Latex Mac

Using Latex on macOS

Download MacTex (~3/4 GB with most packages included), via homebrew, support for Apple Silicon

Guide

I followed mostly VSCODE CONFIG LATEX (MAC), which is quite comprehensive and easy to follow.

The only adjustment I need is the directory for skim location /opt/homebrew/bin/ if installed via homebrew.

Also don’t delete syntex.gz file as it’s required for bi-directional jumping between VSCode and Skim.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
    // latex
    "latex-workshop.view.pdf.viewer": "external",
    "latex-workshop.view.pdf.external.viewer.command": "/opt/homebrew/bin/displayline",
    "latex-workshop.view.pdf.external.viewer.args": [
        "0",
        "%PDF%"
    ],
    "latex-workshop.view.pdf.external.synctex.command": "/opt/homebrew/bin/displayline",
    "latex-workshop.view.pdf.external.synctex.args": [
        "-r",
        "%LINE%",
        "%PDF%",
        "%TEX%"
    ],
    "latex-workshop.latex.clean.fileTypes": [
        "*.aux",
        "*.bbl",
        "*.blg",
        "*.idx",
        "*.ind",
        "*.lof",
        "*.lot",
        "*.out",
        "*.toc",
        "*.acn",
        "*.acr",
        "*.alg",
        "*.glg",
        "*.glo",
        "*.gls",
        "*.ist",
        "*.fls",
        "*.log",
        "*.fdb_latexmk",
        "*.snm",
        "*.nav"
    ],
Licensed under CC BY-NC-SA 4.0
Built with Hugo
Theme Stack designed by Jimmy