mac 如何安装pdf2htmlEX
时间: 2024-06-01 10:04:22 浏览: 155
pdf2htmlEX-v1.0.zip
在Mac上安装pdf2htmlEX可以通过以下步骤进行:
1. 使用Homebrew安装pdf2htmlEX:
```shell
brew install pdf2htmlex
```
2. 安装MacTeX:
```shell
brew cask install mactex
```
3. 安装ucs宏包:
```shell
sudo tlmgr install ucs
```
4. 安装pdf2htmlEX的Docker镜像:
```shell
docker pull bwits/pdf2htmlex
```
5. 创建pdf2htmlEX的别名:
```shell
alias pdf2htmlEX='docker run -ti --rm -v `pwd`:/pdf bwits/pdf2htmlex pdf2htmlEX'
```
现在,你可以使用pdf2htmlEX命令来将PDF文件转换为HTML了。
阅读全文