Files
llm_wiki/raw/教育AI研究/文献库/学术论文下载工作流.md
hehaiguang1123 a6f05ab2d5 Phase 0-2: Schema cleanup, typed relations, event-driven automation
- Phase 0: AGENTS.md cleanup (dedup quotes, renumber sections, merge qmd)
- Phase 1: typed relations (manage-relations.py, graph-search.py, check-staleness.py, detect-conflicts.py)
- Phase 2: frontmatter validator, weekly lint, knowledge promotion, git hooks
- Fix .gitignore to track tools/ and .githooks/
- Fix git remote URL (remove plaintext token)
- New wiki pages: 504 pages, 34 raw sources
2026-07-01 08:05:43 +08:00

187 lines
3.4 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
created: 2026-04-14
title: 学术论文高效下载工作流
tags: [文献, 论文]
category: 文献库
---
# 学术论文高效下载工作流
> 制定日期:2026-04-14
> 适用场景:教育AI研究项目文献获取
> 版本:v1.0
---
## 核心原则
1. **免费优先**:始终从免费渠道开始
2. **元数据先行**:先确认DOI/作者/年份,再找全文
3. **官网最稳**:大学/机构官网普遍免费开放
---
## 推荐工作流(五步法)
### 第一步:Semantic Scholar 定位
**地址**`https://www.semanticscholar.org/`
**操作**
1. 搜索论文标题/关键词
2. 记录:DOI、作者、年份、期刊/会议
3. 查看引用数和参考文献(判断质量)
**成功率**~95%
**耗时**<10秒
---
### 第二步:DOI.org 获取原文链接
**地址**`https://doi.org/[DOI号]`
**操作**
1. 粘贴DOI,自动跳转出版商页面
2. 查看是否免费开放(Open Access
3. 若免费,直接下载PDF
**成功率**~70%ACM/IEEE约30%免费)
**耗时**<5秒
---
### 第三步:作者/机构官网
**通用模式**
```
{姓}.cs.{大学}.edu/publications/
{姓}@cs.{大学}.edu
```
**哈佛CS论文示例**
```
cs.harvard.edu/malan/publications/
```
**成功率**~60%(计算机领域尤其高)
**耗时**<30秒
---
### 第四步:arXiv / PMC / SSRN
**优先级**
1. arXivcs.AI/cs.LG/cs.CY
2. PubMed Central(生物医学)
3. SSRN(经济学/法学预印本)
**地址**
- arXiv: `https://arxiv.org/abs/[论文ID]`
- PMC: `https://www.ncbi.nlm.nih.gov/pmc/`
**成功率**~30%(预印本或开放科学期刊)
**耗时**<10秒
---
### 第五步:付费渠道(最后手段)
**选项**
1. ACM Digital Library(会议论文)
2. IEEE Xplore(工程类)
3. Springer/Journal订阅
**建议**
- 查看学校/机构是否有VPN访问
- Google Scholar有时提供PDF镜像
- ResearchGate可直接联系作者
---
## 快速决策流程图
```
开始
Semantic Scholar搜索
获取DOI
DOI.org跳转
免费?──是──→ 下载PDF ✅
↓否
作者官网?
↓否
arXiv/PMC
↓否
付费渠道/联系作者
```
---
## 典型案例
### SIGCSE 2025论文(DOI: 10.1145/3641554.3701945
| 步骤 | 方法 | 结果 |
|------|------|------|
| 1 | Semantic Scholar | 定位到Harvard团队 |
| 2 | DOI.org | ACM付费墙 |
| 3 | Harvard官网 | ✅ 成功获取PDF804KB|
### Nature论文(DOI: 10.1038/s41598-025-97652-6
| 步骤 | 方法 | 结果 |
|------|------|------|
| 1 | Semantic Scholar | Nature Publishing |
| 2 | DOI.org | ✅ 开放获取 |
---
## 常用工具
| 工具 | 用途 | 链接 |
|------|------|------|
| Semantic Scholar | 学术搜索 | semanticscholar.org |
| Crossref API | 元数据查询 | api.crossref.org |
| DOI.org | 原文跳转 | doi.org |
| Unpaywall | 开放获取查询 | unpaywall.org |
| Google Scholar | 综合搜索 | scholar.google.com |
---
## 注意事项
1. **避开陷阱**ResearchGate上有大量未授权副本,可能违规
2. **验证版本**:预印本(arXiv)可能与正式发表版本有差异
3. **记录来源**:下载后记录URL和日期,便于溯源
4. **遵守版权**:仅用于研究目的,合理使用
---
## 效率指标
| 指标 | 目标值 |
|------|--------|
| 平均获取时间 | <2分钟 |
| 免费成功率 | >70% |
| 最终失败率 | <10% |
---
*本流程将持续优化,更新记录见 MEMORY.md*