当前位置:   article > 正文

MacBook Pro M3-VS Code-LaTeX配置_latex macbook

latex macbook

昨天刚到的MacBook Pro M3,为了抓紧写文章投文章,所以赶紧配置基于VScode的Latex环境。

#1. 下载安装MacTex
MacTex是Latex针对macOS系统的发行版,包含与TEX系统相关的各种程序、编辑与查看工具、常用宏包及文档、常用字体及多国语言支持。
下载链接 https://tug.org/mactex/mactex-download.html
Downloading MacTeX 2023
下载MacTex.pkg
下载完成之后直接进行安装。

#2.下载安装Visual Studio Code

Visual Studio Code (VScode)是一款集成开发环境(Integrated Development Environment,简称IDE)。通过安装第三方扩展LaTeX Workshop,VScode能够用于latex源文件管理与编辑。
下载链接 https://code.visualstudio.com
直接运行下载好的VSCode
鼠标点击左边栏中的扩展/Extensions,在搜索框中输入workshop,安装James Yu的LaTeX Workshop(点击Install即可安装)。
安装好之后,打开latex源文件夹,即可看到红色框中的TEX标识。

#3. VScode的latex配置

(1)打开配置文件

鼠标点击左下角齿轮⚙️设置,弹出菜单,如下图所示
请添加图片描述

选择Settings,在弹出的界面右上角,点击Open Settings图标,即红色框框的位置,如下图所示。(或者点击Command+Shift+P)
请添加图片描述
环境设置:复制下面这段代码粘贴在 setting.json 里。

{
    //latex begin
    "latex-workshop.latex.recipes": [
      {
        "name": "xelatex",
        "tools": ["xelatex"]
      },
      {
        "name": "latexmk",
        "tools": ["latexmk"]
      },
  
      {
        "name": "pdflatex -> bibtex -> pdflatex*2",
        "tools": ["pdflatex", "bibtex", "pdflatex", "pdflatex"]
      },
      {
        "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",
        //     "-outdir=%OUTDIR%",
        //     "%DOC%"
        // ],
        "args": [
            "-xelatex",
            "-synctex=1",
            "-interaction=nonstopmode",
            "-file-line-error",
            "%DOC%"
        ],
        "env": {}
      },
      // {
      //   "name": "latexmk",
      //   "command": "latexmk",
      //   "args": ["-synctex=1", "-interaction=nonstopmode", "-file-line-error", "-pdf", "%DOCFILE%"]
      // },
      {
        "name": "xelatex",
        "command": "xelatex",
        "args": ["-synctex=1", "-interaction=nonstopmode", "-file-line-error", "%DOCFILE%"]
      },
      {
        "name": "pdflatex",
        "command": "pdflatex",
        "args": ["-synctex=1", "-interaction=nonstopmode", "-file-line-error", "%DOCFILE%"]
      },
      {
        "name": "bibtex",
        "command": "bibtex",
        "args": ["%DOCFILE%"]
      }
    ],
    "latex-workshop.view.pdf.viewer": "tab",
    "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"
    ],
    //latex end

    "ltex.enabled": true, // 启用插件
    "ltex.language": "en",
    "editor.fontSize": 16, // 设置语言,填 en, 或者 en-US,en-GB 等*/    
  }
  • 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
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91

至此,大功告成,可以开心用latex写论文啦~

点击 Command+Option+B 运行.tex文件
点击 Command+Option+V 预览 PDF

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/709550
推荐阅读
相关标签
  

闽ICP备14008679号