-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
106 additions
and
13 deletions.
There are no files selected for viewing
Submodule istqb_product_base
updated
3 files
+24 −1 | check-yaml.lua | |
+1 −1 | languages/en.yml | |
+13 −2 | template/markdownthemeistqb_sample-exam.sty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
\documentclass{istqb} | ||
\usepackage{markdown} | ||
\markdownSetup{ | ||
import = { | ||
istqb/sample-exam/questions = { | ||
questions as ask, | ||
} | ||
} | ||
} | ||
\begin{document} | ||
\markdownInput[snippet=ask]{questions.yml} | ||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
duration: [10, 15] # minutes | ||
num-questions: 3 | ||
max-score: 4 | ||
pass-score: 50 # percent | ||
questions: | ||
1: | ||
learning-objective: 1.2.3 | ||
k-level: K1 | ||
number-of-points: 1 | ||
question: > | ||
What is the answer to life, | ||
the universe, and everything? | ||
answers: {a: 24, b: 42, c: 64, d: 84} | ||
correct: b | ||
explanation: > | ||
The answer to life, the universe, | ||
and everything is a concept from | ||
Douglas Adams’ science fiction | ||
series “The Hitchhiker’s Guide to | ||
the Galaxy”, where the supercomputer | ||
Deep Thought gives the answer as 42. | ||
5: | ||
learning-objective: 4.5.6 | ||
k-level: K2 | ||
number-of-points: 1 | ||
question: > | ||
What is the capital of France? | ||
answers: | ||
a: Berlin | ||
b: Madrid | ||
c: Paris | ||
d: Rome | ||
correct: c | ||
explanation: > | ||
The capital of France is Paris, | ||
known for art, fashion, and culture. | ||
6: | ||
learning-objective: 7.8.9 | ||
k-level: K3 | ||
number-of-points: 2 | ||
question: > | ||
Which two of the following animals | ||
are classified as mammals? | ||
answers: { a: Shark, b: Dolphin, | ||
c: Eagle, d: Whale, e: Crocodile } | ||
correct: [b, d] | ||
explanation: > | ||
Dolphins and whales are classified | ||
as mammals because they are | ||
warm-blooded, have lungs for | ||
breathing air, and nurse their | ||
young with milk. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
\smallskip | ||
|
||
\begingroup | ||
\centering | ||
\setlength{\fboxsep}{0pt}% | ||
\fbox{\includegraphics[width=.725\linewidth, trim={15mm 30mm 15mm 40mm}, clip]{examples/landing-page}}% | ||
\phantomsection | ||
\label{fig:landing-page} | ||
\par | ||
\endgroup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
\smallskip | ||
|
||
\begingroup | ||
\centering | ||
\setlength{\fboxsep}{0pt}% | ||
\fbox{\includegraphics[width=\linewidth, trim={20mm 57.5mm 20mm 45mm}, clip]{examples/questions}}% | ||
\phantomsection | ||
\label{fig:questions} | ||
\par | ||
\endgroup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters