add typst document for bpv qrs

This commit is contained in:
Arthur Grisel-Davy 2023-06-13 14:44:19 -04:00
parent 1c4eee4a87
commit f20570f5d0
10 changed files with 4719 additions and 0 deletions

22
BPV/qrs/utils.typ Normal file
View file

@ -0,0 +1,22 @@
// Comment macros
#let agd(content) = {
text(blue, size:15pt)[#sym.star.filled]
[#footnote[agd: #content]]
}
#let cn = text(purple,size:15pt)[ #super[citation needed]]
// problem statement environment
// Usage:
// #ps(title: "Boot Process Verification",
// content: "Given a set of time series..."
// )<ps:label>
#let ps_counter = counter("ps_counter")
#let ps(content, title: none) = [
#ps_counter.step()
#pad(y: 10pt,[
*Problem Statement #ps_counter.display() (#title)*:
#content
])
]