-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathiclr.typ
46 lines (44 loc) · 1.09 KB
/
iclr.typ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* iclr.typ
*/
#import "/iclr2025.typ": iclr2025
/**
* iclr - Template for International Conference on Learning Representations
* (ICLR).
*
* Args:
* title: Paper title.
* authors: Tuple of author objects and affilation dictionary.
* keywords: Publication keywords (used in PDF metadata).
* date: Creation date (used in PDF metadata).
* abstract: Paper abstract.
* bibliography: Bibliography content. If it is not specified then there is
* not reference section.
* appendix: Content to append after bibliography section.
* accepted: Valid values are `none`, `false`, and `true`. Missing value
* (`none`) is designed to prepare arxiv publication. Default is `false`.
* id: Submission identifier.
*/
#let iclr(
title: [],
authors: (),
keywords: (),
date: auto,
abstract: [],
bibliography: none,
appendix: none,
accepted: false,
body,
) = {
show: iclr2025.with(
title: title,
authors: authors,
keywords: keywords,
date: date,
abstract: abstract,
bibliography: bibliography,
appendix: appendix,
accepted: accepted,
)
body
}