Vscode+latex配置

最近开始写论文,决定开始使用latex来做编译;之前一直拿word来写文档,受到文档格式之扰甚多。

经过一番搜索,发现目前最新的架构就是MikTex(或者其他的latex版本)+VS code+latex workshop

因为初次使用vscode,所受困扰较多。

话不多说,进入正题:

Step1:下载安装MikTex和Vscode

Step2:在Vscode中的Extensions中搜索“latex workshop”进行安装,安装之后记得reload vscode从而使得改动生效

Vscode+latex配置_第1张图片

Step3:配置

点击界面左下角的设置按钮

Vscode+latex配置_第2张图片

然后,就是我之前读了很多博客无法找到的部分,其实只要在跳出界面的搜索框中,搜索"recipe",跳出的第一个结果,就是我们要找的——点击“Edit in setting.json”,进行修改。

Vscode+latex配置_第3张图片

根据带有参考文献的论文的编译流程:latex->bibtex->latex*2,在右侧修改界面中藏修改settings.json文件,如下:

{"latex-workshop.latex.recipes": [
    // {
    //   "name": "pdflatex",  //放在最前面为默认编译方案, 适用于MikTex
    //   "tools": [
    //     "pdflatex"
    //   ]
    // },
	{
        "name": "pdflatex -> bibtex -> pdflatex*2",
        "tools": [
          "pdflatex",
          "bibtex",
          "pdflatex",
          "pdflatex"
        ]
      }
],
"latex-workshop.latex.tools": [
    {
        "name": "pdflatex",
        "command": "pdflatex",
        "args": [
            "-synctex=1",
            "-interaction=nonstopmode",
            "-file-line-error",
            "%DOC%"
        ]
    },
    {
        "name": "bibtex",
        "command": "bibtex",
        "args": [
            "%DOCFILE%"
        ]
    },
    {
        "name": "texify",
        "command": "texify",
        "args": [
          "--synctex",
          "--pdf",
          "--tex-option=\"-interaction=nonstopmode\"",
          "--tex-option=\"-file-line-error\"",
          "%DOC%.tex"
        ]
      },
    {
        // 编译工具和命令
        "name": "xelatex",
        "command": "xelatex",
        "args": [
            "-synctex=1",
            "-interaction=nonstopmode",
            "-file-line-error",
            "%DOC%"
        ]
    }
],
"latex-workshop.view.pdf.viewer": "tab"
}

就可以愉快地开始写论文了!

ps:之前找到地设置不对,引用都是问号。

你可能感兴趣的:(Vscode+latex配置)