write-paper

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Write Paper

撰写论文

Build
papers/<slug>/
: a venue-specific paper assembled from the survey and the contribution reports. The survey supplies related work; the reports supply technical content; the root
references.bib
supplies every citation.
构建
papers/<slug>/
目录:一份基于调研内容和研究贡献报告整合而成的、适配特定会议/期刊的论文。调研内容提供相关研究工作;贡献报告提供技术内容;根目录下的
references.bib
文件提供所有引用文献。

Read First

必读内容

  • papers/README.md
    — the paper lifecycle contract
  • survey/survey.pdf
    and the reports of candidate contributions
  • references/writing-rules.md
    ,
    references/venue-fit.md
  • papers/README.md
    — 论文生命周期规范
  • survey/survey.pdf
    以及候选研究贡献的报告
  • references/writing-rules.md
    references/venue-fit.md

Procedure

操作流程

  1. Venue. If not fixed, compare candidates with the user using
    references/venue-fit.md
    . Fill
    venue.md
    : venue, track, deadlines, page/format rules, anonymization policy, template source, and the venue's specific badge/artifact requirements — from the real call for papers, never from memory.
  2. Framing. Write
    framing.md
    : the story, the claims, which contributions support which claim and what each provides, and what is deliberately out of scope. Every claim must map to a contribution or to survey-grounded evidence.
  3. Template. Import the venue's official LaTeX template into
    manuscript/
    ; rename the entry point to
    main.tex
    . Use the bib system the venue class dictates (bibtex/natbib or biblatex), reading the root
    references.bib
    via relative path. The base manuscript defaults to numeric (biblatex); the venue class sets the final style. The same root
    references.bib
    is shared with the survey (author-year) — bibliography style is per-document, not per-entry; contribution reports stay numeric.
  4. Write. Section by section: related work distilled from the survey (theme-first, never paper-by-paper); methods/results from the contribution reports and their figures; every
    \cite{}
    resolves in the root
    .bib
    . Follow
    references/writing-rules.md
    .
  5. Build and check.
    make paper P=<slug>
    , verify page limits and format rules from
    venue.md
    , run
    make check
    .
  6. Recommend an adversarial-review pass before any submission.
  1. 会议/期刊选择:若尚未确定目标会议/期刊,需结合
    references/venue-fit.md
    与用户对比候选选项。填写
    venue.md
    文件:包含会议/期刊名称、投稿赛道、截止日期、页数/格式规则、匿名政策、模板来源,以及会议/期刊特定的标识/成果要求——所有信息必须来自正式的征稿通知,绝不能凭记忆填写。
  2. 论文框架搭建:撰写
    framing.md
    文件:包含论文叙事逻辑、核心论点,哪些研究贡献支撑哪些论点以及各自提供的内容,还有明确界定的研究范围外内容。每个论点都必须对应一项研究贡献或基于调研的证据。
  3. 模板配置:将会议/期刊的官方LaTeX模板导入
    manuscript/
    目录;将入口文件重命名为
    main.tex
    。使用会议/期刊模板类指定的参考文献系统(bibtex/natbib或biblatex),通过相对路径读取根目录下的
    references.bib
    文件。基础稿件默认采用数字编号格式(biblatex);最终格式由会议/期刊模板类决定。根目录的
    references.bib
    文件与调研内容(作者-年份格式)共用——参考文献格式按文档设置,而非按条目设置;研究贡献报告保持数字编号格式。
  4. 论文撰写:逐节撰写:相关研究工作从调研内容中提炼(按主题分类,绝不能逐篇罗列论文);研究方法/结果来自研究贡献报告及其配图;所有
    \cite{}
    引用必须能在根目录的
    .bib
    文件中找到对应条目。遵循
    references/writing-rules.md
    中的规范。
  5. 编译与检查:执行
    make paper P=<slug>
    命令,验证是否符合
    venue.md
    中规定的页数限制和格式规则,运行
    make check
    命令进行检查。
  6. 建议在投稿前进行一轮模拟同行评审(adversarial-review)。

External Mode (Overleaf)

外部模式(Overleaf)

When the user asks to work on an external LaTeX project (e.g. a collaborator's Overleaf), use the overleaf MCP if configured: read or contribute to that project directly. Nothing in this scaffold depends on the external project; treat it as a foreign workspace, and apply
references/writing-rules.md
there too.
当用户要求处理外部LaTeX项目(例如合作者的Overleaf项目)时,若已配置Overleaf MCP,则直接使用该工具读取或参与该项目。本框架不依赖任何外部项目;将其视为独立工作区,并同样遵循
references/writing-rules.md
中的规范。

Rules

规则

  • A claim enters the manuscript only with its evidence: a contribution, a survey-grounded citation, or an explicitly labeled open question.
  • Never invent or restyle bibliography entries; a missing entry means missing SOTA work — stop and report.
  • Figures come from contribution folders; copy them in, never recreate data by hand.
  • 论文中引入的每个论点都必须附带证据:一项研究贡献、基于调研的引用文献,或明确标注的开放问题。
  • 绝不能编造或修改参考文献条目;缺失的条目意味着遗漏了前沿研究(SOTA)——需立即停止并汇报。
  • 配图来自研究贡献文件夹;直接复制使用,绝不能手动重新生成数据。

Done When

完成标准

  • venue.md
    and
    framing.md
    complete, the manuscript builds clean on the venue template within its limits,
    make check
    passes
  • venue.md
    framing.md
    文件填写完成,稿件可基于会议/期刊模板顺利编译且符合各项限制,
    make check
    命令执行通过