美文网首页LaTex使用小记
配置 VSCode 作为LaTex 编辑器

配置 VSCode 作为LaTex 编辑器

作者: HanlyJiang | 来源:发表于2018-03-26 22:32 被阅读322次

    主要内容:
    Mac 安装VSCode 并配置为xeLaTex 编译环境

    下载安装VSCode

    VSCode 下载Mac版本

    安装配置

    搜索安装LaTex workshop 插件

    配置

    设置->搜索Latex->右边用户配置中添加自定义配置覆盖默认配置

    添加LaTexWorkShop的用户配置

    加入如下内容:

    {
        "window.zoomLevel": 1,
        "latex-workshop.latex.clean.enabled": true,
        "latex-workshop.latex.recipes": [
            {
              "name": "xelatex",
              "tools": [
                "xelatex"
              ]
            },
          ],
        "latex-workshop.latex.tools": [
            {
              "name": "xelatex",
              "command": "xelatex",
              "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "-pdf",
                "%DOC%"
              ]
            }
          ]
    }
    

    测试

    打开一个Tex 文件,输入以下内容:

    \documentclass[12pt,UTF8]{ctexart}
        %ctexrep - report ; ctexbook - book ; ctexart - article
    \usepackage{xeCJK}
    
    \setCJKmainfont{NotoSerifCJKsc-Bold}
    
    \author{匿名}
    \title{诗经}
    
    \begin{document}
    \maketitle
    \begin{center}
    \begin{Large}
        \begin{verse}
        关关雎鸠,在河之洲。窈窕淑女,君子好逑。\\
        参差荇菜,左右流之。窈窕淑女,寤寐求之。\\
        求之不得,寤寐思服。悠哉悠哉,辗转反侧。\\
        参差荇菜,左右采之。窈窕淑女,琴瑟友之。\\
        参差荇菜,左右芼之。窈窕淑女,钟鼓乐之。\\
        \end{verse}
    \end{Large}
    \end{center}
    \end{document}
    

    效果图:


    效果图

    使用的思源宋体,安装参考
    Google 思源开源字体安装

    相关文章

      网友评论

        本文标题:配置 VSCode 作为LaTex 编辑器

        本文链接:https://www.haomeiwen.com/subject/bzedcftx.html