抱歉,您的浏览器无法访问本站

本页面需要浏览器支持(启用)JavaScript


了解详情 >

安装 TeX Live

  1. 进入华为云镜像,下载 install-tl-unx.tar.gz

  2. 解压

  3. 在线安装

    ./install-tl -repository https://mirrors.huaweicloud.com/CTAN/systems/texlive/tlnet/
    
  4. 添加到 Path

    cd /usr/local/texlive/2020/bin/x86_64-linux
    ./tlmgr path add
    
  5. 安装部分缺少的库

    apt-get install build-essential
    

    运行 latexindent,根据提示 cpan install 对应库。

  6. 更新包

    tlmgr update --self --all
    

同步字体

  1. 安装 fontconfig

    apt install fontconfig
    
  2. 创建 /etc/fonts/local.conf

    vi /etc/fonts/local.conf
    
  3. 写入 /etc/fonts/local.conf

    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <fontconfig>
        <dir>/mnt/c/Windows/Fonts</dir>
    </fontconfig>
    
  4. 刷新字体缓存

    fc-cache -fv
    

使用

推荐 VSCode 配合 LaTeX WorkshopRemote - WSL 使用。

注: LaTeX Workshop 默认不支持 xelatex 编译。

  • 可以向 settings.json 中添加以下内容。

    {
        "latex-workshop.latex.tools": [
            {
                "name": "latexmk",
                "command": "latexmk",
                "args": [
                    "-synctex=1",
                    "-interaction=nonstopmode",
                    "-file-line-error",
                    "-xelatex",//添加该行
                    "-pdf",
                    "%DOC%"
                ]
            }
        ]
    }
    
  • 或者可以在文件头部表明编译器。

    % !TEX program = xelatex

  • 或者向 settings.json 中添加以下内容。

    {
        "latex-workshop.latex.tools": [
            {
                "name": "xelatex",
                "command": "xelatex",
                "args": [
                    "-synctex=1",
                    "-interaction=nonstopmode",
                    "-file-line-error",
                    "-pdf",
                    "%DOCFILE%"
                ]
            },
            {
                "name": "pdflatex",
                "command": "pdflatex",
                "args": [
                    "-synctex=1",
                    "-interaction=nonstopmode",
                    "-file-line-error",
                    "%DOCFILE%"
                ]
            },
            {
                "name": "bibtex",
                "command": "bibtex",
                "args": [
                    "%DOCFILE%"
                ]
            }
        ],
        "latex-workshop.latex.recipes": [
            {
                "name": "xelatex",
                "tools": [
                    "xelatex"
                ]
            },
            {
                "name": "pdflatex",
                "tools": [
                    "pdflatex"
                ]
            },
            {
                "name": "xe->bib->xe->xe",
                "tools": [
                    "xelatex",
                    "bibtex",
                    "xelatex",
                    "xelatex"
                ]
            },
            {
                "name": "pdf->bib->pdf->pdf",
                "tools": [
                    "pdflatex",
                    "bibtex",
                    "pdflatex",
                    "pdflatex"
                ]
            }
        ]
    }
    



博客内容遵循 [署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 协议](https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh)
本站总访问量为 访客数为
本站使用 Volantis 作为主题