orz-paged 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +146 -0
- package/assets/app.js +413 -0
- package/assets/templates/article-page.md +71 -0
- package/assets/templates/article-section.md +83 -0
- package/assets/templates/cover-letter.md +53 -0
- package/assets/templates/cv-elegant.md +93 -0
- package/assets/templates/cv-modern.md +86 -0
- package/assets/templates/cv.md +45 -0
- package/assets/templates/exam-page.md +76 -0
- package/assets/templates/exam-section.md +59 -0
- package/assets/templates/letter.md +47 -0
- package/assets/templates/note.md +28 -0
- package/assets/templates/report-page.md +72 -0
- package/assets/templates/report-section.md +80 -0
- package/assets/themes/base.css +538 -0
- package/assets/themes/beige-decent-1.css +103 -0
- package/assets/themes/beige-decent-2.css +92 -0
- package/assets/themes/light-academic-1.css +114 -0
- package/assets/themes/light-academic-2.css +99 -0
- package/assets/themes/light-neat-1.css +90 -0
- package/assets/themes/light-neat-2.css +101 -0
- package/assets/themes/light-neat-3.css +91 -0
- package/dist/browser-entry.js +302 -0
- package/dist/cli.js +167 -0
- package/dist/doc/dynamic.js +57 -0
- package/dist/doc/elements.js +813 -0
- package/dist/doc/fonts.js +83 -0
- package/dist/doc/nyml.js +140 -0
- package/dist/doc/page-css.js +230 -0
- package/dist/doc/settings.js +390 -0
- package/dist/doc/templates.js +147 -0
- package/dist/doc/theme-fonts.js +10 -0
- package/dist/orz-paged.browser.js +1524 -0
- package/dist/paged.js +31 -0
- package/dist/render-paged.js +123 -0
- package/dist/template.js +242 -0
- package/dist/types.js +11 -0
- package/orz-paged-skills/SKILL.md +547 -0
- package/package.json +51 -0
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{{nyml
|
|
2
|
+
kind: document
|
|
3
|
+
template: article-section
|
|
4
|
+
}}
|
|
5
|
+
|
|
6
|
+
{{nyml
|
|
7
|
+
kind: article-title
|
|
8
|
+
title: Your Article Title Goes Here
|
|
9
|
+
subtitle: A short, descriptive subtitle for your paper
|
|
10
|
+
authors: |
|
|
11
|
+
First Author | 1,* | first.author@example.edu | 0000-0002-1825-0097
|
|
12
|
+
Second Author | 2
|
|
13
|
+
affiliations: |
|
|
14
|
+
1: Department of Example, University of Example
|
|
15
|
+
2: Institute of Example, Example City
|
|
16
|
+
notes: |
|
|
17
|
+
*: Corresponding author
|
|
18
|
+
date: June 2026
|
|
19
|
+
placement: section
|
|
20
|
+
}}
|
|
21
|
+
|
|
22
|
+
{{nyml
|
|
23
|
+
kind: abstract
|
|
24
|
+
text: |
|
|
25
|
+
Summarize your work in two or three sentences. State the problem you
|
|
26
|
+
address, the approach you took, and the headline result a reader should
|
|
27
|
+
remember. Keep it self-contained so it makes sense without the body.
|
|
28
|
+
keywords: keyword one, keyword two, keyword three
|
|
29
|
+
}}
|
|
30
|
+
|
|
31
|
+
## Introduction
|
|
32
|
+
|
|
33
|
+
Open with the context and motivation for your work. Describe the gap or open
|
|
34
|
+
question your study addresses, and end the section by stating your contribution
|
|
35
|
+
in one or two clear sentences. Replace this placeholder text with your own.
|
|
36
|
+
|
|
37
|
+
You can cite prior work informally here and expand on it in the References
|
|
38
|
+
section below. Aim for a paragraph or two that orients the reader before the
|
|
39
|
+
methods.
|
|
40
|
+
|
|
41
|
+
## Methods
|
|
42
|
+
|
|
43
|
+
Describe your approach so that it could be reproduced. Inline math renders with
|
|
44
|
+
single dollar signs — for example, the sample size $n = 120$ and a significance
|
|
45
|
+
threshold of $\alpha = 0.05$.
|
|
46
|
+
|
|
47
|
+
The table below is a placeholder; replace the rows with your own conditions.
|
|
48
|
+
|
|
49
|
+
| Condition | Parameter | Value |
|
|
50
|
+
|-----------|-----------|-------|
|
|
51
|
+
| Baseline | rate | 0.10 |
|
|
52
|
+
| Treatment | rate | 0.42 |
|
|
53
|
+
| Control | rate | 0.09 |
|
|
54
|
+
|
|
55
|
+
Display equations use double dollar signs and are centered on their own line:
|
|
56
|
+
|
|
57
|
+
$$
|
|
58
|
+
\bar{x} = \frac{1}{n} \sum_{i=1}^{n} x_i
|
|
59
|
+
$$
|
|
60
|
+
|
|
61
|
+
Explain each symbol in the surrounding text so the equation is self-explanatory.
|
|
62
|
+
|
|
63
|
+
## Results
|
|
64
|
+
|
|
65
|
+
Summarize your findings as a short list, then expand on the most important ones
|
|
66
|
+
in prose if needed.
|
|
67
|
+
|
|
68
|
+
- The treatment condition outperformed the baseline by a wide margin.
|
|
69
|
+
- The effect held across all three replicates.
|
|
70
|
+
- No significant difference was observed between the control and baseline.
|
|
71
|
+
|
|
72
|
+
## Conclusion
|
|
73
|
+
|
|
74
|
+
Restate your main finding and its significance in plain language. Note the key
|
|
75
|
+
limitations of the study and suggest one or two concrete directions for future
|
|
76
|
+
work. Close with a sentence that leaves the reader with your central takeaway.
|
|
77
|
+
|
|
78
|
+
## References
|
|
79
|
+
|
|
80
|
+
1. Author, A. B., & Author, C. D. (Year). *Title of the first referenced work.*
|
|
81
|
+
Journal or Publisher, volume(issue), pages.
|
|
82
|
+
2. Author, E. F. (Year). *Title of the second referenced work.* Journal or
|
|
83
|
+
Publisher, volume(issue), pages.
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{{nyml
|
|
2
|
+
kind: document
|
|
3
|
+
template: cover-letter
|
|
4
|
+
}}
|
|
5
|
+
|
|
6
|
+
{{nyml
|
|
7
|
+
kind: letterhead
|
|
8
|
+
organization: Your Name
|
|
9
|
+
address: |
|
|
10
|
+
123 Main Street
|
|
11
|
+
Your City, ST 00000
|
|
12
|
+
email: your.name@email.com
|
|
13
|
+
phone: (555) 123-4567
|
|
14
|
+
}}
|
|
15
|
+
|
|
16
|
+
June 29, 2026
|
|
17
|
+
|
|
18
|
+
{{nyml
|
|
19
|
+
kind: letter-inside-address
|
|
20
|
+
to: Hiring Manager
|
|
21
|
+
organization: Company Name
|
|
22
|
+
address: |
|
|
23
|
+
456 Corporate Boulevard
|
|
24
|
+
Their City, ST 00000
|
|
25
|
+
}}
|
|
26
|
+
|
|
27
|
+
Dear Hiring Manager,
|
|
28
|
+
|
|
29
|
+
I am writing to apply for the Position Title role at Company Name, which I
|
|
30
|
+
discovered through where you saw the listing. From the moment I read the job
|
|
31
|
+
description, I was excited by the chance to bring my background in your field
|
|
32
|
+
to a team known for what the company is known for. This opportunity aligns
|
|
33
|
+
closely with both my skills and the direction I want my career to take.
|
|
34
|
+
|
|
35
|
+
In my current role as Your Current Title at Current or Previous Employer, I
|
|
36
|
+
have delivered describe a concrete result or responsibility, sharpening my
|
|
37
|
+
strengths in skill one, skill two, and skill three. I am confident these
|
|
38
|
+
experiences map directly to what this position requires: name one or two key
|
|
39
|
+
requirements from the posting. I pride myself on trait or working style, and I
|
|
40
|
+
consistently turn ambiguous problems into measurable outcomes.
|
|
41
|
+
|
|
42
|
+
I would welcome the opportunity to discuss how my experience can contribute to
|
|
43
|
+
Company Name's goals. Thank you for considering my application; I have attached
|
|
44
|
+
my resume for your review and would be glad to provide any additional
|
|
45
|
+
information. I look forward to speaking with you and can be reached at the
|
|
46
|
+
phone number or email above to arrange a conversation.
|
|
47
|
+
|
|
48
|
+
{{nyml
|
|
49
|
+
kind: letter-signature
|
|
50
|
+
from: Your Name
|
|
51
|
+
closing: Sincerely
|
|
52
|
+
title: Position Title or Profession
|
|
53
|
+
}}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{{nyml
|
|
2
|
+
kind: document
|
|
3
|
+
template: cv-elegant
|
|
4
|
+
custom_css: |
|
|
5
|
+
/* CV — elegant: centered, letter-spaced name between hairlines, centered
|
|
6
|
+
small-caps section headers, borderless two-column "ledger" entries (years |
|
|
7
|
+
detail) that flow across pages. Theme-aware via tokens. */
|
|
8
|
+
.orz-el-cv-header .orz-cv-header-inner.orz-bordered { border-bottom: 0; }
|
|
9
|
+
.orz-el-cv-header {
|
|
10
|
+
text-align: center;
|
|
11
|
+
border-top: 1px solid var(--border-soft, #ddd);
|
|
12
|
+
border-bottom: 1px solid var(--border-soft, #ddd);
|
|
13
|
+
padding: 0.8em 0;
|
|
14
|
+
margin-bottom: 1.4em;
|
|
15
|
+
}
|
|
16
|
+
.orz-el-cv-header .orz-cv-top { justify-content: center; }
|
|
17
|
+
.orz-el-cv-header .orz-cv-name {
|
|
18
|
+
font-weight: 400;
|
|
19
|
+
text-transform: uppercase;
|
|
20
|
+
letter-spacing: 0.16em;
|
|
21
|
+
font-size: 1.85em;
|
|
22
|
+
color: var(--text-main, #222);
|
|
23
|
+
}
|
|
24
|
+
.orz-el-cv-header .orz-cv-title { font-style: italic; color: var(--text-muted, #666); }
|
|
25
|
+
.orz-el-cv-header .orz-cv-contacts { justify-content: center; font-size: 0.85em; gap: 0.3em 1em; }
|
|
26
|
+
.orz-doc.markdown-body h2 {
|
|
27
|
+
text-align: center;
|
|
28
|
+
font-size: 1em;
|
|
29
|
+
font-weight: 600;
|
|
30
|
+
text-transform: uppercase;
|
|
31
|
+
letter-spacing: 0.2em;
|
|
32
|
+
color: var(--text-main, #222);
|
|
33
|
+
border-bottom: 0;
|
|
34
|
+
margin: 1.7em 0 0.7em;
|
|
35
|
+
}
|
|
36
|
+
.orz-doc.markdown-body h2::after {
|
|
37
|
+
content: "";
|
|
38
|
+
display: block;
|
|
39
|
+
width: 2.5em;
|
|
40
|
+
height: 1px;
|
|
41
|
+
background: var(--accent, #999);
|
|
42
|
+
margin: 0.5em auto 0;
|
|
43
|
+
}
|
|
44
|
+
.orz-doc.markdown-body table { width: 100%; border: 0; margin: 0.2em 0; }
|
|
45
|
+
.orz-doc.markdown-body thead { display: none; }
|
|
46
|
+
.orz-doc.markdown-body td {
|
|
47
|
+
border: 0;
|
|
48
|
+
border-bottom: 1px solid var(--border-soft, #eee);
|
|
49
|
+
padding: 0.5em 0.4em;
|
|
50
|
+
vertical-align: top;
|
|
51
|
+
}
|
|
52
|
+
.orz-doc.markdown-body td:first-child {
|
|
53
|
+
white-space: nowrap;
|
|
54
|
+
width: 9em;
|
|
55
|
+
text-align: right;
|
|
56
|
+
color: var(--text-muted, #777);
|
|
57
|
+
font-variant: small-caps;
|
|
58
|
+
font-size: 0.92em;
|
|
59
|
+
}
|
|
60
|
+
.orz-doc.markdown-body .cv-skills { text-align: center; font-size: 0.95em; line-height: 1.9; }
|
|
61
|
+
}}
|
|
62
|
+
|
|
63
|
+
{{nyml
|
|
64
|
+
kind: cv-header
|
|
65
|
+
full_name: Your Name
|
|
66
|
+
title: Job Title / Professional Tagline
|
|
67
|
+
contacts: |
|
|
68
|
+
you@example.com
|
|
69
|
+
City, Country
|
|
70
|
+
linkedin.com/in/you
|
|
71
|
+
}}
|
|
72
|
+
|
|
73
|
+
A one-sentence profile, set centered and understated, introducing who you are and the work you do.
|
|
74
|
+
{{attrs[class="cv-skills"]}}
|
|
75
|
+
|
|
76
|
+
## Experience
|
|
77
|
+
|
|
78
|
+
| Years | Detail |
|
|
79
|
+
|---|---|
|
|
80
|
+
| 2022 – Present | **Senior Role**, Company Name — led the team and shipped a measurable result. |
|
|
81
|
+
| 2019 – 2022 | **Earlier Role**, Previous Company — built a core product used by many. |
|
|
82
|
+
| 2016 – 2019 | **First Role**, First Employer — delivered an improvement with a clear outcome. |
|
|
83
|
+
|
|
84
|
+
## Education
|
|
85
|
+
|
|
86
|
+
| Years | Detail |
|
|
87
|
+
|---|---|
|
|
88
|
+
| 2015 – 2019 | **Degree, Field of Study** — University Name, City. |
|
|
89
|
+
|
|
90
|
+
## Skills
|
|
91
|
+
|
|
92
|
+
Skill One · Skill Two · Skill Three · Skill Four · Skill Five · Skill Six
|
|
93
|
+
{{attrs[class="cv-skills"]}}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{{nyml
|
|
2
|
+
kind: document
|
|
3
|
+
template: cv-modern
|
|
4
|
+
custom_css: |
|
|
5
|
+
/* CV — modern: left-aligned, accent-forward, right-aligned dates, skill chips.
|
|
6
|
+
Theme-aware via tokens (falls back when a token is unset). */
|
|
7
|
+
.orz-el-cv-header .orz-cv-header-inner.orz-bordered { border-bottom: 0; }
|
|
8
|
+
.orz-el-cv-header {
|
|
9
|
+
text-align: left;
|
|
10
|
+
border-bottom: 3px solid var(--accent, #2b6cb0);
|
|
11
|
+
padding-bottom: 0.5em;
|
|
12
|
+
margin-bottom: 1.2em;
|
|
13
|
+
}
|
|
14
|
+
.orz-el-cv-header .orz-cv-top { justify-content: flex-start; }
|
|
15
|
+
.orz-el-cv-header .orz-cv-name { font-size: 2.3em; letter-spacing: -0.015em; }
|
|
16
|
+
.orz-el-cv-header .orz-cv-title { color: var(--text-muted, #666); font-size: 1.05em; }
|
|
17
|
+
.orz-el-cv-header .orz-cv-contacts { justify-content: flex-start; gap: 0.3em 1.1em; }
|
|
18
|
+
.orz-doc.markdown-body h2 {
|
|
19
|
+
font-size: 0.9em;
|
|
20
|
+
text-transform: uppercase;
|
|
21
|
+
letter-spacing: 0.14em;
|
|
22
|
+
color: var(--accent, #2b6cb0);
|
|
23
|
+
border-bottom: 0;
|
|
24
|
+
margin: 1.5em 0 0.5em;
|
|
25
|
+
}
|
|
26
|
+
.orz-doc.markdown-body h3 {
|
|
27
|
+
font-size: 1.06em;
|
|
28
|
+
margin: 0.7em 0 0.05em;
|
|
29
|
+
border-bottom: 0;
|
|
30
|
+
}
|
|
31
|
+
.orz-doc.markdown-body h3 + p { color: var(--text-muted, #555); font-style: italic; margin: 0 0 0.35em; }
|
|
32
|
+
.cv-date {
|
|
33
|
+
float: right;
|
|
34
|
+
font-weight: 400;
|
|
35
|
+
color: var(--text-muted, #777);
|
|
36
|
+
font-size: 0.88em;
|
|
37
|
+
}
|
|
38
|
+
.cv-chip {
|
|
39
|
+
display: inline-block;
|
|
40
|
+
background: var(--surface-2, #f0f2f5);
|
|
41
|
+
border: 1px solid var(--border, #e2e6ea);
|
|
42
|
+
border-radius: 999px;
|
|
43
|
+
padding: 0.12em 0.7em;
|
|
44
|
+
margin: 0.18em 0.25em 0.18em 0;
|
|
45
|
+
font-size: 0.85em;
|
|
46
|
+
}
|
|
47
|
+
}}
|
|
48
|
+
|
|
49
|
+
{{nyml
|
|
50
|
+
kind: cv-header
|
|
51
|
+
full_name: Your Name
|
|
52
|
+
title: Job Title / Professional Tagline
|
|
53
|
+
contacts: |
|
|
54
|
+
you@example.com
|
|
55
|
+
City, Country
|
|
56
|
+
linkedin.com/in/you
|
|
57
|
+
+1 555 0100
|
|
58
|
+
summary: Two-sentence pitch — who you are and the value you bring. Lead with your specialty and the kind of impact you are known for.
|
|
59
|
+
}}
|
|
60
|
+
|
|
61
|
+
## Experience
|
|
62
|
+
|
|
63
|
+
### Senior Role {{span[cv-date] 2022 – Present}}
|
|
64
|
+
|
|
65
|
+
Company Name, City
|
|
66
|
+
|
|
67
|
+
- Led a key initiative that delivered a measurable result (e.g. +X% revenue, −Y% cost).
|
|
68
|
+
- Owned a project end to end, collaborating across teams to ship on time.
|
|
69
|
+
- Mentored teammates and improved a process the whole team relied on.
|
|
70
|
+
|
|
71
|
+
### Earlier Role {{span[cv-date] 2019 – 2022}}
|
|
72
|
+
|
|
73
|
+
Previous Company, City
|
|
74
|
+
|
|
75
|
+
- Built or maintained a core product used by many people.
|
|
76
|
+
- Drove an improvement with a clear, quantified outcome.
|
|
77
|
+
|
|
78
|
+
## Education
|
|
79
|
+
|
|
80
|
+
### Degree, Field of Study {{span[cv-date] 2015 – 2019}}
|
|
81
|
+
|
|
82
|
+
University Name, City
|
|
83
|
+
|
|
84
|
+
## Skills
|
|
85
|
+
|
|
86
|
+
{{span[cv-chip] Skill One}} {{span[cv-chip] Skill Two}} {{span[cv-chip] Skill Three}} {{span[cv-chip] Skill Four}} {{span[cv-chip] Skill Five}} {{span[cv-chip] Skill Six}}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{{nyml
|
|
2
|
+
kind: document
|
|
3
|
+
template: cv
|
|
4
|
+
}}
|
|
5
|
+
|
|
6
|
+
{{nyml
|
|
7
|
+
kind: cv-header
|
|
8
|
+
full_name: Your Name
|
|
9
|
+
title: Job Title / Professional Tagline
|
|
10
|
+
contacts: |
|
|
11
|
+
you@example.com
|
|
12
|
+
City, Country
|
|
13
|
+
linkedin.com/in/you
|
|
14
|
+
+1 555 0100
|
|
15
|
+
}}
|
|
16
|
+
|
|
17
|
+
## Summary
|
|
18
|
+
|
|
19
|
+
A short, punchy two-sentence pitch describing who you are and the value you
|
|
20
|
+
bring. Highlight your specialty, years of experience, and the kind of impact you
|
|
21
|
+
are known for.
|
|
22
|
+
|
|
23
|
+
## Experience
|
|
24
|
+
|
|
25
|
+
### Job Title — Company (2022–Present)
|
|
26
|
+
|
|
27
|
+
- Led a key initiative that delivered a measurable result, e.g. increased
|
|
28
|
+
revenue, cut costs, or improved performance by a specific percentage.
|
|
29
|
+
- Owned a project end to end, collaborating across teams to ship on time.
|
|
30
|
+
- Mentored teammates and improved a process that the whole team relied on.
|
|
31
|
+
|
|
32
|
+
### Previous Job Title — Earlier Company (2019–2022)
|
|
33
|
+
|
|
34
|
+
- Built or maintained a core product or system used by many people.
|
|
35
|
+
- Drove an improvement with a clear, quantified outcome.
|
|
36
|
+
|
|
37
|
+
## Education
|
|
38
|
+
|
|
39
|
+
### Degree, Field of Study — University Name (2019)
|
|
40
|
+
|
|
41
|
+
## Skills
|
|
42
|
+
|
|
43
|
+
- **Core:** Skill One, Skill Two, Skill Three
|
|
44
|
+
- **Tools:** Tool One, Tool Two, Tool Three
|
|
45
|
+
- **Other:** Languages, Certifications, Soft Skills
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{{nyml
|
|
2
|
+
kind: document
|
|
3
|
+
template: exam-page
|
|
4
|
+
page_number_position: footer-center
|
|
5
|
+
page_number_style: page-n-of-N
|
|
6
|
+
dynamic_choices: |
|
|
7
|
+
answer-key: hide
|
|
8
|
+
}}
|
|
9
|
+
|
|
10
|
+
<!-- One source, two printouts: this is the student copy (answer-key: hide).
|
|
11
|
+
Switch to `answer-key: show` here — or use the editor's answer-key toggle —
|
|
12
|
+
to reveal the ✓ marks and model answers for the instructor key. -->
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
{{nyml
|
|
16
|
+
kind: exam-title
|
|
17
|
+
title: Course Name — Exam 1
|
|
18
|
+
subtitle: Fall Term, October Date
|
|
19
|
+
author: Instructor Name
|
|
20
|
+
duration: 60 minutes
|
|
21
|
+
total_points: 100 points
|
|
22
|
+
student_fields: |
|
|
23
|
+
Name | Student ID | Score / 100
|
|
24
|
+
instructions: |
|
|
25
|
+
**Instructions.** Read each question carefully before answering.
|
|
26
|
+
|
|
27
|
+
- Answer all questions. Multiple-choice questions are worth 5 points each; open-response questions are worth the points indicated.
|
|
28
|
+
- For multiple-choice questions, circle the single best answer.
|
|
29
|
+
- For open-response questions, write your answer in the space provided. Show all work; partial credit is awarded for correct reasoning.
|
|
30
|
+
- No calculators, notes, or electronic devices are permitted unless otherwise stated. Do not turn the page until instructed.
|
|
31
|
+
placement: page
|
|
32
|
+
}}
|
|
33
|
+
|
|
34
|
+
{{nyml
|
|
35
|
+
kind: question-mc
|
|
36
|
+
n: 1
|
|
37
|
+
pts: 5 pts
|
|
38
|
+
body: Which of the following best describes the primary concept introduced in this unit?
|
|
39
|
+
options: |
|
|
40
|
+
A. The first plausible-sounding option.
|
|
41
|
+
B. The correct option that states the concept accurately.
|
|
42
|
+
C. A close but subtly incorrect option.
|
|
43
|
+
D. An option that is clearly unrelated.
|
|
44
|
+
answer: B
|
|
45
|
+
}}
|
|
46
|
+
|
|
47
|
+
{{nyml
|
|
48
|
+
kind: question-mc
|
|
49
|
+
n: 2
|
|
50
|
+
pts: 5 pts
|
|
51
|
+
body: Given the scenario above, what is the most likely outcome?
|
|
52
|
+
options: |
|
|
53
|
+
A. An outcome that contradicts the principle.
|
|
54
|
+
B. An outcome that ignores a key assumption.
|
|
55
|
+
C. The outcome consistent with the principle.
|
|
56
|
+
D. An outcome that is only true in a special case.
|
|
57
|
+
answer: C
|
|
58
|
+
}}
|
|
59
|
+
|
|
60
|
+
{{nyml
|
|
61
|
+
kind: question-open
|
|
62
|
+
n: 3
|
|
63
|
+
pts: 10 pts
|
|
64
|
+
body: Define the key term from this unit and explain, in two or three sentences, why it matters in practice.
|
|
65
|
+
space: 5cm
|
|
66
|
+
answer: A model answer briefly defines the term and gives one concrete reason it matters, demonstrating clear understanding of the concept.
|
|
67
|
+
}}
|
|
68
|
+
|
|
69
|
+
{{nyml
|
|
70
|
+
kind: question-open
|
|
71
|
+
n: 4
|
|
72
|
+
pts: 10 pts
|
|
73
|
+
body: Compare and contrast the two approaches discussed in class, giving one advantage and one limitation of each.
|
|
74
|
+
space: 5cm
|
|
75
|
+
answer: A model answer names both approaches, states one genuine advantage and one genuine limitation for each, and draws a clear comparison between them.
|
|
76
|
+
}}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{{nyml
|
|
2
|
+
kind: document
|
|
3
|
+
template: exam-section
|
|
4
|
+
page_number_position: footer-center
|
|
5
|
+
page_number_style: page-n-of-N
|
|
6
|
+
dynamic_choices: |
|
|
7
|
+
answer-key: hide
|
|
8
|
+
}}
|
|
9
|
+
|
|
10
|
+
{{nyml
|
|
11
|
+
kind: exam-title
|
|
12
|
+
title: Course Name — Midterm Exam
|
|
13
|
+
subtitle: Chapter 1–4 Assessment
|
|
14
|
+
author: Instructor Name
|
|
15
|
+
student_fields: |
|
|
16
|
+
Name | Student ID | Score / 100
|
|
17
|
+
placement: section
|
|
18
|
+
}}
|
|
19
|
+
|
|
20
|
+
<!-- This template leaves the exam-title `instructions:` field empty and puts the
|
|
21
|
+
instructions at the top of the content instead — either placement works. -->
|
|
22
|
+
|
|
23
|
+
**Instructions.** Answer all questions in the space provided. Calculators are not
|
|
24
|
+
permitted, and you have 60 minutes to complete this exam.
|
|
25
|
+
|
|
26
|
+
{{nyml
|
|
27
|
+
kind: question-mc
|
|
28
|
+
n: 1
|
|
29
|
+
pts: 5 pts
|
|
30
|
+
body: Which of the following best describes the main concept covered in this section?
|
|
31
|
+
options: |
|
|
32
|
+
A. First plausible answer choice.
|
|
33
|
+
B. Second plausible answer choice.
|
|
34
|
+
C. Correct answer choice.
|
|
35
|
+
D. Fourth plausible answer choice.
|
|
36
|
+
answer: C
|
|
37
|
+
}}
|
|
38
|
+
|
|
39
|
+
{{nyml
|
|
40
|
+
kind: question-mc
|
|
41
|
+
n: 2
|
|
42
|
+
pts: 5 pts
|
|
43
|
+
body: Identify the term that matches the definition given in lecture.
|
|
44
|
+
options: |
|
|
45
|
+
A. Distractor term one.
|
|
46
|
+
B. Correct term.
|
|
47
|
+
C. Distractor term three.
|
|
48
|
+
D. Distractor term four.
|
|
49
|
+
answer: B
|
|
50
|
+
}}
|
|
51
|
+
|
|
52
|
+
{{nyml
|
|
53
|
+
kind: question-open
|
|
54
|
+
n: 3
|
|
55
|
+
pts: 10 pts
|
|
56
|
+
body: Explain the key idea in your own words and give one supporting example. Show all relevant reasoning.
|
|
57
|
+
space: 5cm
|
|
58
|
+
answer: A complete answer states the core principle, explains why it holds, and supports it with a concrete, correctly worked example. Full credit requires clear reasoning and an accurate example.
|
|
59
|
+
}}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{{nyml
|
|
2
|
+
kind: document
|
|
3
|
+
template: letter
|
|
4
|
+
}}
|
|
5
|
+
|
|
6
|
+
{{nyml
|
|
7
|
+
kind: letterhead
|
|
8
|
+
organization: Your Organization
|
|
9
|
+
address: |
|
|
10
|
+
123 Main Street, Suite 400
|
|
11
|
+
Springfield, ST 00000
|
|
12
|
+
email: hello@your-organization.example
|
|
13
|
+
phone: (555) 123-4567
|
|
14
|
+
}}
|
|
15
|
+
|
|
16
|
+
June 29, 2026
|
|
17
|
+
|
|
18
|
+
{{nyml
|
|
19
|
+
kind: letter-inside-address
|
|
20
|
+
to: Recipient Name
|
|
21
|
+
organization: Recipient Organization
|
|
22
|
+
address: |
|
|
23
|
+
456 Market Avenue
|
|
24
|
+
Metropolis, ST 11111
|
|
25
|
+
}}
|
|
26
|
+
|
|
27
|
+
Dear Recipient Name,
|
|
28
|
+
|
|
29
|
+
I am writing to introduce Your Organization and to propose a brief conversation
|
|
30
|
+
about how we might work together. Open this paragraph by stating your purpose
|
|
31
|
+
clearly and giving the reader a reason to keep reading.
|
|
32
|
+
|
|
33
|
+
Use the middle of the letter to provide the supporting details. Explain the
|
|
34
|
+
background, outline what you are asking for, and note any relevant dates or
|
|
35
|
+
deliverables. Keep each point concise so the entire letter fits comfortably on a
|
|
36
|
+
single page.
|
|
37
|
+
|
|
38
|
+
Close by stating the specific next step you would like the reader to take and
|
|
39
|
+
how best to reach you. Thank you for your time and consideration; I look forward
|
|
40
|
+
to your reply.
|
|
41
|
+
|
|
42
|
+
{{nyml
|
|
43
|
+
kind: letter-signature
|
|
44
|
+
from: Your Name
|
|
45
|
+
closing: Sincerely
|
|
46
|
+
title: Your Title
|
|
47
|
+
}}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{{nyml
|
|
2
|
+
kind: document
|
|
3
|
+
template: note
|
|
4
|
+
}}
|
|
5
|
+
|
|
6
|
+
# Note Title
|
|
7
|
+
|
|
8
|
+
Write a one-line statement of what this note is about. Keep the opening short
|
|
9
|
+
so a reader knows the purpose before reaching the details below.
|
|
10
|
+
|
|
11
|
+
## Section
|
|
12
|
+
|
|
13
|
+
Replace this with the main point of the note in two or three sentences. Add any
|
|
14
|
+
context a reader needs to follow along. Keep each idea tight and to the point.
|
|
15
|
+
|
|
16
|
+
- First key item to remember.
|
|
17
|
+
- Second key item, with a short detail.
|
|
18
|
+
- Third key item.
|
|
19
|
+
|
|
20
|
+
::: info
|
|
21
|
+
A short note callout for a tip, reminder, or aside worth setting apart.
|
|
22
|
+
:::
|
|
23
|
+
|
|
24
|
+
## Next Steps
|
|
25
|
+
|
|
26
|
+
- [ ] First action to take.
|
|
27
|
+
- [ ] Second action to take.
|
|
28
|
+
- [ ] Third action to take.
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{{nyml
|
|
2
|
+
kind: document
|
|
3
|
+
template: report-page
|
|
4
|
+
header_center: Report Title
|
|
5
|
+
footer_left: Confidential
|
|
6
|
+
page_number_position: footer-right
|
|
7
|
+
page_number_style: page-n-of-N
|
|
8
|
+
front_matter: clean
|
|
9
|
+
}}
|
|
10
|
+
|
|
11
|
+
{{nyml
|
|
12
|
+
kind: report-title
|
|
13
|
+
title: Report Title
|
|
14
|
+
subtitle: A short, descriptive subtitle
|
|
15
|
+
author: Team / Author
|
|
16
|
+
date: Q3 2026
|
|
17
|
+
placement: page
|
|
18
|
+
}}
|
|
19
|
+
|
|
20
|
+
{{nyml
|
|
21
|
+
kind: toc
|
|
22
|
+
title: Contents
|
|
23
|
+
max_level: 2
|
|
24
|
+
placement: page
|
|
25
|
+
}}
|
|
26
|
+
|
|
27
|
+
## Executive Summary
|
|
28
|
+
|
|
29
|
+
This report summarizes the key findings and recommendations for the quarter. In
|
|
30
|
+
one or two sentences, state the headline outcome and the decision you are asking
|
|
31
|
+
the reader to make. Replace this paragraph with a concise overview that a busy
|
|
32
|
+
stakeholder can read in under a minute.
|
|
33
|
+
|
|
34
|
+
## Background
|
|
35
|
+
|
|
36
|
+
Describe the context and why this work was undertaken. Reference the original
|
|
37
|
+
goal, the time period covered, and any prior reports this one builds on. Keep it
|
|
38
|
+
brief — enough for a new reader to understand the rest of the document without
|
|
39
|
+
prior knowledge.
|
|
40
|
+
|
|
41
|
+
## Findings
|
|
42
|
+
|
|
43
|
+
The data below summarizes performance against the targets set at the start of
|
|
44
|
+
the period.
|
|
45
|
+
|
|
46
|
+
| Metric | Target | Actual | Status |
|
|
47
|
+
|-----------------|--------|--------|-------------|
|
|
48
|
+
| Revenue | $1.2M | $1.35M | On track |
|
|
49
|
+
| New customers | 250 | 218 | Below plan |
|
|
50
|
+
| Churn rate | 4.0% | 3.2% | Ahead |
|
|
51
|
+
| Support tickets | 1,000 | 1,140 | Watch |
|
|
52
|
+
|
|
53
|
+
Overall results were mixed: revenue and retention exceeded expectations, while
|
|
54
|
+
new-customer acquisition fell short of plan. Summarize the most important
|
|
55
|
+
takeaway in a sentence here.
|
|
56
|
+
|
|
57
|
+
::: page-break
|
|
58
|
+
:::
|
|
59
|
+
|
|
60
|
+
## Recommendations
|
|
61
|
+
|
|
62
|
+
Based on the findings above, we recommend the following actions:
|
|
63
|
+
|
|
64
|
+
1. Increase top-of-funnel marketing spend to close the new-customer gap.
|
|
65
|
+
2. Invest in support tooling to absorb rising ticket volume without adding cost.
|
|
66
|
+
3. Maintain the retention initiatives that drove the lower churn rate.
|
|
67
|
+
|
|
68
|
+
## Next Steps
|
|
69
|
+
|
|
70
|
+
- Assign an owner and a due date to each recommendation.
|
|
71
|
+
- Review progress at the next quarterly checkpoint.
|
|
72
|
+
- Circulate this report to stakeholders for feedback by end of week.
|