skill/latex_reader/SKILL.md
如何自适应地探索和阅读 LaTeX 论文源码。当 Agent 下载完论文后需要阅读源码时使用此技能。
npx skillsauth add tangshunpu/paper_granny latex-readerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
list_dir 看结构:了解有哪些文件和子目录\documentclass 的 .tex 文件(通常是 main.tex 或 paper.tex)read_file 阅读主文件\input{xxx} 或 \include{xxx},逐个阅读引用的文件.bib 文件,也要阅读\input 引用的文件read_file("path", start_line=1, max_lines=200)\newcommand 和 \def 定义的缩写\begin{theorem}, \begin{proposition} 等定理环境\includegraphics{...})供报告引用source/
├── main.tex # 主文件
├── introduction.tex # 引言
├── method.tex # 方法
├── experiments.tex # 实验
├── conclusion.tex # 结论
├── figures/ # 图片
│ ├── fig1.pdf
│ └── fig2.png
├── tables/ # 表格
├── refs.bib # 参考文献
└── macros.tex # 宏定义
阅读时请提取:
tools
管理 LaTeX 模板目录,提供模板发现、加载和信息展示功能。
documentation
如何使用 LaTeX 模板写解读报告。Agent 准备写报告时使用此技能,学习盒子环境和格式规范。
development
将生成的 LaTeX 文件编译为 PDF,处理编译错误,清理中间文件。
data-ai
如何深度解读论文——术语白话化、公式拆解、背景补充、类比解释。Agent 在阅读完论文、准备写解读报告前使用此技能。