-
Notifications
You must be signed in to change notification settings - Fork 2
/
document.tex
60 lines (57 loc) · 1.31 KB
/
document.tex
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
51
52
53
54
55
56
57
58
59
60
\documentclass[12pt,a4paper]{book}
%
\input{includes}
\input{definitions}
%
\begin{document}
\maketitle
\tableofcontents
%
% TODO:
% units package?
% exercises in script?
% parts of TAOCP?
%
\newpage
\switch%
\case{\equals{\languagename}{ngerman}}%
\selectlanguage{ngerman}%
\input{titlepage_de}%
\input{gdi001_intro_de}%
\input{gdi002_bits_de}%
\input{gdi003_logic_de}%
\input{gdi004_set_theory_de}%
\input{gdi005_turing_de}%
\input{gdi006_graph_de}%
\input{gdi007_encoding_de}%
\input{gdi008_abstraction_de}%
\input{gdi009_landau_de}%
\input{gdi010_algo_de}%
\input{gdi011_complexity_de}%
\input{gdi012_lang_de}%
\input{gdi013_people_de}%
\bibliography{bibliography_de}%
%
\case{\equals{\languagename}{english}}%
\selectlanguage{english}%
\input{titlepage_en}%
\input{gdi001_intro_en}%
\input{gdi002_bits_en}%
\input{gdi003_logic_en}%
\input{gdi004_set_theory_en}%
\input{gdi005_turing_en}%
\input{gdi006_graph_en}%
\input{gdi007_encoding_en}%
\input{gdi008_abstraction_en}%
\input{gdi009_landau_en}%
\input{gdi010_algo_en}%
\input{gdi011_complexity_en}%
\input{gdi012_lang_en}%
\input{gdi013_people_en}%
\bibliography{bibliography_en}%
\otherwise%
\errmessage{Unknown valid language configured.}
\endswitch%
\bibliographystyle{alpha}
\printindex
\end{document}