Mac下手动安装Tex/Latex Package

下载最小安装mactex-basic

传送门链接:https://pan.baidu.com/s/1jKiorVw 密码:a0fs

#安装Package

英文好的自己看:
https://en.wikibooks.org/wiki/LaTeX/Installing_Extra_Packages#Installing_a_package

不好的就看下面:

cd /usr/local/texlive/2017basic/bin/x86_64-darwin/ 
./tlmgr update --self
./tlmgr install 要安装的包名

补充一个问题: 当执行上面语句时候出现以下异常

./tlmgr update --self
tlmgr: Remote repository is newer than local (2017 < 2019)
Cross release updates are only supported with
update-tlmgr-latest(.sh/.exe) --update
Please see https://tug.org/texlive/upgrade.html for details.

大概的意思是默认的仓库和本地仓库版本不一致,所以我们更改下默认的 repository 就好了 执行下面的语句(记得把 2017 换成你的版本,就是上面提示错误的 xxx < 2019 中的 xxx)

sudo tlmgr option repository ftp://tug.org/historic/systems/texlive/2017/tlnet-final

如果还是各种报错安装不上!最后的大招~就是从网上下载包,里面应该会包含一个dtx 文件和一个ins 文件,使用 latex 命令

	latex multirow

这样会生成一个.sty 的文件,将这个文件拷贝到/usr/local/texlive/2017basic/texmf-dist/tex/latex/base/目录就可以啦~!

你可能感兴趣的:(工具)