tex 和 latex

最近需要使用,进行初步调研,做一些记录,方便记忆;

TeX Text document

DVI Device Independent File Format

https://mirrors.tuna.tsinghua.edu.cn/CTAN/

windows/linux 安装 texlive

mac 安装 mactex

安装教程:https://www.tug.org/texlive/distro.html

教程:Getting started with TeX, LaTeX, and friends

建议按照模板来;没必要花大量精力精通latex

linux环境下使用体验:

apt install texlive-full

windows 下环境安装:

texlive + mingw64 + git-bash; 设置环境变量;

http://mingw-w64.org/doku.php/download

编辑环境:

vscode + texlive (配置支持MinTTY,以支持类unix环境)
vscode + mactex

TeXstudio: http://texstudio.sourceforge.net/

相关教程,网上很多:LaTeX+TexStudio安装与使用

vscode 配置默认shell为git-bash:

    "terminal.integrated.profiles.windows": {
        "MinTTY": {
            "path": "D:\Git\bin\bash.exe", //git bash 路径
            "icon": "terminal-cmd",
            "args": [
            ],
            "env": {
            }
        }
    },
    "terminal.integrated.defaultProfile.windows": "MinTTY",

相关阅读:

保持更新;

原文地址:https://www.cnblogs.com/xuyaowen/p/latex-tex.html