Files
Wallenc/Report/appendices/tz-pdf.typ

19 lines
395 B
Typst
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Вставка полного ТЗ (PDF практики) в приложение Б.
#let tz-pdf-file = "ПытковРЕ ТЗ на ПО.pdf"
#let tz-pdf-pages = 14
#let pz-embed-tz-pdf() = {
for i in range(tz-pdf-pages) {
let p = i + 1
if p > 1 {
pagebreak(weak: true)
}
image(
tz-pdf-file,
page: p,
width: 100%,
fit: "contain",
)
}
}