COLT Supplementary
COLT's "supplementary material" is the appendix of the same PDF: the 2026 CFP (checked
2026-07-08) capped the main body at 12 PMLR-formatted pages excluding references and
put no page limit on references and appendices, with the entire manuscript
submitted as a single file. There is no separate upload, no later supplement deadline,
and no distinction between "appendix" and "supplement" — which changes how you should
architect the document compared to venues with detached supplements.
Consequences of the single-PDF model
- The appendix is unambiguously part of the reviewed record; referees are choosing to
read it, not to download it. Lower the cost of that choice.
- Nothing can be added after the deadline. A proof hole discovered post-submission
cannot be patched by a supplement upload the way an artifact fix sometimes can
elsewhere.
- Length is free but attention is not: a 60-page appendix is normal at COLT, a
disorganized one is a soft reject, because the referee's verification budget is the
binding constraint.
The 12-page split decision
What must stay in the body:
- Formal problem setup: the model, the interaction protocol, the adversary or
distributional assumptions, and the performance measure — complete, not "see
Appendix A for the model."
- Every main theorem statement, with all hypotheses visible.
- A proof overview per main theorem: the decomposition, the key lemma, and the step
where prior techniques fail. This is what earns the referee's appendix time.
- The comparison to nearest prior bounds (a small table often beats prose).
What belongs in the appendix: full proofs, auxiliary lemmas, generalized statements,
deferred case analyses, extended related work, and any numerical-illustration details.
Appendix architecture that referees can verify
| Appendix section |
Contents |
Referee use pattern |
| A. Notation and preliminaries |
Symbol table, standard inequalities used |
Consulted repeatedly; keep to 2-3 pages |
| B. Proof of Theorem 1 |
Restated theorem, roadmap paragraph, main lemmas, proof |
Read linearly, checked line by line |
| C. Proof of Theorem 2 |
Same pattern |
Read only if Theorem 2 matters to the referee |
| D. Auxiliary lemmas |
Technical facts shared across proofs |
Jumped to via references |
| E. Deferred discussion / numerics |
Extensions, illustration details |
Skimmed |
Ordering rule: appendix sections mirror body theorem order, and each proof section is
self-contained modulo Appendix A and D — a referee verifying Theorem 2 must never need
to have read the proof of Theorem 1 unless the dependency is real and declared.
Restatement discipline
Restate every theorem and lemma before its appendix proof, with identical numbering,
via a restatable environment rather than copy-paste (drift between two hand-maintained
copies of a theorem is a notorious COLT embarrassment):
\usepackage{thmtools, thm-restate}
\declaretheorem[name=Theorem]{theorem}
% In the body:
\begin{restatable}{theorem}{mainregret}\label{thm:main}
Under Assumptions 1--2, ALG attains $R_T = O(\sqrt{dT\log K})$.
\end{restatable}
% In Appendix B:
\mainregret* % re-renders Theorem 1 verbatim, same number
\begin{proof}
We decompose the regret as ... (roadmap sentence first, then the argument).
\end{proof}
Roadmap paragraphs are load-bearing
Open each major appendix proof with 4-6 sentences: the decomposition, what each lemma
contributes, where the novelty sits, and which steps are routine. Referees use the
roadmap to allocate verification effort; proofs without one get either shallow reads
(bad for credit) or suspicious reads (bad for scores).
Vignette: splitting a two-theorem online-learning paper
A draft proves an upper bound (algorithm + potential argument, 14 pages of proof) and
a lower bound (instance family + information argument, 9 pages), plus one simulation.
The COLT-shaped split:
- Body: protocol and definitions (2 pp), both theorem statements with remarks
(2.5 pp), upper-bound overview with the potential function displayed and one key
lemma proved in full (3 pp), lower-bound overview with the instance family drawn
as a figure (2 pp), related-work table and discussion (1.5 pp), simulation figure
with a two-sentence reading (0.5 pp), intro (1.5 pp) — twelve and a half, so the
second remark and one corollary move to the appendix to make twelve.
- Appendix: A notation; B full upper-bound proof (restated theorem, roadmap, lemmas);
C full lower-bound proof; D auxiliary facts; E simulation procedure.
- The key-lemma-in-body choice is deliberate: proving one central lemma completely in
the body demonstrates the paper's proof standard where every referee will read it.
Common appendix defects at COLT
- Lemma used before it is stated anywhere, forcing a forward hunt.
- "By a standard argument" covering the one step that is actually new.
- Notation redefined locally inside an appendix section, colliding with Appendix A.
- Case analyses whose cases do not visibly exhaust the space.
- Cross-references into the body by page number instead of by label (page numbers
shift when the class file changes at camera-ready).
- Illustration figures buried between proofs, breaking the verification flow — give
numerics their own terminal section.
Cycle-volatility warnings
- The unlimited-appendix, single-PDF rule is the 2026 formulation; earlier cycles
phrased limits differently and later ones may again (待核实 in each CFP).
- If a cycle ever adds a separate supplement channel or reviewable-code slot, its CFP
will say so; do not assume either from this file.
Output format
[Split verdict] body self-contained / decision-critical material trapped in appendix
[Appendix map] <section -> theorem it serves>
[Restatement check] restatable environments / copy-paste risk
[Roadmaps] present for <k>/<n> major proofs
[Top structural fix] <one reorganization with highest referee payoff>
1---2name: colt-supplementary3description: Use when structuring the appendix of a COLT (Conference on Learning Theory) submission — the unlimited-length proof appendix inside the single PDF — covering body/appendix splitting for a 12-page limit, theorem restatement discipline, lemma ordering, notation tables, and what referees expect to find where.4---56# COLT Supplementary78COLT's "supplementary material" is the appendix of the same PDF: the 2026 CFP (checked92026-07-08) capped the main body at 12 PMLR-formatted pages excluding references and10put **no page limit on references and appendices**, with the entire manuscript11submitted as a single file. There is no separate upload, no later supplement deadline,12and no distinction between "appendix" and "supplement" — which changes how you should13architect the document compared to venues with detached supplements.1415## Consequences of the single-PDF model1617- The appendix is unambiguously part of the reviewed record; referees are choosing to18 read it, not to download it. Lower the cost of that choice.19- Nothing can be added after the deadline. A proof hole discovered post-submission20 cannot be patched by a supplement upload the way an artifact fix sometimes can21 elsewhere.22- Length is free but attention is not: a 60-page appendix is normal at COLT, a23 disorganized one is a soft reject, because the referee's verification budget is the24 binding constraint.2526## The 12-page split decision2728What must stay in the body:2930- Formal problem setup: the model, the interaction protocol, the adversary or31 distributional assumptions, and the performance measure — complete, not "see32 Appendix A for the model."33- Every main theorem statement, with all hypotheses visible.34- A proof overview per main theorem: the decomposition, the key lemma, and the step35 where prior techniques fail. This is what earns the referee's appendix time.36- The comparison to nearest prior bounds (a small table often beats prose).3738What belongs in the appendix: full proofs, auxiliary lemmas, generalized statements,39deferred case analyses, extended related work, and any numerical-illustration details.4041## Appendix architecture that referees can verify4243| Appendix section | Contents | Referee use pattern |44|---|---|---|45| A. Notation and preliminaries | Symbol table, standard inequalities used | Consulted repeatedly; keep to 2-3 pages |46| B. Proof of Theorem 1 | Restated theorem, roadmap paragraph, main lemmas, proof | Read linearly, checked line by line |47| C. Proof of Theorem 2 | Same pattern | Read only if Theorem 2 matters to the referee |48| D. Auxiliary lemmas | Technical facts shared across proofs | Jumped to via references |49| E. Deferred discussion / numerics | Extensions, illustration details | Skimmed |5051Ordering rule: appendix sections mirror body theorem order, and each proof section is52self-contained modulo Appendix A and D — a referee verifying Theorem 2 must never need53to have read the proof of Theorem 1 unless the dependency is real and declared.5455## Restatement discipline5657Restate every theorem and lemma before its appendix proof, with identical numbering,58via a restatable environment rather than copy-paste (drift between two hand-maintained59copies of a theorem is a notorious COLT embarrassment):6061```latex62\usepackage{thmtools, thm-restate}6364\declaretheorem[name=Theorem]{theorem}6566% In the body:67\begin{restatable}{theorem}{mainregret}\label{thm:main}68Under Assumptions 1--2, ALG attains $R_T = O(\sqrt{dT\log K})$.69\end{restatable}7071% In Appendix B:72\mainregret* % re-renders Theorem 1 verbatim, same number73\begin{proof}74We decompose the regret as ... (roadmap sentence first, then the argument).75\end{proof}76```7778## Roadmap paragraphs are load-bearing7980Open each major appendix proof with 4-6 sentences: the decomposition, what each lemma81contributes, where the novelty sits, and which steps are routine. Referees use the82roadmap to allocate verification effort; proofs without one get either shallow reads83(bad for credit) or suspicious reads (bad for scores).8485## Vignette: splitting a two-theorem online-learning paper8687A draft proves an upper bound (algorithm + potential argument, 14 pages of proof) and88a lower bound (instance family + information argument, 9 pages), plus one simulation.89The COLT-shaped split:9091- Body: protocol and definitions (2 pp), both theorem statements with remarks92 (2.5 pp), upper-bound overview with the potential function displayed and one key93 lemma proved in full (3 pp), lower-bound overview with the instance family drawn94 as a figure (2 pp), related-work table and discussion (1.5 pp), simulation figure95 with a two-sentence reading (0.5 pp), intro (1.5 pp) — twelve and a half, so the96 second remark and one corollary move to the appendix to make twelve.97- Appendix: A notation; B full upper-bound proof (restated theorem, roadmap, lemmas);98 C full lower-bound proof; D auxiliary facts; E simulation procedure.99- The key-lemma-in-body choice is deliberate: proving one central lemma completely in100 the body demonstrates the paper's proof standard where every referee will read it.101102## Common appendix defects at COLT103104- Lemma used before it is stated anywhere, forcing a forward hunt.105- "By a standard argument" covering the one step that is actually new.106- Notation redefined locally inside an appendix section, colliding with Appendix A.107- Case analyses whose cases do not visibly exhaust the space.108- Cross-references into the body by page number instead of by label (page numbers109 shift when the class file changes at camera-ready).110- Illustration figures buried between proofs, breaking the verification flow — give111 numerics their own terminal section.112113## Cycle-volatility warnings114115- The unlimited-appendix, single-PDF rule is the 2026 formulation; earlier cycles116 phrased limits differently and later ones may again (待核实 in each CFP).117- If a cycle ever adds a separate supplement channel or reviewable-code slot, its CFP118 will say so; do not assume either from this file.119120## Output format121122```text123[Split verdict] body self-contained / decision-critical material trapped in appendix124[Appendix map] <section -> theorem it serves>125[Restatement check] restatable environments / copy-paste risk126[Roadmaps] present for <k>/<n> major proofs127[Top structural fix] <one reorganization with highest referee payoff>128```