Skip to content

typst-paper

面向现有 .typ 中英文论文的 Typst 学术论文助手。它在保留 Typst 语法、label、文献格式和伪代码约定的前提下,覆盖论文写作常见检查。

适用场景

  • Typst 编译、导出、字体和 watch 问题。
  • venue 格式和版式检查。
  • BibTeX 或 Hayagriva 文献验证。
  • 语法、长句、表达、翻译、标题、摘要、表格和去 AI 审阅。
  • 逻辑、文献综述综合、研究空白推导、跨章节闭合和实验章节审阅。
  • algorithmicalgorithm-figurelovelace 的 IEEE-like 伪代码审查。

不适用场景

  • LaTeX 项目;请用 latex-paper-enlatex-thesis-zh
  • 没有 Typst 源码的 DOCX/PDF-only 编辑。
  • 审稿式打分或投稿门禁;请用 paper-audit
  • 投稿信任务。

模块路由

模块适用场景主命令
compile构建、导出或字体问题uv run python academic-writing-skills/typst-paper/scripts/compile.py main.typ
format版式或 venue 风格检查uv run python academic-writing-skills/typst-paper/scripts/check_format.py main.typ
bibliographyBibTeX 或 Hayagriva 验证uv run python academic-writing-skills/typst-paper/scripts/verify_bib.py references.bib --typ main.typ
grammar语法检查uv run python academic-writing-skills/typst-paper/scripts/analyze_grammar.py main.typ --section introduction
sentences长句或密集句审阅uv run python academic-writing-skills/typst-paper/scripts/analyze_sentences.py main.typ --section introduction
logic连贯性、绪论漏斗、摘要/结论一致性或闭合uv run python academic-writing-skills/typst-paper/scripts/analyze_logic.py main.typ --section methods
literatureRelated Work 综合和 gap 推导uv run python academic-writing-skills/typst-paper/scripts/analyze_literature.py main.typ --section related
expression学术表达润色uv run python academic-writing-skills/typst-paper/scripts/improve_expression.py main.typ --section methods
translation中英学术翻译uv run python academic-writing-skills/typst-paper/scripts/translate_academic.py input_zh.txt --domain deep-learning
title标题检查或优化uv run python academic-writing-skills/typst-paper/scripts/optimize_title.py main.typ --check
pseudocodealgorithmicalgorithm-figurelovelace 审查,包含 caption 和 wrapper 检查uv run python academic-writing-skills/typst-paper/scripts/check_pseudocode.py main.typ --venue ieee
deai中英文 AI 痕迹检查uv run python academic-writing-skills/typst-paper/scripts/deai_check.py main.typ --section introduction
experiment实验写法和讨论分层uv run python academic-writing-skills/typst-paper/scripts/analyze_experiment.py main.typ --section experiment
abstract五元素摘要诊断uv run python academic-writing-skills/typst-paper/scripts/analyze_abstract.py main.typ
tables表格结构和三线表检查uv run python academic-writing-skills/typst-paper/scripts/check_tables.py main.typ
adapt跨 venue 适配LLM 驱动工作流

最小输入

  • 入口文件,如 main.typ
  • 局部分析可提供 section 名称。
  • 文献路径可选,支持 BibTeX 和 Hayagriva。
  • 伪代码和格式任务可提供 venue 或 IEEE-like 上下文。

输出产物

  • Typst 友好的诊断和审阅意见。
  • 默认保留 @cite、label、math 和 Typst 结构的源码友好建议。
  • 可进入后续 audit 或投稿流程的模块级 findings。

公开资源

参考资料

模板

示例

常见请求

text
编译 main.typ,并解释第一个报错。
text
核对 references.bib 和 main.typ 的引用关系。
text
审查这个 algorithm-figure 的 caption 和行号设置。
text
把 Related Work 从 citation list 改成综合式重写方案。

基于 MIT 许可发布