forked from pencelheimer/typst_nure_template
52 lines
1012 B
Typst
52 lines
1012 B
Typst
#import "@local/test-multifile:0.1.0" as nure
|
||
|
||
#import nure.utils: *
|
||
#import nure.style
|
||
|
||
// #set document(title: "Тест лейаутів", author: "Іванов І.І.")
|
||
|
||
#let authors = (
|
||
(
|
||
name: "Іванов І.І.",
|
||
full_name_gen: "Іванова Івана Івановича",
|
||
edu_program: "КУІБ",
|
||
group: "23-1",
|
||
gender: "m",
|
||
variant: 5,
|
||
),
|
||
)
|
||
|
||
#let mentors = (
|
||
(name: "Петров П.П.", degree: "доцент кафедри ІКІ", gender: "m"),
|
||
)
|
||
|
||
// Тест default лейауту
|
||
#show: nure.pz-lb.with(
|
||
layout: "complex",
|
||
subject: "БД",
|
||
edu-program: "КУІБ",
|
||
type: "ЛБ",
|
||
number: 2,
|
||
title: "SQL запити",
|
||
authors: authors,
|
||
mentors: mentors,
|
||
)
|
||
|
||
#bold(lorem(10))
|
||
#pagebreak()
|
||
|
||
// Тест simple лейауту
|
||
// #show: pz-lb.with(
|
||
// layout: "minimal",
|
||
// subject: "БД",
|
||
// type: "ЛБ",
|
||
// number: 2,
|
||
// title: "SQL запити",
|
||
// authors: authors,
|
||
// mentors: mentors,
|
||
// )
|
||
|
||
#show: style.appendices
|
||
= #lorem(5)
|
||
|