Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions neurips/neurips2023.typ
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
script: font-defaults.scriptsize,
)

#let equal_footnote_created = state("equal_footnote_created", false)

#let make_figure_caption(it) = {
set align(center)
block(context {
Expand Down Expand Up @@ -121,6 +123,16 @@
}
let indices = affl.map(it => str(affl2idx.at(it))).join(" ")
let result = strong(author.name)
if author.at("equal", default: false) {
result += context [
#if equal_footnote_created.get() [
#footnote(numbering: "*", <equal-contribution>)
] else [
#equal_footnote_created.update(_ => true)
#footnote(numbering: "*")[Equal contribution.]<equal-contribution>
]
]
}
if affilated {
result += super(typographic: false, indices)
}
Expand Down Expand Up @@ -427,6 +439,8 @@
make-authors(authors, affls)
v(0.3in - 0.1in)
})
// Reset footnote counter
counter(footnote).update(0)

// Vertical spacing between authors and abstract.
v(6.5pt) // Original 0.075in.
Expand Down