We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 250adfe commit 36af070Copy full SHA for 36af070
README.md
@@ -86,10 +86,19 @@
86
87
1. [幻灯片模板](style-marp.md)
88
2. [RISC-V与X86 CPU硬件特征的对比介绍](rv-x86-hardware-info-video.md)
89
- 3. 如何生成PDF slides
+ 3. 如何生成PDF/pptx slides
90
- [ubuntu 用 markdown + vscode + marp 编写 slides 并输出为 pdf](https://www.cnblogs.com/luyi07/p/14736322.html)
91
92
```
93
marp --pdf --html --allow-local-files lec[1-9]*/*.md # for building PDF slides
94
marp --pptx --html --allow-local-files lec[1-9]*/*.md # for building pptx slides
95
96
+
97
+ 4. 如何合并pdf files
98
99
+```
100
+# Debian/Ubuntu 安装 poppler组件,包括 pdfunite工具
101
+sudo apt install poppler-utils
102
+# 合并pdf files
103
+pdfunite input1.pdf input2.pdf input3.pdf output.pdf
104
0 commit comments