用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/rongarede/skill-snapshots --skill pdf2md-academic命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Technology scouting and evaluation for tools, frameworks, libraries, and technical approaches. Use when users need to evaluate technology options, compare frameworks, assess technical feasibility, scout emerging technologies, or make build-vs-buy decisions. Produces structured comparison matrices with objective criteria scoring.
使用 Semantic Scholar API 检索和验证学术论文。支持并发多关键词搜索、批量 ID/DOI 查询、引用分析、批量补全摘要、统一 Markdown 导出。覆盖 2.14 亿+ 学术论文,无需 API Key 即可使用。触发词:论文检索、论文验证、Semantic Scholar、S2 搜索、查论文、补全摘要、导出MD
中文/英文写作风格迁移与错误记忆工作流。适用于论文、学位论文、报告等场景,提供 style profile、error log、长期记忆与多智能体写作闭环。
正在显示 SKILL.md
基于 SOC 职业分类
| name | pdf2md-academic |
| description | 学术 PDF 转 Markdown 工具:将含公式、图表、引用的学术论文 PDF 转换为排版整洁的 Markdown。触发词:/pdf2md、PDF转Markdown、论文转MD |
将学术类 PDF(含数学公式、图表引用、参考文献)转换为排版整洁、渲染友好的 Markdown,保留论文结构与内容准确性。
/pdf2md <PDF路径>{PDF路径} - 学术论文 PDF 文件路径保留以下所有部分:
| 类型 | 格式 |
|---|---|
| 行内公式 | $...$ |
| 独立公式 | $$...$$ |
要求:
$ 成对闭合 正文引用格式:
\cite{ref1}
\cite{ref1,ref3}
禁止使用:
[n] 形式\cite{} 之外的任何格式参考文献格式:
\cite{refn} 对应编号[图 X: 图注说明]标题格式:
**Algorithm [编号]: [算法名称]**
必须包含:
**Input:** 输入说明**Output:** 输出说明伪代码格式:
INPUT: ...
OUTPUT: ...
FOR each item IN collection DO
IF condition THEN
# 注释说明
action()
ELSE
other_action()
END IF
END FOR
RETURN result
代码规范:
```pseudo 包裹IF/ELSE/WHILE/FOR/RETURN/INPUT/OUTPUT# 开头并对齐将连续罗马数字编号转换为 Markdown 列表:
原文:
(i) First item description
(ii) Second item description
转换后:
- **(i) First item:** description.
- **(ii) Second item:** description.
规则:
- **(编号) 核心术语:** 解释文本....使用 OCR 读取并转换 PDF:
请使用 OCR 读取并转换文件 {PDF路径} 为 Markdown。
输出最终 Markdown,不分步询问。
执行完成后检查:
$ 是否成对闭合[n] 形式引用(应改为 \cite{refn})# 论文标题
**作者**: Author Name
## Abstract
摘要内容...
## 1. Introduction
正文内容,引用示例 \cite{ref1}。
公式示例:
$$E = mc^2$$
其中 $E$ 表示能量,$m$ 表示质量,$c$ 表示光速。
## 2. Related Work
相关工作描述 \cite{ref2,ref3}...
## 3. Method
**Algorithm 1: Example Algorithm**
**Input:** Input description
**Output:** Output description
```pseudo
FOR i = 1 TO n DO
IF condition THEN
process(i)
END IF
END FOR
RETURN result
\cite{ref1} Author A. Title of Paper A. Journal, 2024.
\cite{ref2} Author B. Title of Paper B. Conference, 2023.