forked from source-academy/sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessExercisePdf.js
47 lines (40 loc) · 1.29 KB
/
processExercisePdf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { recursiveProcessTextLatex } from "../parseXmlLatex";
import { getChildrenByTagName } from "../utilityFunctions";
let unlabeledEx = 0;
const processExercisePdf = (node, writeTo) => {
const label = getChildrenByTagName(node, "LABEL")[0];
let labelName = "";
const solution = node.getElementsByTagName("SOLUTION")[0];
if (solution) {
if (!label) {
labelName = "ex:unlabeled" + unlabeledEx;
unlabeledEx += 1;
} else {
labelName = label.getAttribute("NAME");
}
}
writeTo.push("\n\\begin{Exercise}");
if (solution && !label) {
writeTo.push("\\label{" + labelName + "}");
}
// writeTo.push("\\noindent%\n");
const text = [];
recursiveProcessTextLatex(node.firstChild, text);
writeTo.push(text.join("").trim());
if (solution) {
// include the following line for a clickable "Solution"
// writeTo.push("\\hfill{\\hyperref[" + labelName + "-Answer]{Solution}}\\\\");
}
writeTo.push("\n\\end{Exercise}\n");
if (solution) {
/// TODO: change this format
answers.push("\n\\begin{Answer}[ref={" + labelName + "}]\n");
recursiveProcessTextLatex(solution.firstChild, answers);
answers.push("\n\\end{Answer}\n");
}
};
export default processExercisePdf;
const answers = [];
export const getAnswers = () => {
return answers;
};