一键导入
course-reading-notes
Multi-course academic reading notes generator — paper selection, note writing, Nature-style figures, Chinese PDF, and submission packaging
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Multi-course academic reading notes generator — paper selection, note writing, Nature-style figures, Chinese PDF, and submission packaging
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | course-reading-notes |
| description | Multi-course academic reading notes generator — paper selection, note writing, Nature-style figures, Chinese PDF, and submission packaging |
| keywords | ["课程作业","阅读笔记","论文阅读","course-assignment","reading-notes","academic-report","课程报告","论文笔记"] |
Generate complete, publication-quality course reading notes from scratch: paper selection, note writing, figures, Chinese PDF, and submission packaging. Multi-course generic.
chinese-pdf skill instead)nature-figure skill instead)nature-reader skill instead)If user hasn't selected a paper, help find one. Criteria:
Verification steps:
Structure (adaptable to course requirements):
# 论文阅读笔记
<center><b>学号 + 姓名</b></center>
## 论文基本信息
- **Title**: 论文英文标题
- **作者**: 作者列表
- **单位**: 作者单位
- **会议/期刊**: 发表 venue + year
- **关键词**: 3-5个关键词
## 一、摘要
论文核心问题、方法、结果的精炼总结(200-300字)
## 二、背景与动机
### 2.1 问题背景
### 2.2 现有方法局限
### 2.3 本文思路
## 三、方法
### 3.1 [核心方法1]
### 3.2 [核心方法2]
### 3.3 [训练/优化机制]
## 四、实验
### 4.1 实验设置
### 4.2 主要结果
### 4.3 [其他实验]
## 五、分析与思考
### 5.1 与课程内容的联系
### 5.2 优点
### 5.3 局限性
## 六、总结
2-3段总结性文字
## 参考资料
- 论文引用信息
- 开源代码链接
Create 3-4 Nature-style figures for the notes. Common figure types:
| Figure Type | Purpose |
|---|---|
| Overview diagram | Conceptual comparison or method overview |
| Architecture diagram | Method/algorithm structure |
| Hierarchical tree | Modular structure or taxonomy |
| Line plots | Performance comparison curves |
| Bar charts | Quantitative results comparison |
Mandatory font loading (every figure script must start with):
import matplotlib.font_manager as fm
fm._load_fontmanager(try_read_cache=False)
CJK_FONT = '/usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc'
prop = fm.FontProperties(fname=CJK_FONT, size=14)
Then pass fontproperties=prop to every text element (title, label, annotation, legend):
ax.set_title('标题', fontproperties=prop)
ax.set_xlabel('X轴', fontproperties=prop)
ax.text(x, y, '文本', fontproperties=prop)
ax.legend(prop=prop)
Never rely on plt.rcParams['font.sans-serif'] alone — it silently falls back to fonts without CJK glyphs, producing `` tofu boxes.
Other mandatory rules:
{width=85%} — empty alt text to avoid duplicate captions*图X:图注文字*Common pitfalls:
 — pandoc generates duplicate "Figure X: 图X:" labels{width=85%} with empty alt text相关资料/ subdirectoryfamily='monospace' for Chinese text (monospace fonts lack CJK glyphs)Markdown YAML frontmatter:
---
title: 论文阅读笔记
author: 学号 + 姓名
date: 2026年X月
documentclass: ctexart
geometry: margin=2.8cm
fontsize: 11pt
colorlinks: true
header-includes: |
\setlength{\emergencystretch}{3em}
---
Compilation command:
cd <作业目录>
pandoc 论文阅读笔记.md -o 论文阅读笔记.pdf --pdf-engine=xelatex --shift-heading-level-by=0
Critical:
ctexart, NOT article + manual mainfontmargin=2.8cm prevents text hugging page edgeemergencystretch=3em helps Chinese long-sentence line-breaking# Clean old figures that don't belong to current assignment
rm -f 相关资料/fig*_old.png
# Create zip
rm -f 作业名.zip
zip -r 作业名.zip 论文阅读笔记.md 论文阅读笔记.pdf 相关资料/
Before declaring complete:
x1 < page_width){width=85%} attributeUser: "这是我的课程作业要求,帮我完成一份论文阅读笔记"
Assistant: [invokes course-reading-notes skill]
1. Find appropriate paper
2. Write structured notes
3. Generate 4 figures
4. Compile PDF
5. Package submission