Отдельные документы о тестировании

This commit is contained in:
2026-05-28 18:07:46 +03:00
parent 32c579e0c0
commit f7023380b3
23 changed files with 141922 additions and 71 deletions

View File

@@ -0,0 +1,48 @@
// Общая обёртка для автономных PDF по разделу тестирования (без полного оформления ГОСТ ВКР).
#let testing-export-doc(
title: "",
criterion: "",
body,
) = {
set page(
paper: "a4",
margin: (left: 3cm, right: 1.5cm, top: 2cm, bottom: 2cm),
numbering: "1",
)
set text(font: "Times New Roman", size: 14pt, lang: "ru")
set par(first-line-indent: 1.25cm, justify: true, leading: 0.65em)
set heading(numbering: "1.1")
show figure.where(kind: table): set block(breakable: true)
show heading.where(level: 1): it => {
set text(size: 16pt, weight: "bold")
align(center)[#it.body]
v(0.75em)
counter(heading).step(level: 2)
}
show heading.where(level: 2): it => {
set text(size: 14pt, weight: "bold")
v(0.5em)
it
v(0.35em)
}
show heading.where(level: 3): it => {
set text(size: 14pt, weight: "bold", style: "italic")
it
v(0.25em)
}
align(center)[
#text(size: 12pt)[
Фрагмент пояснительной записки ВКР\
«Мобильное приложение для защищённого хранения пользовательских данных» (Wallenc)
]
#v(0.4em)
#text(size: 11pt, style: "italic")[#criterion]
#v(0.6em)
#text(size: 16pt, weight: "bold")[#title]
#v(1.2em)
]
body
}