Last active
June 17, 2024 17:51
-
-
Save vtta/1891bf6c64f3efd1eb8a0dad45648ffb to your computer and use it in GitHub Desktop.
https://typst.app/ template for USENIX paper submission
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// - No longer than 12 single-spaced 8.5" x 11" pages, including figures and tables, plus as many pages as needed for references. | |
// - Submissions may include as many additional pages as needed for references but not for supplementary material in appendices. | |
// - Use 10-point type on 12-point (single-spaced) leading and Times Roman or a similar font for the body of the paper. | |
// - All text and figures fit inside a 7" x 9" (178 mm x 229 mm) block centered on the page, using two columns separated by 0.33" (8 mm) of whitespace. All graphs and figures should be readable when printed in black and white. | |
// - Papers not meeting these criteria will be rejected without review, and no deadline extensions will be granted for reformatting. | |
// - Pages should be numbered, and figures and tables should be legible in black and white, without requiring magnification. | |
// - The paper review process is double-blind. Authors must make a good faith effort to anonymize their submissions, and they should not identify themselves either explicitly or by implication (e.g., through the references or acknowledgments). Submissions violating the detailed formatting and anonymization rules will not be considered for review. If you are uncertain about how to anonymize your submission, please contact the program co-chairs, [email protected], well in advance of the submission deadline. | |
#let usenix(title: "", authors: (), references: "", abstract, body) = { | |
// Set the document's basic properties. | |
set document(author: authors.map(a => a.name), title: title) | |
set page(paper: "us-letter", margin: (x: 0.75in, y: 1in), numbering: "1") | |
set text(font: "Times", lang: "en", size: 10pt) | |
// Title row. | |
align(center)[#block(text(weight: "bold", 14pt, title))] | |
// Author information. | |
pad( | |
y: 12pt, | |
grid( | |
columns: (1fr,) * calc.min(3, authors.len()), | |
gutter: 12pt, | |
..authors.map(author => | |
align(center, text(size: 10pt)[ | |
#author.name \ | |
_ #author.affiliation _])))) | |
// Set heading format | |
show heading.where(level: 1): set text(size: 12pt) | |
show heading: set text(size: 10pt) | |
set heading(numbering: "1.") | |
// Set paragraph spacing. | |
show par: set block(above: 6pt, below: 8pt) | |
// Abstract and main body. | |
set par(leading: 6pt, justify: true) | |
show: columns.with(2, gutter: 0.33in) | |
align(center)[ | |
#set heading(numbering: none) | |
= Abstract | |
] | |
abstract | |
body | |
// Bibliography | |
colbreak(weak: true) | |
bibliography(references, title: "References", style: "ieee") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Create 3 files, 1, main.typ, 2. usenix.typ, 3. references.bib