使⽤gitbook制作PDF的⽅法我们现在假设要做⼀个电⼦书,共两章,第⼀章为两节。第⼆章⽆节。
需要使⽤的⼯具包括:
网红天佑为什么判刑了gitbook
gitbook-pdf
gitbook需要node,需要你⾸先安装它。
具体做法如下:
安装gitbook套件
执⾏:
npm install gitbook-cli -g
npm install gitbook-pdf -g复制代码
张小斐简介
安装calibre
安装calibre需要下载安装包,然后完成惯常的App安装过程即可:
下载地址:calibre-ebook/download复制代码
安装完毕后,需要使⽤命令,⼿⼯链接ebook-convert到/usr/local/bin内:
ln -s /Applications/calibre.app/Contents/MacOS/ebook-convert /usr/local/bin复制代码
初始化
mkdir gitbook
cd gitbook
曹颖和王斑gitbook init复制代码
可看到两个⽂件被创建
$ ls
README.md SUMMARY.md复制代码
###电⼦书编辑开始
⽂件SUMMARY.md就是⽬录,可以使⽤类似MD的URL格式来制作⽬录
男GARY SOLO$cat SUMMARY.md
* [Chapter1](chapter1/README.md)
* [Section1.1](chapter1/section1.1.md)
* [Section1.2](chapter1/section1.2.md)
* [Chapter2](chapter2/README.md)复制代码
随即补⾜⽂件:
$mkdir chapter1 chapter2
$touch chapter1/README.md chapter1/section1.1.md chapter1/section1.2.md chapter2/README.m
d $cat chapter1/README.md chapter1/section1.1.md chapter1/section1.2.md chapter2/README.md复制代码
输出:
pdf电子书制作# 第1章
这⾥是第1章的内容
## 第1节
这⾥是第1节的内容
## 第2节
这⾥是第2节的内容
# 第2章
这⾥是第2章的内容复制代码
⽣成PDF
gitbook pdf .
open book.pdf复制代码
⼤功告成。
陈昭荣妻子
发布评论