generated from me/guix-typst-template
21 lines
614 B
Typst
21 lines
614 B
Typst
#let page_essay_heading(
|
|
author_name: (
|
|
first: "",
|
|
last: "",
|
|
),
|
|
instructor_name: "",
|
|
class: "",
|
|
) = {
|
|
import "base/grid.typ": page_essay_base_grid
|
|
import "heading/author.typ": page_essay_heading_author
|
|
import "heading/instructor.typ": page_essay_heading_instructor
|
|
import "heading/class.typ": page_essay_heading_class
|
|
import "heading/date.typ": page_essay_heading_date
|
|
|
|
page_essay_base_grid(
|
|
page_essay_heading_author(name: author_name),
|
|
page_essay_heading_instructor(name: instructor_name),
|
|
page_essay_heading_class(identifier: class),
|
|
page_essay_heading_date(),
|
|
)
|
|
}
|