-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathexample_final.typ
More file actions
94 lines (66 loc) · 1.49 KB
/
Copy pathexample_final.typ
File metadata and controls
94 lines (66 loc) · 1.49 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#import "final.typ": conf, resumen, dedicatoria, agradecimientos, start-doc, end-doc, capitulo, apendice
#import "metadata.typ": example-metadata
#show: conf.with(metadata: example-metadata)
#resumen(metadata: example-metadata)[
#lorem(150)
#lorem(100)
#lorem(100)
]
#dedicatoria[
Una dedicatoria especial para alguien especial.
]
#agradecimientos[
#lorem(150)
#lorem(100)
#lorem(100)
]
#show: start-doc
#capitulo(title: "Introducción")[
#lorem(100)
#lorem(100)
#lorem(100)
]
#capitulo(title: "Segundo")[
#lorem(100)
#lorem(50)
#figure(
table(
columns: 3,
"Campo 1", "Campo 2", "Num",
"Valor 1a", "Valor 2a", "3",
"Valor 1b", "Valor 2b", "3",
),
caption: "Tabla 1",
)
#figure(
table(
columns: 3,
"Campo 1", "Campo 2", "Num",
"Valor 1a", "Valor 2a", "3",
"Valor 1b", "Valor 2b", "3",
),
caption: "Tabla 2",
)
#lorem(100)
]
#capitulo(title: "Tercero")[
#lorem(100)
#lorem(50) @CorlessJK97 @Turing38
#figure(
image("imagenes/institucion/fcfm.svg", width: 20%),
caption: "Logo de la facultad",
)
#lorem(100)
@NewmanT42
]
#capitulo(title: "Conclusión")[
#lorem(100)
#lorem(100)
#lorem(100)
]
#show: end-doc
#apendice(title: "Anexo")[
#lorem(100)
#lorem(100)
#lorem(100)
]