-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcvpr2025.typ
53 lines (50 loc) · 1.21 KB
/
cvpr2025.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
/**
* cvpr2025.typ
*
* CVPR 2025 template.
*/
#import "/cvpr2022.typ": cvpr2022
#let conf-year = [2025]
/**
* cvpr2025 - Template for Computer Vision and Pattern Recognition Conference
* (CVPR) 2025.
*
* 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 cvpr2025(
title: [],
authors: (),
keywords: (),
date: auto,
abstract: [],
bibliography: none,
appendix: none,
accepted: false,
id: none,
body,
) = {
show: cvpr2022.with(
title: title,
authors: authors,
keywords: keywords,
date: date,
abstract: abstract,
bibliography: bibliography,
appendix: appendix,
accepted: accepted,
id: id,
aux: (conf-year: [2025]),
)
body
}