Remove PDF build(#163)

* Update PDF link

* Update path

* Remove PDF links
This commit is contained in:
Cheng Lai
2022-03-21 20:59:08 +08:00
committed by GitHub
parent e3105cb61d
commit e76fcf1d07
3 changed files with 1 additions and 51 deletions

View File

@@ -2,7 +2,7 @@
本开源项目试图给读者讲解现代机器学习系统的设计原理和实现经验。
[机器学习系统:设计和实现](https://openmlsys.github.io/) | [PDF](https://git.openi.org.cn/attachments/f3b71767-584c-4258-9745-3d309c356c76?type=0)
[机器学习系统:设计和实现](https://openmlsys.github.io/) | [PDF将在勘误后,四月底发布]
## 发布

View File

@@ -74,7 +74,6 @@ sphinx_configs = numfig_format = {'figure': '图%%s', 'table': '表%%s', 'code-b
# items: name, URL, and a fontawesome icon
# (https://fontawesome.com/icons?d=gallery). Items are separated by commas.
header_links = GitHub, https://github.com/openmlsys/openmlsys-zh, fab fa-github,
PDF, https://git.openi.org.cn/attachments/f3b71767-584c-4258-9745-3d309c356c76?type=0, fas fa-file-pdf,
favicon = static/favicon.png

View File

@@ -26,55 +26,6 @@ d2lbook build html
需要注意的是docs目录下的.nojekyll不要删除了不然网页会没有渲染。
## 编译PDF版本
编译pdf版本需要xelatex、librsvg2-binsvg图片转pdf和思源字体。在Ubuntu可以这样安装。
```
sudo apt-get install texlive-full
sudo apt-get install librsvg2-bin
```
```
wget https://github.com/adobe-fonts/source-han-sans/raw/release/OTF/SourceHanSansSC.zip
wget https://github.com/adobe-fonts/source-han-serif/raw/release/OTF/SourceHanSerifSC_SB-H.zip
wget https://github.com/adobe-fonts/source-han-serif/raw/release/OTF/SourceHanSerifSC_EL-M.zip
unzip SourceHanSansSC.zip
unzip SourceHanSerifSC_EL-M.zip
unzip SourceHanSerifSC_SB-H.zip
sudo mv SourceHanSansSC SourceHanSerifSC_EL-M SourceHanSerifSC_SB-H /usr/share/fonts/opentype/
sudo fc-cache -f -v
```
这时候可以通过 `fc-list :lang=zh` 来查看安装的中文字体。
同样的去下载和安装英文字体
```
wget -O source-serif-pro.zip https://www.fontsquirrel.com/fonts/download/source-serif-pro
unzip source-serif-pro -d source-serif-pro
sudo mv source-serif-pro /usr/share/fonts/opentype/
wget -O source-sans-pro.zip https://www.fontsquirrel.com/fonts/download/source-sans-pro
unzip source-sans-pro -d source-sans-pro
sudo mv source-sans-pro /usr/share/fonts/opentype/
wget -O source-code-pro.zip https://www.fontsquirrel.com/fonts/download/source-code-pro
unzip source-code-pro -d source-code-pro
sudo mv source-code-pro /usr/share/fonts/opentype/
sudo fc-cache -f -v
```
然后就可以编译了。
```
d2lbook build pdf
```
## 样式规范
贡献请遵照本教程的[样式规范](style.md)。