VSCode优雅配置LaTeX


软件安装

配置过程

  1. 在VSCode插件商店中下载LaTex Workshop插件。
  2. 使用ctrl+shift+p快捷键搜索Preferences: Open Settings(JSON)。打开的json文件即是VSCode的配置文件,可能在之前配置过python等其他语言,这次LaTeX配置只需要在末尾追加并保存:
    "latex-workshop.latex.recipes": [
            {
              "name": "xelatex",
              "tools": [
                  "xelatex"
             ]
            }, 
            {
              "name": "xe*2",
              "tools": [
                  "xelatex",
                  "xelatex"
             ]
           },
          {
            "name": "xelatex -> bibtex -> xelatex*2",
            "tools": [
                "xelatex",
                "bibtex",
                "xelatex",
                "xelatex"
            ]
          }
          ],
          "latex-workshop.latex.tools": [{
          "name": "latexmk",
          "command": "latexmk",
          "args": [
            "-synctex=1",
            "-interaction=nonstopmode",
            "-file-line-error",
            "-pdf",
            "%DOC%"
          ]
          }, {
          "name": "xelatex",
          "command": "xelatex",
          "args": [
            "-synctex=1",
            "-interaction=nonstopmode",
            "-file-line-error",
            "%DOC%"
          ]
          }, {
          "name": "pdflatex",
          "command": "pdflatex",
          "args": [
            "-synctex=1",
            "-interaction=nonstopmode",
            "-file-line-error",
            "%DOC%"
          ]
          }, {
          "name": "bibtex",
          "command": "bibtex",
          "args": [
            "%DOCFILE%"
          ]
          }],
          "latex-workshop.view.pdf.viewer": "tab"
  3. 创建一个如下内容的.tex文件测试:
    \documentclass[letterpaper,11pt]{article}
     
    \usepackage{latexsym}
    \usepackage[empty]{fullpage}
    \usepackage{titlesec}
    \usepackage{marvosym}
    \usepackage[usenames,dvipsnames]{color}
    \usepackage{verbatim}
    \usepackage{enumitem}
    \usepackage[hidelinks]{hyperref}
    \usepackage{fancyhdr}
    \usepackage[english]{babel}
    \usepackage{tabularx}
    \usepackage[UTF8]{ctex}
     
    \begin{document}
    \textbf{hello world 2020!}
    \end{document}
  4. 按如下过程,编译运行。
    ![](https://github.com/Petr-Chan/tuchuang/raw/master/VSCode_Latex.png)
  1. 结果展示:
    ![](https://github.com/Petr-Chan/tuchuang/raw/master/VSCode_LaTex1.png)

参考文献

1.https://blog.csdn.net/GodWriter/article/details/99829734
2.https://blog.csdn.net/yyhaohaoxuexi/article/details/86520926


文章作者: Peyton
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 Peyton !
  目录