-
Notifications
You must be signed in to change notification settings - Fork 6
/
cvpr.typ
55 lines (53 loc) · 1.38 KB
/
cvpr.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
47
48
49
50
51
52
53
54
55
/**
* cvpr.typ
*
* Templates for Computer Vision and Pattern Recognition Conference (CVPR)
* series.
*/
#import "/cvpr2022.typ": cvpr2022, conf-name, eg, etal, indent
#import "/cvpr2025.typ": cvpr2025, conf-year
/**
* cvpr - Template for Computer Vision and Pattern Recognition Conference
* (CVPR) series.
*
* 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.
* aux: An optional dictionary to adjust conference specific features.
*/
#let cvpr(
title: [],
authors: (),
keywords: (),
date: auto,
abstract: [],
bibliography: none,
appendix: none,
accepted: false,
id: none,
aux: (:),
body,
) = {
show: cvpr2022.with(
title: title,
authors: authors,
keywords: keywords,
date: date,
abstract: abstract,
bibliography: bibliography,
appendix: appendix,
accepted: accepted,
id: id,
aux: aux,
)
body
}