chem-pdf2ppt 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +46 -1
- package/README_EN.md +6 -1
- package/package.json +25 -13
package/README.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
#
|
|
1
|
+
# chem-pdf2ppt — 化学学术论文 → 演示文稿转换器
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/chem-pdf2ppt)
|
|
4
|
+
[](https://www.npmjs.com/package/chem-pdf2ppt)
|
|
5
|
+
[](https://github.com/s1lencewill/PDF2PPT/blob/main/LICENSE)
|
|
6
|
+
[](https://github.com/s1lencewill/PDF2PPT)
|
|
2
7
|
|
|
3
8
|
将化学领域学术论文 PDF 转换为专业学术演示文稿。支持 **PPTX** 和 **HTML** 两种输出格式。
|
|
4
9
|
|
|
@@ -17,6 +22,19 @@
|
|
|
17
22
|
|
|
18
23
|
## 安装
|
|
19
24
|
|
|
25
|
+
### npm(推荐)
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm install -g chem-pdf2ppt
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
chem-pdf2ppt analyze paper.pdf --json analysis.json
|
|
33
|
+
chem-pdf2ppt extract paper.pdf figures/ 300 --report
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Python API
|
|
37
|
+
|
|
20
38
|
```bash
|
|
21
39
|
pip install -r requirements.txt
|
|
22
40
|
```
|
|
@@ -27,6 +45,18 @@ pip install -r requirements.txt
|
|
|
27
45
|
|
|
28
46
|
---
|
|
29
47
|
|
|
48
|
+
## 为什么选择 chem-pdf2ppt?
|
|
49
|
+
|
|
50
|
+
| | chem-pdf2ppt | 手动做 PPT | 通用 PDF→PPT 工具 |
|
|
51
|
+
|---|---|---|---|
|
|
52
|
+
| 化学论文理解 | 自动识别实验/计算/混合类型 | 靠你自己 | 不理解论文内容 |
|
|
53
|
+
| 内容生成 | 从 PDF 提取真实数据,无占位符 | 2-4 小时/篇 | 截图转 PPT,无结构化内容 |
|
|
54
|
+
| 图表处理 | 多策略提取 + 自动回退 | 手动截图裁剪 | 整页截图 |
|
|
55
|
+
| 输出格式 | PPTX + HTML(横向翻页) | PPTX | PPTX |
|
|
56
|
+
| 学术风格 | 4 套化学配色 + 结论式标题 | 看个人审美 | 通用模板 |
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
30
60
|
## 快速开始
|
|
31
61
|
|
|
32
62
|
### 完整工作流
|
|
@@ -230,6 +260,21 @@ PDF2PPT/
|
|
|
230
260
|
- **环境**: Claude Code / Claude Desktop / Cursor / VS Code / 任何 Python 环境
|
|
231
261
|
- **HTML 输出**: 任何现代浏览器(Chrome / Firefox / Edge / Safari)
|
|
232
262
|
|
|
263
|
+
## 推广与社区
|
|
264
|
+
|
|
265
|
+
**如果你觉得有用,请:**
|
|
266
|
+
- ⭐ [GitHub Star](https://github.com/s1lencewill/PDF2PPT) — 让更多研究者看到
|
|
267
|
+
- 📦 [npm](https://www.npmjs.com/package/chem-pdf2ppt) — 每周下载量帮助排名
|
|
268
|
+
- 🐛 [提交 Issue](https://github.com/s1lencewill/PDF2PPT/issues) — 反馈问题或建议
|
|
269
|
+
|
|
270
|
+
**分享到学术社区:**
|
|
271
|
+
- 知乎/小红书:分享你的使用体验
|
|
272
|
+
- B站:录制使用教程
|
|
273
|
+
- Twitter/X:`#chemistry #academicPPT #chemPDF2PPT`
|
|
274
|
+
- GitHub Trending / Hacker News
|
|
275
|
+
|
|
276
|
+
**需要帮助?** [GitHub Discussions](https://github.com/s1lencewill/PDF2PPT/discussions)
|
|
277
|
+
|
|
233
278
|
## 许可证
|
|
234
279
|
|
|
235
280
|
MIT License
|
package/README_EN.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
#
|
|
1
|
+
# chem-pdf2ppt — Chemistry Academic Paper → Presentation Converter
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/chem-pdf2ppt)
|
|
4
|
+
[](https://www.npmjs.com/package/chem-pdf2ppt)
|
|
5
|
+
[](https://github.com/s1lencewill/PDF2PPT/blob/main/LICENSE)
|
|
6
|
+
[](https://github.com/s1lencewill/PDF2PPT)
|
|
2
7
|
|
|
3
8
|
Convert chemistry academic paper PDFs into professional presentations for group meetings, defenses, and academic reports. Supports both **PPTX** and **HTML** output formats.
|
|
4
9
|
|
package/package.json
CHANGED
|
@@ -1,20 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chem-pdf2ppt",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "Convert chemistry academic paper PDFs into professional PowerPoint & HTML presentations. Auto-detects paper type (experimental/theoretical/hybrid), extracts figures, generates structured slides for group meetings & conferences.",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"pdf",
|
|
7
|
-
"
|
|
8
|
-
"powerpoint",
|
|
6
|
+
"pdf-to-ppt",
|
|
7
|
+
"pdf2ppt",
|
|
9
8
|
"chemistry",
|
|
9
|
+
"powerpoint",
|
|
10
|
+
"presentation",
|
|
10
11
|
"academic",
|
|
11
12
|
"paper",
|
|
12
|
-
"presentation",
|
|
13
|
-
"claude-code",
|
|
14
|
-
"skill",
|
|
15
13
|
"research",
|
|
16
14
|
"slide-deck",
|
|
17
|
-
"html-presentation"
|
|
15
|
+
"html-presentation",
|
|
16
|
+
"journal-club",
|
|
17
|
+
"group-meeting",
|
|
18
|
+
"scientific",
|
|
19
|
+
"chemistry-presentation",
|
|
20
|
+
"academic-ppt",
|
|
21
|
+
"theoretical-chemistry",
|
|
22
|
+
"computational-chemistry",
|
|
23
|
+
"claude-code-skill",
|
|
24
|
+
"figure-extraction",
|
|
25
|
+
"paper-to-slides"
|
|
18
26
|
],
|
|
19
27
|
"homepage": "https://github.com/s1lencewill/PDF2PPT#readme",
|
|
20
28
|
"bugs": "https://github.com/s1lencewill/PDF2PPT/issues",
|
|
@@ -24,6 +32,10 @@
|
|
|
24
32
|
},
|
|
25
33
|
"license": "MIT",
|
|
26
34
|
"author": "s1lencewill",
|
|
35
|
+
"funding": {
|
|
36
|
+
"type": "github",
|
|
37
|
+
"url": "https://github.com/sponsors/s1lencewill"
|
|
38
|
+
},
|
|
27
39
|
"main": "index.js",
|
|
28
40
|
"bin": {
|
|
29
41
|
"chem-pdf2ppt": "./cli.js"
|
|
@@ -37,14 +49,14 @@
|
|
|
37
49
|
"references/",
|
|
38
50
|
"assets/",
|
|
39
51
|
"examples/",
|
|
40
|
-
"
|
|
41
|
-
"
|
|
52
|
+
"requirements.txt",
|
|
53
|
+
"index.js",
|
|
54
|
+
"cli.js"
|
|
42
55
|
],
|
|
43
56
|
"engines": {
|
|
44
57
|
"node": ">=16.0.0"
|
|
45
58
|
},
|
|
46
59
|
"scripts": {
|
|
47
|
-
"test": "
|
|
48
|
-
"postinstall": "node bin/postinstall.js"
|
|
60
|
+
"test": "chem-pdf2ppt help"
|
|
49
61
|
}
|
|
50
62
|
}
|