almost finished
This commit is contained in:
parent
27ffdfedf6
commit
966d1ec175
13 changed files with 760 additions and 494 deletions
13
1.0.0/example/bibliography.bib
Normal file
13
1.0.0/example/bibliography.bib
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
// You can use LaTeX's bibliography format per default
|
||||
// or
|
||||
// Typst's Hayagriva:
|
||||
// https://github.com/typst/hayagriva/blob/main/docs/file-format.md
|
||||
|
||||
@software{Garcia2025Slides,
|
||||
author = {Ernesto Martínez García},
|
||||
year = {2025},
|
||||
month = {8},
|
||||
title = {{ISEC Slides Typst Template}},
|
||||
url = {https://github.com/ecomaikgolf/typst-isec-slides-template},
|
||||
urldate = {2025-08-31}
|
||||
}
|
||||
1
1.0.0/example/slides.pdfpc
Normal file
1
1.0.0/example/slides.pdfpc
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"pdfpcFormat":2,"disableMarkdown":false,"pages":[{"idx":1,"label":"1","overlay":0,"forcedOverlay":false,"hidden":false,"note":"This is a note that only the speaker will see."},{"idx":2,"label":"2","overlay":0,"forcedOverlay":false,"hidden":false,"note":"\n This note will appear on pdfpc's presenter mode. Lets see how long it can be lol\n\n It even supports multiline!\n "},{"idx":3,"label":"3","overlay":0,"forcedOverlay":false,"hidden":false},{"idx":4,"label":"4","overlay":0,"forcedOverlay":false,"hidden":false},{"idx":5,"label":"5","overlay":0,"forcedOverlay":false,"hidden":false}]}
|
||||
103
1.0.0/example/slides.typ
Normal file
103
1.0.0/example/slides.typ
Normal file
|
|
@ -0,0 +1,103 @@
|
|||
#import "../src/lib.typ": *
|
||||
//#import "@local/definitely-not-isec-slides:1.0.0": *
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Configuration
|
||||
// ----------------------------------------------------------------------------
|
||||
#show: definitely-not-isec-theme.with(
|
||||
aspect-ratio: "16-9",
|
||||
progress-bar: true,
|
||||
config-info(
|
||||
title: [Long Paper Title \ with One to Three Lines],
|
||||
subtitle: [An optional short subtitle],
|
||||
authors: ([*First Author*], [Second Author], [Third Author]),
|
||||
extra: [SomeConf 2025],
|
||||
footer: [First Author, Second Author, Third Author],
|
||||
download-qr: "",
|
||||
),
|
||||
config-common(
|
||||
handout: false,
|
||||
),
|
||||
)
|
||||
// -------------------------------[[ CUT HERE ]]--------------------------------
|
||||
//
|
||||
// #title-slide()
|
||||
//
|
||||
// #slide(alignment: top, title: [...])
|
||||
//
|
||||
// #standout-slide()
|
||||
// #section-slide()
|
||||
// #blank-slide()
|
||||
//
|
||||
|
||||
// -------------------------------[[ CUT HERE ]]--------------------------------
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Slides
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
#show cite: set text(fill: tugcolors.main)
|
||||
|
||||
#title-slide()
|
||||
|
||||
#slide(alignment: top, title: [First Slide])[
|
||||
|
||||
#quote-block(spacing: 0.3em)[
|
||||
#lorem(10)
|
||||
]
|
||||
|
||||
#lorem(10)
|
||||
|
||||
#color-block([Symmetric])[
|
||||
This looks much better
|
||||
]
|
||||
|
||||
#lorem(10)
|
||||
|
||||
#columns(2)[
|
||||
#icon-block([Symmetric], "ad-circle")[
|
||||
This looks much better
|
||||
]
|
||||
|
||||
#color-block([Symmetric])[
|
||||
This looks much better
|
||||
]
|
||||
]
|
||||
|
||||
#pdfpc.speaker-note("This is a note that only the speaker will see.")
|
||||
|
||||
]
|
||||
|
||||
#slide(alignment: top, title: [First Slide], outlined: false)[
|
||||
|
||||
#quote-block[
|
||||
#lorem(20)
|
||||
]
|
||||
|
||||
Thus, by using common sense we can deduce that
|
||||
|
||||
#note("
|
||||
This note will appear on pdfpc's presenter mode. Lets see how long it can be lol
|
||||
|
||||
It even supports multiline!
|
||||
")
|
||||
]
|
||||
|
||||
|
||||
#section-slide(title: [Conclusions], subtitle: [Final Section])
|
||||
|
||||
|
||||
#blank-slide[
|
||||
A blank canvas for memes
|
||||
]
|
||||
|
||||
|
||||
#standout-slide(title: [But what if...?])
|
||||
|
||||
|
||||
#slide(title: [Bibliography], alignment: top)[
|
||||
#bibliography("bibliography.bib")
|
||||
]
|
||||
|
||||
|
||||
#title-slide()
|
||||
Loading…
Add table
Add a link
Reference in a new issue