Skip to content

Instantly share code, notes, and snippets.

@njleonzhang
Last active May 18, 2026 12:04
Show Gist options
  • Select an option

  • Save njleonzhang/8e9b5b48df4f2df35f9ba1b538953bf6 to your computer and use it in GitHub Desktop.

Select an option

Save njleonzhang/8e9b5b48df4f2df35f9ba1b538953bf6 to your computer and use it in GitHub Desktop.
配置本地的 latex 编译环境

windows 安装配置 MikTex

mac 安装 MacTex

brew install --cask mactex

vscode 安装 latex workshop 插件

{
    "editor.wordWrap": "on",
    "latex-workshop.latex.tools": [
    {
        "name": "pdflatex",
        "command": "pdflatex",
        "args": [
            "-synctex=1",
            "-interaction=nonstopmode",
            "-file-line-error",
            "%DOC%"
        ]
    },
    {
        "name": "bibtex",
        "command": "bibtex",
        "args": [
            "%DOCFILE%"
        ]
    }
],
"latex-workshop.latex.recipes": [
    {
        "name": "pdflatex -> bibtex -> pdflatex*2",
        "tools": [
            "pdflatex",
            "bibtex",
            "pdflatex",
            "pdflatex"
        ]
    },
    {
        "name": "pdflatex (single)",
        "tools": [
            "pdflatex"
        ]
    }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment