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
16 changes: 16 additions & 0 deletions charged-ieee/lib.typ
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
// The result of a call to the `bibliography` function or `none`.
bibliography: none,

// The IEEE pubid
pubid: none,

// How figures are referred to from within the text.
// Use "Figure" instead of "Fig." for computer-related publications.
figure-supplement: [Fig.],
Expand Down Expand Up @@ -232,6 +235,19 @@
v(2pt)
}

// if set, display the IEEE pubid. We place it at the bottom left of
// the first column
if pubid != none {
place(
bottom + left,
float: true,
box(
width: 100%,
align(left, text(8pt, pubid))
)
)
}

// Display the paper's contents.
body

Expand Down