forked from source-academy/sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessEpigraphPdf.js
50 lines (42 loc) · 1.42 KB
/
processEpigraphPdf.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
48
49
50
import { recursiveProcessTextLatex, processTextLatex } from "../parseXmlLatex";
import { processAttributionPdf } from "./processAttributionPdf";
export const processEpigraphPdf = (node, writeTo) => {
writeTo.push("\\epigraph{");
let child = node.firstChild;
let attribution = null;
for (child; child; child = child.nextSibling) {
if (child.nodeName == "ATTRIBUTION") {
attribution = child;
break;
} else {
processTextLatex(child, writeTo);
}
}
if (attribution) {
writeTo.push("~}{");
processAttributionPdf(attribution, writeTo);
// const author = attribution.getElementsByTagName("AUTHOR")[0];
// if (author) {
// writeTo.push("\\textup{");
// recursiveProcessTextLatex(author.firstChild, writeTo);
// writeTo.push("}");
// }
// child = attribution.getElementsByTagName("TITLE")[0];
// if (child) {
// if (author) writeTo.push(", ");
// recursiveProcessTextLatex(child.firstChild, writeTo);
// }
// child = attribution.getElementsByTagName("DATE")[0];
// if (child) {
// writeTo.push(" (");
// recursiveProcessTextLatex(child.firstChild, writeTo);
// writeTo.push(")");
// }
// child = attribution.getElementsByTagName("INDEX")[0];
// if (child) {
// processTextLatex(child, writeTo);
// }
}
writeTo.push("}\n");
};
export default processEpigraphPdf;