<%* const clean = (value) => (value || "").replace(/\r?\n/g, " ").trim(); const yaml = (value) => clean(value).replace(/"/g, '\"'); const fileSafe = (value) => clean(value) .replace(/[\/:*?"<>|#^[]]/g, "") .replace(/\s+/g, " ") .slice(0, 120) .trim();
const paperTitle = clean(await tp.system.prompt("Paper title", tp.file.title));
const topic = clean(await tp.system.prompt("Topic / field", ""));
const paperUrl = clean(await tp.system.prompt("AI summary / paper URL", ""));
const pdf = clean(await tp.system.prompt("PDF wikilink or file name", ""));
const venue = clean(await tp.system.prompt("Venue", ""));
const year = clean(await tp.system.prompt("Year", ""));
const status = await tp.system.suggester(["draft", "reading", "completed"], ["completed", "draft", "reading"], false, "Status");
const noteTitle = ${paperTitle || "Untitled"} Conclusion;
await tp.file.rename(fileSafe(noteTitle) || "Paper Conclusion");
-%>
title: "<% yaml(noteTitle) %>" created: <% tp.date.now("YYYY-MM-DD HH:mm") %> type: paper-reading status: <% status %> tags:
- paper-reading
- paper-conclusion paper_title: "<% yaml(paperTitle) %>" paper_url: "<% yaml(paperUrl) %>" pdf: "<% yaml(pdf) %>" venue: "<% yaml(venue) %>" year: "<% yaml(year) %>" topic: "<% yaml(topic) %>" reading_stage: conclusion
<% paperTitle %> Conclusion
一句话总结
这篇 paper 通过 ___ 方法,在 ___ 任务 / 数据上解决 ___ 问题,主要贡献是 ___。
Conclusion
主要的创新点
可复用的方法和经验
| Method / experience | How it works | Where I can reuse it |
|---|---|---|
Problems / Limitations
与我的学习 / 研究的关系
- 这篇 paper 让我理解了什么:
- 可能启发的 research idea:
-
需要继续读的 paper:
-
需要继续补的背景:
Active Recall
- 这篇 paper 解决的核心问题是什么?
- 它相比 previous work 真正改变了什么?
- 哪个实验最能支撑作者的 main claim?为什么?