-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample_paper.typ
73 lines (53 loc) · 1.62 KB
/
example_paper.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#import "./toolbox/paper.typ": *
#show: project.with(
title: "Main Title of this Paper",
subtitle: ": "+"Optional Paper´s Subtitle",
date: "Date of publishing",
abstract: lorem(70),
keywords: [Keyword1; keyword2; keyword3.],
authors:
(
( name: "Author #1 Name",
affiliation: "Course Name\n University Name",
email: "email@organization"
),
( name: "Author #2 Name",
affiliation: "Course Name\n University Name",
email: "email@organization"
),
),
)
#set cite(style: "chicago-author-date")
#section_[Introduction]
#lorem(30) #footnote[#footciteref(<Peters2000>)]
#lorem(30)
= Modernism and Post-Modernism
#lorem(40)
#myfigure("../img/finishline.jpg",
width: 45%,
caption: [Linha de chegada] ,
source: "Free pics website."
)
#lorem(30)
== Modernism in Arts
#lorem(30)
#lorem(30)
#myfigure("../img/ufpa.png",
width: 25%,
caption: [University´s logo],
source: "Institutional website of UFPa "
)
#lorem(45) #footnote[#lorem(30)]
== Modernism in Philosophy
#lorem(25) Citation #citeonline(<Lyotard2009>)
#lorem(125)
== Pós-modernism in Philosophy
#lorem(40) @Peters2000[p.10] @Lyotard2009
Eaxample uses of citation:
1. #citeonline(<Lyotard2009>, supplement: "p. 97")
2. #citeonline(<Lyotard2009>)
3. #cite(<Peters2000>, supplement: "p. 245")
4. @Peters2000[p. 45]
// Bibliography section
#set par(first-line-indent: 0mm, hanging-indent: 8mm, leading: 0.6em) // format tweak
#bibliography("./references/refs.bib", title: "Referências", style: "./references/abnt-ufrgs.csl")