Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion spec/book.typ
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#let meta = (
title: "Lambda VM specification",
authors: ("3MI Labs", "Aligned"),
version: "0.2",
summary: (
("logup.typ", [LogUp argument], <logup>),
("memory.typ", [Memory argument], <memory>),
Expand All @@ -31,7 +32,7 @@
#book-meta(
title: meta.title,
authors: meta.authors,
summary: meta.summary.map(((ch, title, _ref)) => chapter(ch, title)).join()
summary: prefix-chapter("front.typ", meta.title) + meta.summary.map(((ch, title, _ref)) => chapter(ch, title)).join()
)

#let common-formatting(body) = {
Expand Down
2 changes: 2 additions & 0 deletions spec/ebook.typ
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
#set document(author: meta.authors, title: meta.title)

#align(center, title(meta.title))
#align(center, text(style: "italic", fill: luma(40%))[Version #meta.version])
#align(center, meta.authors.join(", "))
#pagebreak(weak: true)
#outline()

Expand Down
11 changes: 11 additions & 0 deletions spec/front.typ
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#import "/book.typ": project, meta

#show: project.with(title: "", cond: () => true)

#align(center, title(meta.title))
#align(center)[_Version #meta.version _]
#align(center, meta.authors.join(", "))


This is the specification for the #link("https://github.com/yetanotherco/lambda_vm/")[Lambda verifiable vm].

Loading