-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.typ
More file actions
25 lines (23 loc) · 797 Bytes
/
main.typ
File metadata and controls
25 lines (23 loc) · 797 Bytes
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
#import "@preview/articulate-coderscompass:0.1.7": articulate-coderscompass, render-markdown
#show: articulate-coderscompass.with(
title: lorem(15),
subtitle: lorem(10),
authors: (
(name: "First Author", email: "first@coderscompass.org", affiliation: "Coders' Compass"),
(name: "Second Author", email: "second@coderscompass.org", affiliation: "Coders' Compass"),
// (name: "Third Author", email: "third@coderscompass.org", affiliation: "Coders' Compass"),
),
abstract: [
#lorem(40)
],
keywords: (
"keyword1",
"keyword2",
"keyword3",
),
version: "1.0.0",
reading-time: "6 minutes",
date: datetime.today(),
bibliography: bibliography("refs.bib", style: "institute-of-electrical-and-electronics-engineers")
)
#render-markdown(read("content.md"))