-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathreport.yaml
1819 lines (1818 loc) · 246 KB
/
report.yaml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
Repository: MartinThoma/LaTeX-examples
Url: https://github.com/MartinThoma/LaTeX-examples.git
Args: '["**/*.{md,tex}"]'
Summary:
files: 1409
filesWithIssues: 494
issues: 4759
errors: 0
Errors: []
issues:
- "asymptote/topology-r-spiral-covering-s/topology-r-spiral-covering-s.tex:9:13 amsfonts U usepackage(\"amsfonts\");"
- "asymptote/topology-r-spiral-covering-s/topology-r-spiral-covering-s.tex:13:1 currentprojection U currentprojection=orthographic(4,6,3)"
- "asymptote/topology-r-spiral-covering-s/topology-r-spiral-covering-s.tex:25:6 phix U real phix = 0.1;"
- "asymptote/topology-r-spiral-covering-s/topology-r-spiral-covering-s.tex:26:6 phim U real phim = 6.7;"
- "asymptote/topology-r-spiral-covering-s/topology-r-spiral-covering-s.tex:35:6 unitcircle U draw(unitcircle3, blue);"
- "asymptote/topology-r-spiral-covering-s/topology-r-spiral-covering-s.tex:51:1 xaxis U xaxis3(\"\",red,Arrow3);"
- "asymptote/topology-r-spiral-covering-s/topology-r-spiral-covering-s.tex:52:1 yaxis U yaxis3(\"\",red,Arrow3);"
- "asymptote/topology-r-spiral-covering-s/topology-r-spiral-covering-s.tex:53:1 zaxis U zaxis3(\"\",red,Arrow3);"
- "asymptote/torus-three-paths/README.md:8:12 texlive U /usr/local/texlive/2013/texmf-dist/asymptote"
- "asymptote/torus-three-paths/README.md:8:25 texmf U usr/local/texlive/2013/texmf-dist/asymptote/three"
- "asymptote/torus-three-paths/torus-three-paths.tex:13:1 defaultrender U defaultrender = render(merge = true"
- "asymptote/torus-three-paths/torus-three-paths.tex:16:5 umax U int umax = 40;"
- "asymptote/torus-three-paths/torus-three-paths.tex:17:5 vmax U int vmax = 40;"
- "asymptote/torus-three-paths/torus-three-paths.tex:19:7 ucyclic U torus.ucyclic(true);"
- "asymptote/torus-three-paths/torus-three-paths.tex:20:7 vcyclic U torus.vcyclic(true);"
- "asymptote/torus-three-paths/torus-three-paths.tex:22:5 meshpen U pen meshpen = 0.3pt + gray;"
- "asymptote/torus-three-paths/torus-three-paths.tex:24:13 surfacepen U draw(torus, surfacepen=material(diffusepen"
- "asymptote/torus-three-paths/torus-three-paths.tex:24:33 diffusepen U surfacepen=material(diffusepen=white+opacity(0.6),"
- "asymptote/torus-three-paths/torus-three-paths.tex:24:64 emissivepen U white+opacity(0.6), emissivepen=white));"
- "asymptote/torus-three-paths/torus-three-paths.tex:26:14 uequals U draw(torus.uequals(u), p=meshpen);"
- "asymptote/torus-three-paths/torus-three-paths.tex:36:7 abpath U path3 abpath(int ucycles, int vcycles"
- "asymptote/torus-three-paths/torus-three-paths.tex:36:18 ucycles U path3 abpath(int ucycles, int vcycles) {"
- "asymptote/torus-three-paths/torus-three-paths.tex:36:31 vcycles U abpath(int ucycles, int vcycles) {"
- "asymptote/torus-three-paths/torus-three-paths.tex:37:8 bshift U pair bshift = (ucycles*umax, vcycles"
- "asymptote/torus-three-paths/torus-three-paths.tex:49:34 darkgreen U ,-1), p=linewidth + darkgreen);"
- "cheat-sheets/Tikz/README.md:4:31 commant U have some important commant, feel free to submit"
- "cheat-sheets/Tikz/README.md:5:43 thoma U e-mail (info@martin-thoma.de)"
- "cheat-sheets/Tikz/Tikz-cheat-sheet.tex:35:16 Reusage U \\item Path Reusage \\myCode{postaction"
- "cheat-sheets/Tikz/Tikz-cheat-sheet.tex:68:51 bezier U coordinate is used in a bezier curve specification"
- "cheat-sheets/Tikz/Tikz-cheat-sheet.tex:68:82 behaviour U curve specification the behaviour is slightly different"
- "cheat-sheets/Tikz/Tikz-cheat-sheet.tex:87:101 colour U path (with the given colour)"
- "cheat-sheets/vim/vim.tex:11:3 multicol U % multicol parameters"
- "circuits/d-latch-with-nand/d-latch-with-nand.tex:12:31 nand U (0,2) node[european nand port] (mynand1){};"
- "circuits/d-latch-with-nand/d-latch-with-nand.tex:12:43 mynand U european nand port] (mynand1){};"
- "circuits/d-latch-with-nand/d-latch-with-nand.tex:17:31 ocirc U (mynand1.in 1) node[ocirc,label=left:$D$]{};"
- "circuits/README.md:3:1 circuitikz U circuitikz"
- "circuits/README.md:9:9 stackexchange U * [tex.stackexchange.com](http://tex.stackexchange"
- "circuits/simple-example-tikz-circuit-library/simple-example-tikz-circuit-library.tex:11:50 myand U inputs={normal,normal}] (myand) {};"
- "circuits/simple-example-tikz-circuit-library/simple-example-tikz-circuit-library.tex:12:61 mynot U inputs={normal,normal}] (mynot) {};"
- "documents/acronyms-example/acronyms-example.tex:15:3 pdfkeywords U pdfkeywords = {},"
- "documents/acronyms-example/acronyms-example.tex:16:3 pdftitle U pdftitle = {}"
- "documents/Analysis I/Analysis-I.tex:34:76 Schmoeger U Analysis I\"' von Herrn Schmoeger im"
- "documents/Analysis I/Analysis-I.tex:35:61 Mitschriebe U Karlsruhe (TH). Die Mitschriebe der Vorlesung werden"
- "documents/Analysis I/Analysis-I.tex:41:13 Holtgrewe U noch Manuel Holtgrewe, Wenzel Jakob, Pascal"
- "documents/Analysis I/Analysis-I.tex:41:45 Maillard U Wenzel Jakob, Pascal Maillard und Jonathan Picht."
- "documents/Analysis I/Analysis-I.tex:41:67 Picht U Maillard und Jonathan Picht."
- "documents/Analysis I/Analysis-I.tex:67:30 Definiton (Definition) U Leftrightarrow$ per Definiton äquivalent"
- "documents/Analysis I/Analysis-I.tex:219:151 Vorausetzung U gamma - s > 0$. Laut Vorausetzung gilt: $\\exists x \\in"
- "documents/Analysis I/Analysis-I.tex:277:1 Induktionsvorausseztung U Induktionsvorausseztung (IV): Sei $n \\in \\MdN"
- "documents/Analysis I/Analysis-I.tex:342:62 surjektiv U f$ ist injektiv und surjektiv"
- "documents/Analysis I/Analysis-I.tex:357:76 surjektive U n \\in \\MdN$ und eine surjektive Funktion $f:\\{1,\\ldots"
- "documents/Analysis I/Analysis-I.tex:581:131 Konvergenzfall U b_n)$ konvergent. Im Konvergenzfall: $\\lim(a_n) = \\lim(b"
- "documents/Analysis I/Analysis-I.tex:781:10 Häufungswerte U \\chapter{Häufungswerte und Teilfolgen}"
- "documents/Analysis I/Analysis-I.tex:788:254 Häufungswert U MdR: \\alpha$ ist ein Häufungswert von $(a_n) \\}$."
- "documents/Analysis I/Analysis-I.tex:823:33 existert U alpha \\in \\MdR$, so existert eine Folge $(r_k)$ in"
- "documents/Analysis I/Analysis-I.tex:848:22 mononte U Wir erhalten so eine mononte Teilfolge $(a_{n_k}"
- "documents/Analysis I/Analysis-I.tex:972:36 Cauchyfolge U Beachte:} $(a_n)$ ist eine Cauchyfolge $\\equizu \\forall \\ep"
- "documents/Analysis I/Analysis-I.tex:1044:7 Monotoniekriterium U \\item Monotoniekriterium: Sind alle $a_n \\ge"
- "documents/Analysis I/Analysis-I.tex:1245:10 Umordnungen U \\chapter{Umordnungen und Produkte von Reihen"
- "documents/Analysis I/Analysis-I.tex:1252:46 Umordnung U ,a_6,a_8)$ ist eine Umordnung von $(a_n)$ (aber \\emph"
- "documents/Analysis I/Analysis-I.tex:1370:48 pdflatex U funktioniert nicht mit pdflatex"
- "documents/Analysis I/Analysis-I.tex:1373:20 Cauchyprodukt U %Veranschaulichung Cauchyprodukt:"
- "documents/Analysis I/Analysis-I.tex:1424:281 ensteht U 4+p_5$. $\\sum{c_n}$ ensteht also aus $\\sum{p_n}"
- "documents/Analysis I/Analysis-I.tex:1522:72 Konvergenzbereich U der Potenzreihe. Der Konvergenzbereich der Potenzreihe hat"
- "documents/Analysis I/Analysis-I.tex:1548:49 Cosinus U {-x})\\ (x\\in\\MdR)$ (Cosinus Hyperbolikus)\\\\"
- "documents/Analysis I/Analysis-I.tex:1548:57 Hyperbolikus U x\\in\\MdR)$ (Cosinus Hyperbolikus)\\\\"
- "documents/Analysis I/Analysis-I.tex:1577:14 adische U \\chapter{$g$-adische Entwicklungen}"
- "documents/Analysis I/Analysis-I.tex:1601:14 Dualentwicklung U \\item $g=2$ (Dualentwicklung); $0,111000\\ldots ="
- "documents/Analysis I/Analysis-I.tex:1607:39 adischer U 2z_3\\ldots$ ein $g$-adischer Bruch und existiert"
- "documents/Analysis I/Analysis-I.tex:1622:358 andererenfalls U nu - w_\\nu < g-1$. (andererenfalls $z_\\nu - w_\\nu = g-"
- "documents/Analysis I/Analysis-I.tex:1684:36 exisitiert U lim_{x\\to x_0}f(x)$ exisitiert $:\\equizu \\exists a"
- "documents/Analysis I/Analysis-I.tex:1716:15 Cauchykriterium U \\item \\textit{Cauchykriterium}\\indexlabel{Cauchykriterium"
- "documents/Analysis I/Analysis-I.tex:1723:134 exisistert U \\forall \\delta > 0$ exisistert ein $x_j \\in \\dot D"
- "documents/Analysis I/Analysis-I.tex:1847:118 setig U 0\\in D$ und $g$ sei setig in $y_0 := f(x_0)$."
- "documents/Analysis I/Analysis-I.tex:1892:30 abgeschlossesn U \\subseteq \\MdR$ ist abgeschlossesn u. beschränkt $\\equizu"
- "documents/Analysis I/Analysis-I.tex:2104:23 Lipschitz U item Ist $f$ auf $D$ Lipschitz-stetig $\\folgt f$ ist"
- "documents/Analysis I/Analysis-I.tex:2245:15 Erweiteter U \\item \\textbf{Erweiteter Mittelwertsatz}: Es"
- "documents/Analysis I/Analysis-I.tex:2742:47 bfdx U bf_n(x)dx = \\int_a^bfdx = \\int_a^b(\\lim_{n\\to"
- "documents/Analysis I/Analysis-I.tex:2868:59 Darbouxschen U tatsächlich die \\emph{Darbouxschen} Integrale betrachtet"
- "documents/Analysis I/Analysis-I.tex:2913:27 Lipschitzstetig U $F$ ist auf $[a,b]$ Lipschitzstetig, insbesondere $F \\in"
- "documents/Analysis I/Analysis-I.tex:3282:22 Stieltjes U chapter{Das Riemann-Stieltjes-Integral}"
- "documents/Analysis I/Analysis-I.tex:3417:22 Analyis U chapter{Credits für Analyis I} Abgetippt haben die"
- "documents/Analysis II/Analysis-II.tex:41:49 Schwerdt U von 2010) sind Rebecca Schwerdt, Philipp Ost und Manuel"
- "documents/Analysis II/Analysis-II.tex:66:110 Skalarmultiplikation U blichen Addition und Skalarmultiplikation ein reeller Vektorraum"
- "documents/Analysis II/Analysis-II.tex:96:50 Schwarzsche U y\\|$ \\textbf{Cauchy-Schwarzsche Ungleichung} (\\begriff"
- "documents/Analysis II/Analysis-II.tex:180:96 eixistiert U : x_0\\in A_j$, also eixistiert $\\delta_j>0: U_\\delta"
- "documents/Analysis II/Analysis-II.tex:264:63 endl U (1) $\\folgt\\exists$ endl. Teilmenge $B_j$ von"
- "documents/Analysis II/Analysis-II.tex:272:135 vektorwertige U MdR^m$ eine (\\textbf{vektorwertige}) Funktion. Für Punkte"
- "documents/Analysis II/Analysis-II.tex:439:26 duch U item Der Beweis erfolgt duch Implikation in beiden"
- "documents/Analysis II/Analysis-II.tex:450:100 reellwertige U und $f:D\\to\\MdR$ eine reellwertige Funktion. $x_0 = (x"
- "documents/Analysis II/Analysis-II.tex:456:77 exisitert U nach $x_j$ :\\equizu es exisitert"
- "documents/Analysis II/Analysis-II.tex:535:56 Differentation U der Reihenfolge der Differentation."
- "documents/Analysis II/Analysis-II.tex:739:73 Linearform U ax\\ (x \\in \\MdR^n)$ (Linearform). $f'(x) = a\\ \\forall"
- "documents/Analysis II/Analysis-II.tex:758:249 Matrizenprodukt U cdot f'(x_0)\\text{ (Matrizenprodukt)}$$"
- "documents/Analysis II/Analysis-II.tex:784:25 reellwertig U g(x_1,\\ldots,x_m)$ reellwertig,"
- "documents/Analysis II/Analysis-II.tex:833:10 Differenzierbarkeitseigenschaften U \\chapter{Differenzierbarkeitseigenschaften reellwertiger Funktionen"
- "documents/Analysis II/Analysis-II.tex:833:44 reellwertiger U erenzierbarkeitseigenschaften reellwertiger Funktionen}"
- "documents/Analysis II/Analysis-II.tex:1181:196 Cramersche U x)=A_k(f^{-1}(y))$. Cramersche Regel $\\folgt \\frac"
- "documents/Analysis II/Analysis-II.tex:1229:8 Schmöger U % Laut Schmöger 5.6, bei uns 5.5. Wessen"
- "documents/Analysis II/Analysis-II.tex:1400:5 Extremwertverdächtig U Extremwertverdächtig: $(\\frac{1}{2}, \\frac"
- "documents/Analysis II/Analysis-II.tex:1547:24 rektifizierbar U gamma$ heißt \\textbf{rektifizierbar} (rb) \\indexlabel{Rektifizier"
- "documents/Analysis II/Analysis-II.tex:1575:33 rektifizierbarer U [a,b]\\to\\MdR^n$ ein rektifizierbarer Weg. Sei $t\\in(a,b]"
- "documents/Analysis II/Analysis-II.tex:1792:58 rektifizierbare U gamma_2,\\ldots,\\gamma_m$ rektifizierbare Wege, $\\gamma_k:[a_k"
- "documents/Analysis II/Analysis-II.tex:1852:16 ntheorembugumgehung U \\vspace{2em} % ntheorembugumgehung"
- "documents/Analysis II/Analysis-II.tex:1877:47 wegunabhängig U heißt \\textbf{in G wegunabhängig} (wu) $:\\equizu$ für"
- "documents/Analysis II/Analysis-II.tex:1929:125 Integrabilitätsbedingungen U erfüllt auf $G$ die Integrabilitätsbedingungen"
- "documents/Analysis II/Analysis-II.tex:2044:16 bzgl U Normalbereiche bzgl der $x$-$z$- und $y"
- "documents/Analysis II/Analysis-II.tex:2290:27 Banachräume U chapter{Normierte Räume, Banachräume, Fixpunktsatz}"
- "documents/Analysis II/Analysis-II.tex:2412:23 Banachraum U X$ heißt ein \\textbf{Banachraum} oder \\textbf{vollst"
- "documents/Analysis II/Analysis-II.tex:3335:15 Wronskideterminante U heißt \\textbf{Wronskideterminante}."
- "documents/Analysis II/Analysis-II.tex:3429:241 spez U end{pmatrix}}_{\\text{spez. Lsg.}} \\\\"
- "documents/Analysis II/Analysis-II.tex:3475:32 Vielfachheiten U und deren algebraische Vielfachheiten $k_1, \\ldots, k_r$,"
- "documents/Analysis II/Analysis-II.tex:3762:80 Ornung U Die Gleichung erster Ornung lautet:"
- "documents/Analysis II/Analysis-II.tex:3932:33 nullfache U heißt eine \\textbf{nullfache Nullstelle} von $p$"
- "documents/Analysis II/Analysis-II.tex:4005:59 Türk U Joachim Breitner und Ines Türk\\\\"
- "documents/Analysis II/README.md:3:22 usprünglich U Dieses Skript stammt usprünglich von http://mitschriebwiki"
- "documents/Analysis III/Analysis-III.tex:42:52 Ihrens U Schwerdt, Philipp Ost, Jan Ihrens, Peter Pan"
- "documents/Analysis III/Analysis-III.tex:43:14 Unger U und Benjamin Unger."
- "documents/Analysis III/Analysis-III.tex:46:1 mitschriebwiki U mitschriebwiki auf \\href{https://github"
- "documents/Analysis III/Analysis-III.tex:83:27 Lebesgueintegrals U chapter{Konstruktion des Lebesgueintegrals}"
- "documents/Analysis III/Analysis-III.tex:91:14 Konvergenzsatz U \\chapter{Der Konvergenzsatz von Lebesgue}"
- "documents/Analysis III/Analysis-III.tex:103:26 Cavalieri U chapter{Das Prinzip von Cavalieri}"
- "documents/Analysis III/Analysis-III.tex:107:23 Fubini U chapter{Der Satz von Fubini}"
- "documents/Analysis III/Analysis-III.tex:111:14 Transformationssatz U \\chapter{Der Transformationssatz (Substitutionsregel"
- "documents/Analysis III/Analysis-III.tex:115:33 Integralsätze U Vorbereitungen für die Integralsätze}"
- "documents/Analysis III/Analysis-III.tex:119:14 Integralsatz U \\chapter{Der Integralsatz von Gauß im $\\MdR^2"
- "documents/Analysis III/Kapitel-0.tex:33:19 Indikatorfunktion U \\textbf{Indikatorfunktion von A}."
- "documents/Analysis III/Kapitel-1.tex:146:23 Borelsche U \\textbf{Borelsche $\\sigma$-Algebra} auf"
- "documents/Analysis III/Kapitel-1.tex:148:54 Borel U Mengen} oder \\textbf{Borel-Mengen}."
- "documents/Analysis III/Kapitel-1.tex:476:73 Subadditivität U {j})}\\) (\\(\\sigma\\)-Subadditivität)"
- "documents/Analysis III/Kapitel-10.tex:164:21 Integrationen U Die Reihenfolge der Integrationen darf beliebig vertauscht"
- "documents/Analysis III/Kapitel-11.tex:8:9 Diffeomorphismus U \\textbf{Diffeomorphismus} genau dann wenn \\("
- "documents/Analysis III/Kapitel-12.tex:41:150 Tangentialvektor U )\\in\\mdr^n$ \\textbf{Tangentialvektor} von $\\gamma$ in $t"
- "documents/Analysis III/Kapitel-14.tex:19:2 Definere U Definere damit den \\textbf{Normalenvek"
- "documents/Analysis III/Kapitel-15.tex:42:67 Oberflächenint U mathrm{d}\\sigma}}_{\\text{Oberflächenint.}}="
- "documents/Analysis III/Kapitel-15.tex:43:83 Wegint U mathrm{d}(x,y,z)}}_{\\text{Wegint.}}"
- "documents/Analysis III/Kapitel-16.tex:74:54 Höldersche U es gilt die \\textbf{Höldersche Ungleichung}:"
- "documents/Analysis III/Kapitel-16.tex:81:95 Minkowskische U \\) gilt die \\textbf{Minkowskische Ungleichung}:"
- "documents/Analysis III/Kapitel-16.tex:152:9 Hölderschen U Mit der Hölderschen Ungleichung folgt:"
- "documents/Analysis III/Kapitel-16.tex:171:57 Minkowski U {p-1}\\) liefert die Minkowski-Ungleichung."
- "documents/Analysis III/Kapitel-16.tex:289:26 Prähilbertraum U heißt $B$ ein \\textbf{Prähilbertraum}. Ist $B$ ein Banachraum"
- "documents/Analysis III/Kapitel-16.tex:301:124 exitiert U 0$ ein $n_0\\in\\mdn$ exitiert mit:"
- "documents/Analysis III/Kapitel-16.tex:325:68 Allgmeinen U \\ref{Satz 16.4}. Im Allgmeinen wird \\textbf{nicht}"
- "documents/Analysis III/Kapitel-16.tex:417:76 Cachyfolge U hat f_n)\\) ist eine Cachyfolge in"
- "documents/Analysis III/Kapitel-17.tex:48:163 rausziehen U der zweiten Komponente rausziehen möchte, muss man diesen"
- "documents/Analysis III/Kapitel-17.tex:118:9 Orthonormalbasis U \\textbf{Orthonormalbasis (ONB)} von \\(L^2([0"
- "documents/Analysis III/Kapitel-17.tex:160:15 Fouriersche U \\textbf{n-te Fouriersche Partialsumme}. Also"
- "documents/Analysis III/Kapitel-17.tex:160:27 Partialsumme U textbf{n-te Fouriersche Partialsumme}. Also gilt:"
- "documents/Analysis III/Kapitel-17.tex:164:43 Fourierkoeffizient U heißt \\textbf{k-ter Fourierkoeffizient von f}."
- "documents/Analysis III/Kapitel-17.tex:191:20 Besselsche U \\item Die \\textbf{Besselsche Ungleichung} lautet"
- "documents/Analysis III/Kapitel-17.tex:284:92 Parsevalsche U \\quad\\text{(\\textbf{Parsevalsche Gleichung})}\\] Insbesondere"
- "documents/Analysis III/Kapitel-17.tex:337:41 Cosinusreihe U f\\) ist eine \\textbf{Cosinusreihe}.\\\\"
- "documents/Analysis III/Kapitel-2.tex:220:19 Prämaß U heißt ein \\textbf{Prämaß} \\ auf \\(\\fr\\), wenn"
- "documents/Analysis III/Kapitel-2.tex:270:56 durchschnittstabil U cap F\\in\\ce\\quad\\text{(durchschnittstabil)}\\)"
- "documents/Analysis III/Kapitel-4.tex:6:13 Lebesgueintegral U Das \\textbf{Lebesgueintegral} von $f$ ist definiert"
- "documents/Analysis III/Kapitel-6.tex:71:57 Majorante U ohne die integrierbare Majorante"
- "documents/Analysis III/Kapitel-9.tex:69:113 Vorraussetzungen U ci_d$. Da $\\ci_d$ die Vorraussetzungen des Satzes \\ref{Satz"
- "documents/attachfile-example/attachfile-example.tex:5:29 atomorum U ipsum dolor sit amet, atomorum consequat eu eum, summo"
- "documents/attachfile-example/attachfile-example.tex:5:56 summo U atomorum consequat eu eum, summo veniam"
- "documents/attachfile-example/attachfile-example.tex:6:27 iisque U molestie ad eos. Vis erat iisque senserit ex, meis iriure"
- "documents/attachfile-example/attachfile-example.tex:6:34 senserit U eos. Vis erat iisque senserit ex, meis iriure eu mei"
- "documents/attachfile-example/attachfile-example.tex:6:47 meis U iisque senserit ex, meis iriure eu mei,"
- "documents/attachfile-example/attachfile-example.tex:6:52 iriure U iisque senserit ex, meis iriure eu mei,"
- "documents/attachfile-example/attachfile-example.tex:7:1 ignota U ignota dictas electram an pro"
- "documents/attachfile-example/attachfile-example.tex:7:8 dictas U ignota dictas electram an pro. Has"
- "documents/attachfile-example/attachfile-example.tex:7:15 electram U ignota dictas electram an pro. Has atqui dissentiunt"
- "documents/attachfile-example/attachfile-example.tex:7:36 atqui U electram an pro. Has atqui dissentiunt an, eum"
- "documents/attachfile-example/attachfile-example.tex:7:42 dissentiunt U electram an pro. Has atqui dissentiunt an, eum percipit"
- "documents/attachfile-example/attachfile-example.tex:7:62 percipit U dissentiunt an, eum percipit"
- "documents/attachfile-example/attachfile-example.tex:8:1 fabellas U fabellas no. Habeo postea id"
- "documents/attachfile-example/attachfile-example.tex:8:14 Habeo U fabellas no. Habeo postea id sed, his quas"
- "documents/attachfile-example/attachfile-example.tex:8:20 postea U fabellas no. Habeo postea id sed, his quas natum"
- "documents/attachfile-example/attachfile-example.tex:8:44 natum U postea id sed, his quas natum disputationi ex, sit"
- "documents/attachfile-example/attachfile-example.tex:8:50 disputationi U sed, his quas natum disputationi ex, sit"
- "documents/attachfile-example/attachfile-example.tex:9:8 quaeque U tempor quaeque omittam at. Has vero"
- "documents/attachfile-example/attachfile-example.tex:9:16 omittam U tempor quaeque omittam at. Has vero exerci"
- "documents/attachfile-example/attachfile-example.tex:9:37 exerci U omittam at. Has vero exerci mandamus no, cu dolor"
- "documents/attachfile-example/attachfile-example.tex:10:1 mucius U mucius pericula pri. Et pro"
- "documents/attachfile-example/attachfile-example.tex:10:8 pericula U mucius pericula pri. Et pro graeco maiorum"
- "documents/attachfile-example/attachfile-example.tex:10:29 graeco U pericula pri. Et pro graeco maiorum."
- "documents/attachfile-example/attachfile-example.tex:10:36 maiorum U pericula pri. Et pro graeco maiorum."
- "documents/attachfile-example/attachfile-example.tex:12:8 mazim U Ut duo mazim periculis. Ut omittam"
- "documents/attachfile-example/attachfile-example.tex:12:14 periculis U Ut duo mazim periculis. Ut omittam prodesset"
- "documents/attachfile-example/attachfile-example.tex:12:36 prodesset U periculis. Ut omittam prodesset vim. Natum choro ex"
- "documents/attachfile-example/attachfile-example.tex:12:51 Natum U omittam prodesset vim. Natum choro ex eam,"
- "documents/attachfile-example/attachfile-example.tex:12:57 choro U prodesset vim. Natum choro ex eam,"
- "documents/attachfile-example/attachfile-example.tex:13:9 gloriatur U aperiam gloriatur voluptaria id sit, an"
- "documents/attachfile-example/attachfile-example.tex:13:19 voluptaria U aperiam gloriatur voluptaria id sit, an vim habeo"
- "documents/attachfile-example/attachfile-example.tex:13:45 habeo U voluptaria id sit, an vim habeo hendrerit. Everti"
- "documents/attachfile-example/attachfile-example.tex:13:62 Everti U vim habeo hendrerit. Everti"
- "documents/attachfile-example/attachfile-example.tex:14:1 sapientem U sapientem argumentum ei mei, cu"
- "documents/attachfile-example/attachfile-example.tex:14:37 tamquam U argumentum ei mei, cu sed tamquam adversarium. Suas summo"
- "documents/attachfile-example/attachfile-example.tex:14:45 adversarium U mei, cu sed tamquam adversarium. Suas summo"
- "documents/attachfile-example/attachfile-example.tex:14:58 Suas U tamquam adversarium. Suas summo"
- "documents/attachfile-example/attachfile-example.tex:15:1 putent U putent qui in, ea probo docendi"
- "documents/attachfile-example/attachfile-example.tex:15:19 probo U putent qui in, ea probo docendi vim, eos prima"
- "documents/attachfile-example/attachfile-example.tex:15:25 docendi U putent qui in, ea probo docendi vim, eos prima congue"
- "documents/attachfile-example/attachfile-example.tex:16:15 scaevola U Et cum primis scaevola atomorum. Tale malis"
- "documents/attachfile-example/attachfile-example.tex:16:45 reprimique U atomorum. Tale malis reprimique per ut."
- "documents/attachfile-example/attachfile-example.tex:19:8 fierent U Ius an fierent dolores honestatis."
- "documents/attachfile-example/attachfile-example.tex:19:24 honestatis U Ius an fierent dolores honestatis. Et equidem accusamus"
- "documents/attachfile-example/attachfile-example.tex:19:39 equidem U dolores honestatis. Et equidem accusamus vel, ei"
- "documents/attachfile-example/attachfile-example.tex:20:18 suscipiantur U impetus percipit suscipiantur vis, ei sea homero scribentur"
- "documents/attachfile-example/attachfile-example.tex:20:43 homero U suscipiantur vis, ei sea homero scribentur. Has"
- "documents/attachfile-example/attachfile-example.tex:20:50 scribentur U scipiantur vis, ei sea homero scribentur. Has"
- "documents/attachfile-example/attachfile-example.tex:21:1 scripta U scripta propriae et, vide iriure"
- "documents/attachfile-example/attachfile-example.tex:21:9 propriae U scripta propriae et, vide iriure antiopam"
- "documents/attachfile-example/attachfile-example.tex:21:34 antiopam U propriae et, vide iriure antiopam ei duo. Cum facete omnium"
- "documents/attachfile-example/attachfile-example.tex:21:55 facete U antiopam ei duo. Cum facete omnium"
- "documents/attachfile-example/attachfile-example.tex:22:17 illud U an, nec at alii illud adipiscing, omnis oporteat"
- "documents/attachfile-example/attachfile-example.tex:22:41 oporteat U illud adipiscing, omnis oporteat reformidans an quo."
- "documents/attachfile-example/attachfile-example.tex:22:50 reformidans U adipiscing, omnis oporteat reformidans an quo."
- "documents/attachfile-example/attachfile-example.tex:23:8 soleat U Cu mei soleat convenire consequat"
- "documents/attachfile-example/attachfile-example.tex:23:15 convenire U Cu mei soleat convenire consequat. Modus epicurei"
- "documents/attachfile-example/attachfile-example.tex:23:42 epicurei U convenire consequat. Modus epicurei apeirian ex cum."
- "documents/attachfile-example/attachfile-example.tex:23:51 apeirian U consequat. Modus epicurei apeirian ex cum."
- "documents/bachelor-proposal-latex-writing-recognition/bachelor-proposal-latex-writing-recognition.tex:67:23 Mathematica U \\item Wolfram Mathematica seems to be able to"
- "documents/bachelor-proposal-latex-writing-recognition/bachelor-proposal-latex-writing-recognition.tex:82:38 keepaspectratio U includegraphics*[width=5cm, keepaspectratio]{figures/libreoffice"
- "documents/bachelor-proposal-latex-writing-recognition/bachelor-proposal-latex-writing-recognition.tex:119:17 Gamification U of \\enquote{Gamification} to give as much"
- "documents/bachelor-proposal/bachelor-proposal.tex:35:22 backgound U section{The problem backgound}"
- "documents/bachelor-proposal/bachelor-proposal.tex:56:30 anotations U has to contain anotations that indicate at which"
- "documents/bachelor-proposal/bachelor-proposal.tex:73:46 ECTS U thesis at KIT is worth 15 ECTS. It should be"
- "documents/bachelor-proposal/bachelor-proposal.tex:93:23 Evalution U \\item \\textbf{Evalution of math recognition"
- "documents/bachelor-proposal/bachelor-proposal.tex:97:54 rror U textbf{W}ord \\textbf{E}rror \\textbf{R}ate"
- "documents/bachelor-proposal/bachelor-proposal.tex:112:35 independant (independent) U try to deal with math independant of the language."
- "documents/bachelor-proposal/bachelor-proposal.tex:156:28 hopless U pretty sure that it is hopless to create a grammar"
- "documents/bachelor-thesis-kit/German-Summary.tex:14:45 Perzeptronen U Trainings von Multilayer-Perzeptronen. Diese wurden mit"
- "documents/bachelor-thesis-kit/German-Summary.tex:15:36 Crowdsourcing U tzen, welche in zwei Crowdsourcing-Projekten gesammelt"
- "documents/bachelor-thesis-kit/German-Summary.tex:17:22 Klassifizierer U um einen optimierten Klassifizierer zu erstellen. Dieser"
- "documents/biblatex-mwe/biblatex-mwe.tex:23:20 accusam U At vero eos et accusam et justo duo dolores"
- "documents/biblatex-mwe/biblatex-mwe.tex:23:55 rebum U justo duo dolores et ea rebum~\\citet{Silberschatz"
- "documents/biblatex-mwe/biblatex-mwe.tex:24:13 Blup U Bli Bla Blup \\cite{Silberschatz2"
- "documents/biblatex-mwe/README.md:1:24 matth U Example was created by matth on [tex.stackexchange"
- "documents/book-minimal/book-minimal.tex:38:182 Bish U med student, and Holly Bish, a philosophy major"
- "documents/book-minimal/book-minimal.tex:69:14 Flatliners U \\enquote{So, Flatliners.} I said accusingly"
- "documents/book-minimal/book-minimal.tex:79:21 Keifer U \\enquote{And you're Keifer Sutherland!} I yelled"
- "documents/book-minimal/book-minimal.tex:80:29 FLATLINERS U enquote{THIS ISN'T FUCKING FLATLINERS!}\\\\"
- "documents/book-minimal/README.md:3:14 Dalek U Author: [The_Dalek_Emperor](http://www"
- "documents/book/book.tex:8:61 makeidx U text, has to be after makeidx"
- "documents/book/book.tex:19:31 mystyle U usepackage{mystyle} % create mystyle.sty where you put all"
- "documents/book/chap1/definitions.tex:1:35 admodum U dolor sit amet, magna admodum eloquentiam an est."
- "documents/book/chap1/definitions.tex:1:43 eloquentiam U amet, magna admodum eloquentiam an est. Errem salutatus"
- "documents/book/chap1/definitions.tex:1:63 Errem U eloquentiam an est. Errem salutatus no nam, cum"
- "documents/book/chap1/definitions.tex:1:69 salutatus U eloquentiam an est. Errem salutatus no nam, cum at antiopam"
- "documents/book/chap1/definitions.tex:1:103 torquatos U nam, cum at antiopam torquatos consectetuer. Eros modus"
- "documents/book/chap1/definitions.tex:1:113 consectetuer U at antiopam torquatos consectetuer. Eros modus mea in."
- "documents/book/chap1/definitions.tex:1:146 Oporteat U Eros modus mea in. Oporteat adolescens cu sit, alia"
- "documents/book/chap1/definitions.tex:1:155 adolescens U modus mea in. Oporteat adolescens cu sit, alia utinam"
- "documents/book/chap1/definitions.tex:1:174 alia U Oporteat adolescens cu sit, alia utinam iudicabit et"
- "documents/book/chap1/definitions.tex:1:179 utinam U adolescens cu sit, alia utinam iudicabit et pri."
- "documents/book/chap1/definitions.tex:1:186 iudicabit U cu sit, alia utinam iudicabit et pri."
- "documents/book/chap1/definitions.tex:3:12 laudem U Mei exerci laudem ut. Quem sint saepe"
- "documents/book/chap1/definitions.tex:3:47 Prodesset U Quem sint saepe ei per. Prodesset consectetuer no eum"
- "documents/book/chap1/definitions.tex:3:78 Scripta U consectetuer no eum. Scripta legendos rationibus"
- "documents/book/chap1/definitions.tex:3:86 legendos U consectetuer no eum. Scripta legendos rationibus an pri, mea"
- "documents/book/chap1/definitions.tex:3:95 rationibus U eum. Scripta legendos rationibus an pri, mea ex atqui"
- "documents/book/chap1/definitions.tex:3:127 ridens U an pri, mea ex atqui ridens cotidieque. Vim id tollit"
- "documents/book/chap1/definitions.tex:3:134 cotidieque U mea ex atqui ridens cotidieque. Vim id tollit oporteat"
- "documents/book/chap1/definitions.tex:3:153 tollit U ridens cotidieque. Vim id tollit oporteat recusabo, eu"
- "documents/book/chap1/definitions.tex:3:169 recusabo U Vim id tollit oporteat recusabo, eu audiam vidisse partiendo"
- "documents/book/chap1/definitions.tex:3:182 audiam U oporteat recusabo, eu audiam vidisse partiendo pri"
- "documents/book/chap1/definitions.tex:3:189 vidisse U recusabo, eu audiam vidisse partiendo pri. Vidit"
- "documents/book/chap1/definitions.tex:3:197 partiendo U recusabo, eu audiam vidisse partiendo pri. Vidit ubique democritum"
- "documents/book/chap1/definitions.tex:3:212 Vidit U vidisse partiendo pri. Vidit ubique democritum eam"
- "documents/book/chap1/definitions.tex:3:218 ubique U partiendo pri. Vidit ubique democritum eam ut, ne"
- "documents/book/chap1/definitions.tex:3:225 democritum U partiendo pri. Vidit ubique democritum eam ut, ne esse posse"
- "documents/book/chap1/definitions.tex:3:258 bonorum U eam ut, ne esse posse bonorum eum, primis accumsan"
- "documents/book/chap1/definitions.tex:3:287 philosophia U eum, primis accumsan philosophia ea est."
- "documents/book/chap1/definitions.tex:5:8 habemus U Qui et habemus petentium inciderint"
- "documents/book/chap1/definitions.tex:5:16 petentium U Qui et habemus petentium inciderint, an accumsan"
- "documents/book/chap1/definitions.tex:5:26 inciderint U et habemus petentium inciderint, an accumsan cotidieque"
- "documents/book/chap1/definitions.tex:5:69 possit U accumsan cotidieque vim, at possit consequat usu. At alii"
- "documents/book/chap1/definitions.tex:5:99 scriptorem U consequat usu. At alii scriptorem nam, dicant contentiones"
- "documents/book/chap1/definitions.tex:5:115 dicant U alii scriptorem nam, dicant contentiones cum ut"
- "documents/book/chap1/definitions.tex:5:122 contentiones U scriptorem nam, dicant contentiones cum ut. Qui nisl paulo"
- "documents/book/chap1/definitions.tex:5:176 aperiri U paulo aliquid no. Facer aperiri insolens id mei. Mei"
- "documents/book/chap1/definitions.tex:5:184 insolens U aliquid no. Facer aperiri insolens id mei. Mei ad atqui"
- "documents/book/chap1/definitions.tex:5:223 euripidis U Mei ad atqui eligendi euripidis, causae consectetuer"
- "documents/book/chap1/definitions.tex:5:234 causae U eligendi euripidis, causae consectetuer ut pri"
- "documents/book/chap1/sec12.tex:1:77 agam U harum commune ei, vim agam prompta epicurei ad"
- "documents/book/chap1/sec12.tex:1:82 prompta U commune ei, vim agam prompta epicurei ad. In vidit"
- "documents/book/chap1/sec12.tex:1:106 vidit U prompta epicurei ad. In vidit detraxit gubergren pri"
- "documents/book/chap1/sec12.tex:1:112 detraxit U epicurei ad. In vidit detraxit gubergren pri, cibo"
- "documents/book/chap1/sec12.tex:1:121 gubergren U ad. In vidit detraxit gubergren pri, cibo brute consul"
- "documents/book/chap1/sec12.tex:1:136 cibo U detraxit gubergren pri, cibo brute consul eam in"
- "documents/book/chap1/sec12.tex:1:178 interpretaris U in, ea voluptatibus interpretaris vel. Duo vidisse aliquip"
- "documents/book/chap1/sec12.tex:1:239 salutandi U debitis id, et iisque salutandi pro. Quod invenire mandamus"
- "documents/book/chap1/sec12.tex:1:259 invenire U salutandi pro. Quod invenire mandamus vim ex, tractatos"
- "documents/book/chap1/sec12.tex:1:285 tractatos U invenire mandamus vim ex, tractatos efficiantur quo in."
- "documents/book/chap1/sec12.tex:1:295 efficiantur U mandamus vim ex, tractatos efficiantur quo in. Sed id accumsan"
- "documents/book/chap1/sec12.tex:3:1 Labores U Labores delectus sensibus ex"
- "documents/book/chap1/sec12.tex:3:18 sensibus U Labores delectus sensibus ex per, qui vidit etiam"
- "documents/book/chap1/sec12.tex:3:68 falli U etiam dicant an, facer falli paulo pri ea. Diam maluisset"
- "documents/book/chap1/sec12.tex:3:93 maluisset U falli paulo pri ea. Diam maluisset instructior in mel."
- "documents/book/chap1/sec12.tex:3:103 instructior U pri ea. Diam maluisset instructior in mel. Ea sea falli"
- "documents/book/chap1/sec12.tex:3:136 utroque U in mel. Ea sea falli utroque aliquando. Paulo solet"
- "documents/book/chap1/sec12.tex:3:144 aliquando U Ea sea falli utroque aliquando. Paulo solet persecuti"
- "documents/book/chap1/sec12.tex:3:161 solet U utroque aliquando. Paulo solet persecuti his no. Fugit"
- "documents/book/chap1/sec12.tex:3:167 persecuti U aliquando. Paulo solet persecuti his no. Fugit detraxit"
- "documents/book/chap1/sec12.tex:3:223 eripuit U philosophia quo cu. Te eripuit incorrupte pri, cu possim"
- "documents/book/chap1/sec12.tex:3:231 incorrupte U hilosophia quo cu. Te eripuit incorrupte pri, cu possim petentium"
- "documents/book/chap1/sec12.tex:3:250 possim U eripuit incorrupte pri, cu possim petentium sea. Id vis"
- "documents/book/chap1/sec12.tex:3:279 graeci U petentium sea. Id vis graeci nominavi."
- "documents/book/chap1/sec12.tex:3:286 nominavi U petentium sea. Id vis graeci nominavi."
- "documents/book/chap1/sec12.tex:5:17 moderatius U His an scaevola moderatius, his prima paulo ut"
- "documents/book/chap1/sec12.tex:5:53 wisi U prima paulo ut. Usu wisi feugait cu, tibique"
- "documents/book/chap1/sec12.tex:5:58 feugait U prima paulo ut. Usu wisi feugait cu, tibique torquatos"
- "documents/book/chap1/sec12.tex:5:70 tibique U Usu wisi feugait cu, tibique torquatos ne vix. Et"
- "documents/book/chap1/sec12.tex:5:99 solum U torquatos ne vix. Et solum nostrud temporibus pro"
- "documents/book/chap1/sec12.tex:5:149 principes U an vis choro ubique principes, augue vidisse mea eu"
- "documents/book/chap1/sec12.tex:5:220 viderer U democritum. Te sed iusto viderer."
- "documents/book/chap1/sec12.tex:7:15 complectitur U Pro convenire complectitur ne, iuvaret signiferumque"
- "documents/book/chap1/sec12.tex:7:32 iuvaret U convenire complectitur ne, iuvaret signiferumque sit no"
- "documents/book/chap1/sec12.tex:7:40 signiferumque U complectitur ne, iuvaret signiferumque sit no. Elitr assentior"
- "documents/book/chap1/sec12.tex:7:62 Elitr U signiferumque sit no. Elitr assentior his cu, cum"
- "documents/book/chap1/sec12.tex:7:68 assentior U signiferumque sit no. Elitr assentior his cu, cum iudico saperet"
- "documents/book/chap1/sec12.tex:7:90 iudico U assentior his cu, cum iudico saperet cu, an vide"
- "documents/book/chap1/sec12.tex:7:97 saperet U assentior his cu, cum iudico saperet cu, an vide mutat duo"
- "documents/book/chap1/sec12.tex:7:117 mutat U saperet cu, an vide mutat duo. Ex vix electram"
- "documents/book/chap1/sec12.tex:7:144 corrumpit U duo. Ex vix electram corrumpit voluptatibus, sit solet"
- "documents/book/chap1/sec12.tex:7:178 expetenda U voluptatibus, sit solet expetenda id. Nobis solet ornatus"
- "documents/book/chap1/sec12.tex:7:234 audire U nam ex, sea te iriure audire."
- "documents/book/chap1/sec12.tex:9:38 albucius U maiorum vis, eu minim albucius deleniti duo, ut nec"
- "documents/book/chap1/sec12.tex:9:95 decore U instructior. Qui ex decore ridens. Te sea sumo"
- "documents/book/chap1/sec12.tex:9:181 definiebas U sensibus. Sit et maluisset definiebas, vix ei modo omnium"
- "documents/book/chap1/sec12.tex:9:212 copiosae U vix ei modo omnium copiosae. Pri in falli dicunt"
- "documents/book/chap1/sec12.tex:9:235 dicunt U copiosae. Pri in falli dicunt constituto, albucius"
- "documents/book/chap1/sec12.tex:9:242 constituto U Pri in falli dicunt constituto, albucius delicatissimi"
- "documents/book/chap1/sec12.tex:9:263 delicatissimi U constituto, albucius delicatissimi ut mea. Dicant officiis"
- "documents/book/chap1/sec12.tex:9:285 Dicant U delicatissimi ut mea. Dicant officiis vim et."
- "documents/book/chap1/sec12.tex:11:8 elitr U Et cum elitr propriae detraxit, impetus"
- "documents/book/chap1/sec12.tex:11:41 percipitur U propriae detraxit, impetus percipitur duo no, eam verear adolescens"
- "documents/book/chap1/sec12.tex:11:64 verear U percipitur duo no, eam verear adolescens ei. Mel iriure"
- "documents/book/chap1/sec12.tex:11:122 dicit U dolores disputationi at, dicit offendit vel ne. Has"
- "documents/book/chap1/sec12.tex:11:128 offendit U disputationi at, dicit offendit vel ne. Has eros honestatis"
- "documents/book/chap1/sec12.tex:11:251 nemore U audire has eu, qui no nemore fabellas verterem. Nam"
- "documents/book/chap1/sec12.tex:11:267 verterem U qui no nemore fabellas verterem. Nam paulo molestiae"
- "documents/book/chap1/sec12.tex:11:338 vivendo U labore, ad eum dolorum vivendo hendrerit."
- "documents/book/chap1/sec12.tex:13:1 Menandri U Menandri expetendis ne his. Dolorem"
- "documents/book/chap1/sec12.tex:13:10 expetendis U Menandri expetendis ne his. Dolorem platonem"
- "documents/book/chap1/sec12.tex:13:37 platonem U expetendis ne his. Dolorem platonem reprimique cu eam. Admodum"
- "documents/book/chap1/sec12.tex:13:65 Admodum U platonem reprimique cu eam. Admodum postulant efficiendi"
- "documents/book/chap1/sec12.tex:13:83 efficiendi U eam. Admodum postulant efficiendi an sea, mel in legere"
- "documents/book/chap1/sec12.tex:13:124 pertinacia U mel in legere minimum pertinacia. Ut utinam tritani duo"
- "documents/book/chap1/sec12.tex:13:146 tritani U pertinacia. Ut utinam tritani duo. Sed possit signiferumque"
- "documents/book/chap1/sec12.tex:13:191 adhuc U signiferumque ea, ut adhuc essent scripserit has"
- "documents/book/chap1/sec12.tex:13:197 essent U signiferumque ea, ut adhuc essent scripserit has."
- "documents/book/chap1/sec12.tex:13:204 scripserit U ea, ut adhuc essent scripserit has."
- "documents/book/chap1/sec12.tex:15:11 appellantur U Qui dicta appellantur id, ea ferri accommodare"
- "documents/book/chap1/sec12.tex:15:30 ferri U dicta appellantur id, ea ferri accommodare quo. Ad"
- "documents/book/chap1/sec12.tex:15:36 accommodare U appellantur id, ea ferri accommodare quo. Ad eripuit dolorum"
- "documents/book/chap1/sec12.tex:15:118 Munere U atqui electram sit in. Munere tacimates signiferumque"
- "documents/book/chap1/sec12.tex:15:125 tacimates U electram sit in. Munere tacimates signiferumque ne vis"
- "documents/book/chap1/sec12.tex:15:236 reprehendunt U tractatos. Et minim sensibus reprehendunt duo."
- "documents/book/chapter1.tex:6:14 Cayley U \\section{The Cayley Numbers}"
- "documents/book/chapter1.tex:12:21 qualisque U \\chapter{Eos noster qualisque}"
- "documents/book/chapter1.tex:13:36 nusquam U dolor sit amet, et pri nusquam phaedrum convenire,"
- "documents/book/chapter1.tex:13:44 phaedrum U amet, et pri nusquam phaedrum convenire, odio aliquid"
- "documents/book/chapter1.tex:13:95 Detraxit U aliquid principes mel no. Detraxit scripserit eos no, ad"
- "documents/book/chapter1.tex:13:151 everti U congue oporteat nam. Eum everti invenire no, pri corpora"
- "documents/book/chapter1.tex:13:183 detracto U invenire no, pri corpora detracto consulatu in. Solum"
- "documents/book/chapter1.tex:13:192 consulatu U pri corpora detracto consulatu in. Solum audiam dolores"
- "documents/book/chapter1.tex:13:206 Solum U detracto consulatu in. Solum audiam dolores ad eam"
- "documents/book/chapter1.tex:13:261 dicam U ea augue atomorum, at dicam docendi est, an sea"
- "documents/book/chapter1.tex:15:1 Omittam U Omittam insolens an nec, an"
- "documents/book/chapter1.tex:15:29 regione U insolens an nec, an regione copiosae sapientem mea"
- "documents/book/chapter1.tex:15:68 quidam U sapientem mea. Qui id quidam iudicabit, ut vero maluisset"
- "documents/book/chapter1.tex:15:109 Clita U vero maluisset sed. Clita ornatus impedit at sed"
- "documents/book/chapter1.tex:15:146 ancillae U impedit at sed. Ad usu ancillae appetere intellegebat"
- "documents/book/chapter1.tex:15:155 appetere U sed. Ad usu ancillae appetere intellegebat, quem semper"
- "documents/book/chapter1.tex:15:164 intellegebat U usu ancillae appetere intellegebat, quem semper vivendum"
- "documents/book/chapter1.tex:15:190 vivendum U intellegebat, quem semper vivendum ne per. Mea ei modo"
- "documents/book/chapter1.tex:15:242 vituperatoribus U iusto copiosae, facete vituperatoribus ne has."
- "documents/book/chapter1.tex:17:4 clita U In clita assueverit appellantur"
- "documents/book/chapter1.tex:17:10 assueverit U In clita assueverit appellantur has. Mea"
- "documents/book/chapter1.tex:17:90 mediocrem U sed mutat platonem mediocrem eu. Ad quo vitae vivendo"
- "documents/book/chapter1.tex:17:157 sonet U An fugit causae sit, sonet verear senserit pro"
- "documents/book/chapter1.tex:19:4 partem U Ut partem omittantur vix, \\index"
- "documents/book/chapter1.tex:19:11 omittantur U Ut partem omittantur vix, \\index{verterem"
- "documents/book/chapter1.tex:19:138 accusata U hendrerit. Vix eros etiam accusata id. Nec ne voluptua"
- "documents/book/chapter1.tex:19:158 voluptua U accusata id. Nec ne voluptua iracundia mediocritatem"
- "documents/book/chapter1.tex:19:167 iracundia U id. Nec ne voluptua iracundia mediocritatem, no probo"
- "documents/book/chapter1.tex:19:177 mediocritatem U ne voluptua iracundia mediocritatem, no probo consul verear"
- "documents/book/chapter1.tex:19:227 erant U consul verear pri. An vix erant accusamus, usu ut liber"
- "documents/book/chapter1.tex:19:279 altera U gloriatur, per tation altera lobortis ut."
- "documents/book/chapter1.tex:21:1 Wisi U Wisi tibique elaboraret te"
- "documents/book/chapter1.tex:21:14 elaboraret U Wisi tibique elaboraret te quo, enim erroribus"
- "documents/book/chapter1.tex:21:38 erroribus U elaboraret te quo, enim erroribus pro ad. Complectitur"
- "documents/book/chapter1.tex:21:56 Complectitur U enim erroribus pro ad. Complectitur definitiones ex his"
- "documents/book/chapter1.tex:21:69 definitiones U pro ad. Complectitur definitiones ex his, ex patrioque"
- "documents/book/chapter1.tex:21:93 patrioque U definitiones ex his, ex patrioque reprimique his, mei"
- "documents/book/chapter1.tex:21:172 inermis U accommodare ea. Duo numquam inermis ponderum id, quo eu"
- "documents/book/chapter1.tex:21:180 ponderum U Duo numquam inermis ponderum id, quo eu nobis petentium"
- "documents/book/chapter1.tex:21:275 Possit U moderatius scribentur. Possit utroque platonem ad"
- "documents/book/chapter1.tex:21:350 constituam U ad, ius at deleniti constituam. Vel id regione pericula"
- "documents/book/chapter1.tex:21:407 laboramus U contentiones, ei vix laboramus urbanitas."
- "documents/book/chapter1.tex:21:417 urbanitas U ontentiones, ei vix laboramus urbanitas."
- "documents/book/chapter1.tex:23:37 reque U similique moderatius, reque iriure ad sit. In fierent"
- "documents/book/chapter1.tex:23:221 omnesque U mutat labore. Cu eum omnesque adipisci, pri cu postulant"
- "documents/book/chapter1.tex:25:46 omnes U urbanitas. Eum quot omnes argumentum ei. Sonet"
- "documents/book/chapter1.tex:25:67 Sonet U omnes argumentum ei. Sonet interesset ex pri. Ad"
- "documents/book/chapter1.tex:25:73 interesset U argumentum ei. Sonet interesset ex pri. Ad vis partem"
- "documents/book/chapter1.tex:25:114 Persius U Ad vis partem iriure. Persius equidem indoctum at"
- "documents/book/chapter1.tex:25:130 indoctum U iriure. Persius equidem indoctum at sit, id per solet"
- "documents/book/chapter1.tex:25:170 maiestatis U per solet similique maiestatis. Ad audiam nostrud eos"
- "documents/book/chapter1.tex:27:129 Denique U case mollis tincidunt. Denique accommodare te sed."
- "documents/book/chapter1.tex:27:226 labores U regione, mei ut commodo labores. Nec causae salutatus"
- "documents/book/chapter1.tex:27:305 pertinax U mel at, sea ea quidam pertinax salutandi. Nec at periculis"
- "documents/book/chapter1.tex:29:49 liberavisse U honestatis ius, ei sed erat liberavisse definitionem. Lucilius"
- "documents/book/chapter1.tex:29:111 Alia U senserit mediocrem nec ut. Alia omnium reprimique sit"
- "documents/book/chapter1.tex:29:208 concludaturque U antiopam an. Vim modo concludaturque at, autem expetendis"
- "documents/book/chapter1.tex:31:102 eirmod U omnesque pertinacia, usu ea eirmod aliquam perpetua. Brute"
- "documents/book/chapter1.tex:31:117 perpetua U usu ea eirmod aliquam perpetua. Brute omittam vel ne"
- "documents/book/chapter1.tex:31:162 debet U vel ne. Nam ea malis debet, placerat percipitur"
- "documents/book/chapter1.tex:31:197 Tollit U placerat percipitur per id. Tollit salutandi mel an, cum"
- "documents/book/chapter1.tex:33:1 Utinam U Utinam verterem pertinax ad"
- "documents/book/chapter1.tex:33:42 labitur U pertinax ad pri, aliquip labitur erroribus per eu, est"
- "documents/book/chapter1.tex:33:106 simul U adipisci pertinax at. Etiam simul constituto eu duo, hinc"
- "documents/book/chapter1.tex:33:131 hinc U simul constituto eu duo, hinc duis atomorum ut has"
- "documents/book/chapter1.tex:33:158 Intellegat U duis atomorum ut has. Intellegat disputationi vituperatoribus"
- "documents/book/chapter1.tex:33:261 eruditi U te cum. Vis ea paulo eruditi, ut iuvaret detraxit"
- "documents/book/chapter1.tex:33:290 intellegat U ut iuvaret detraxit intellegat nam. Ex falli facete"
- "documents/book/chapter1.tex:35:1 Dicit U Dicit errem eruditi mei cu"
- "documents/book/chapter1.tex:35:7 errem U Dicit errem eruditi mei cu, et ferri"
- "documents/book/chapter1.tex:35:38 zril U eruditi mei cu, et ferri zril primis eam, usu ea impetus"
- "documents/book/chapter1.tex:35:93 denique U necessitatibus. Possit denique ne vis, his no magna"
- "documents/book/chapter1.tex:35:153 ludus U Natum option at mea, ludus primis petentium te"
- "documents/book/chapter1.tex:35:236 suavitate U eratoribus nec. Ius te homero suavitate, est et torquatos quaerendum"
- "documents/book/chapter1.tex:35:264 quaerendum U suavitate, est et torquatos quaerendum. Vel te assum dicant"
- "documents/book/chapter1.tex:35:283 assum U torquatos quaerendum. Vel te assum dicant tibique."
- "documents/book/chapter1.tex:37:44 meliore U pericula adipiscing. Justo meliore per no, copiosae placerat"
- "documents/book/chapter1.tex:37:130 deterruisset U primis nemore. Wisi deterruisset vis cu, nec omnes doctus"
- "documents/book/chapter1.tex:37:161 doctus U eterruisset vis cu, nec omnes doctus ut. Prima atomorum percipitur"
- "documents/book/chapter1.tex:37:213 veri U percipitur ut nam, sea no veri scaevola periculis,"
- "documents/book/chapter1.tex:37:245 mentitum U scaevola periculis, sit an mentitum suscipiantur."
- "documents/book/chapter1.tex:39:107 aeterno U Et per eros mollis aeterno. Ut sea idque praesent"
- "documents/book/chapter1.tex:39:123 idque U mollis aeterno. Ut sea idque praesent constituto"
- "documents/book/chapter1.tex:39:158 repudiare U constituto, integre repudiare definitiones eu vix"
- "documents/book/chapter1.tex:39:247 movet U mentitum et duo. Vel movet vivendum necessitatibus"
- "documents/book/chapter1.tex:41:93 intellegam U tritani vim, vero lorem intellegam sea te. Ex veniam tibique"
- "documents/book/chapter1.tex:41:130 sententiae U te. Ex veniam tibique sententiae per, ne vero harum laoreet"
- "documents/book/chapter1.tex:41:233 recteque U utinam. No vis stet recteque sapientem."
- "documents/book/chapter2.tex:2:36 probatus U dolor sit amet, ut mei probatus partiendo definiebas"
- "documents/book/chapter2.tex:2:103 invidunt U signiferumque, elitr invidunt nam in. Id est essent"
- "documents/book/chapter2.tex:2:159 epicuri U sententiae, ex qui nulla epicuri. Falli omnesque eu usu"
- "documents/book/chapter2.tex:2:168 Falli U ex qui nulla epicuri. Falli omnesque eu usu. Te"
- "documents/book/chapter2.tex:2:199 veritus U omnesque eu usu. Te sale veritus facilisi pri. Ad mea"
- "documents/book/chapter2.tex:4:62 posidonium U eripuit te, vix voluptaria posidonium et. Eum habeo concludaturque"
- "documents/book/chapter2.tex:4:177 Omittantur U dictas complectitur an. Omittantur consectetuer vis ne"
- "documents/book/chapter2.tex:6:31 vocent U case moderatius, brute vocent iracundia vim ei. Ea"
- "documents/book/chapter2.tex:6:114 dicat U sensibus eum et, prima dicat per et. Te eos meis"
- "documents/book/chapter2.tex:6:221 Epicurei U suscipit sensibus sed in. Epicurei moderatius quaerendum"
- "documents/book/chapter2.tex:6:365 timeam U corpora nostrum has. Diam timeam qui id, habeo perfecto"
- "documents/book/chapter2.tex:8:90 deseruisse U Per te nisl tacimates deseruisse, mel cu quidam iudicabit"
- "documents/book/chapter2.tex:8:152 alienum U aliquando. Sit wisi sonet alienum ex, id vel quando invenire"
- "documents/book/chapter2.tex:8:255 ceteros U putent cum et. Nec graeci ceteros omittam at, an rebum"
- "documents/book/chapter2.tex:8:284 oportere U omittam at, an rebum oportere repudiandae has. An"
- "documents/book/chapter2.tex:8:368 diceret U dolore erroribus, mel diceret officiis ex, eu adipiscing"
- "documents/book/chapter3.tex:2:136 dissentias U sea ex, id vel tritani dissentias. Quo veniam inciderint"
- "documents/book/chapter3.tex:2:174 oratio U veniam inciderint at, oratio meliore partiendo ei"
- "documents/book/chapter3.tex:4:8 nostro U Soluta nostro facilisi in sed. Paulo"
- "documents/book/chapter3.tex:4:38 tantas U facilisi in sed. Paulo tantas voluptaria eu pro, cu"
- "documents/book/chapter3.tex:4:213 menandri U iudicabit eam id, ei menandri reprimique eam. Mea"
- "documents/book/chapter3.tex:4:242 suas U reprimique eam. Mea suas graeco deterruisset"
- "documents/book/chapter3.tex:6:1 Decore U Decore ancillae in his, vis"
- "documents/book/chapter3.tex:6:73 abhorreant U Vim te hinc nusquam abhorreant, mei an illum facilis"
- "documents/book/chapter3.tex:6:124 comprehensam U facilis. Nec an partiendo comprehensam, ius minim vituperatoribus"
- "documents/book/chapter3.tex:6:168 Putent U vituperatoribus ad. Putent feugiat referrentur"
- "documents/book/chapter3.tex:6:183 referrentur U eratoribus ad. Putent feugiat referrentur nec an. Ut movet facilisis"
- "documents/book/chapter3.tex:6:227 vocibus U movet facilisis nam, vocibus habemus ex sea. Primis"
- "documents/book/chapter3.tex:6:266 noluisse U sea. Primis aperiri noluisse cum et, scripta aliquam"
- "documents/book/chapter3.tex:8:1 Choro U Choro appetere vis ea, sit"
- "documents/book/chapter3.tex:8:44 consetetur U sit vide pertinacia consetetur ei. Ad nihil volutpat"
- "documents/book/chapter3.tex:8:89 viris U volutpat eam, id pro viris causae luptatum. Aeque"
- "documents/book/chapter3.tex:8:102 luptatum U id pro viris causae luptatum. Aeque aperiam saperet"
- "documents/book/chapter3.tex:8:112 Aeque U viris causae luptatum. Aeque aperiam saperet eos"
- "documents/book/chapter3.tex:8:145 cetero U aperiam saperet eos ea, cu cetero explicari mei. Velit"
- "documents/book/chapter3.tex:8:152 explicari U saperet eos ea, cu cetero explicari mei. Velit luptatum"
- "documents/book/chapter3.tex:11:1 Invidunt U Invidunt atomorum tractatos ne"
- "documents/book/chapter3.tex:11:83 neglegentur U sensibus efficiantur neglegentur eu, quo molestie vituperatori"
- "documents/book/chapter3.tex:13:8 purto U Qui ei purto denique inciderint."
- "documents/book/chapter3.tex:13:116 Atqui U cu admodum ancillae. Atqui tractatos per ne, usu"
- "documents/book/chapter3.tex:15:103 dissentiet U incorrupte. Mea mentitum dissentiet at. Qui no ceteros epicurei"
- "documents/book/chapter3.tex:15:154 affert U epicurei intellegam, affert utroque quaestio duo"
- "documents/book/chapter3.tex:15:169 quaestio U intellegam, affert utroque quaestio duo ad, reque nostrud"
- "documents/book/chapter3.tex:18:1 Eruditi U Eruditi perfecto perpetua vix"
- "documents/book/chapter3.tex:18:78 nominati U sententiae in est. Mel saepe nominati assentior cu. Ne vix"
- "documents/book/chapter3.tex:18:154 persius U reprehendunt, te vel velit persius suscipiantur. Has ex"
- "documents/book/chapter3.tex:18:189 volumus U suscipiantur. Has ex natum volumus. Sit mutat primis tincidunt"
- "documents/book/chapter3.tex:18:353 quodsi U sale dicat diceret, quodsi doctus dolorem eos et"
- "documents/book/preface.tex:2:178 tota U dicant incorrupte no, in tota admodum adipiscing sea"
- "documents/book/preface.tex:2:217 fastidii U adipiscing sea. Eum dicat fastidii definitionem eu, discere"
- "documents/book/preface.tex:2:243 discere U fastidii definitionem eu, discere nostrum ex mel, hinc"
- "documents/book/preface.tex:2:325 virtute U soleat regione, ut ius virtute detraxit. Mei erroribus"
- "documents/book/preface.tex:4:183 Nusquam U epicuri rationibus in. Nusquam temporibus ad his, id"
- "documents/book/preface.tex:4:250 latine U causae eligendi. Pro odio latine perpetua an, nam meis"
- "documents/book/preface.tex:6:36 aeque U sententiae pro ne, ius an aeque tamquam appareat, salutatus"
- "documents/book/preface.tex:6:50 appareat U ius an aeque tamquam appareat, salutatus dissentias"
- "documents/book/preface.tex:6:266 vituperata U congue id vis, repudiare vituperata constituam his in. Impetus"
- "documents/book/preface.tex:6:331 Tibique U integre argumentum est in. Tibique consequat duo te, tritani"
- "documents/book/preface.tex:8:12 singulis U Quo solet singulis expetendis eu. Veniam"
- "documents/book/preface.tex:8:43 utamur U expetendis eu. Veniam utamur pri no. Adipiscing persequeri"
- "documents/book/preface.tex:8:69 persequeris U utamur pri no. Adipiscing persequeris usu te, in amet dico"
- "documents/book/preface.tex:8:97 dico U persequeris usu te, in amet dico singulis sed, illum"
- "documents/book/preface.tex:10:2 Graeci U Graeci tincidunt vel ut, te"
- "documents/book/preface.tex:10:72 legimus U adversarium pri, an vel legimus abhorreant consetetur"
- "documents/book/preface.tex:12:114 graece U dolorem pro, cum wisi graece ad. Et vel tota tantas"
- "documents/book/preface.tex:12:166 delicata U maiorum. Augue legere delicata est ei, ne impedit abhorreant"
- "documents/book/preface.tex:14:7 ocurreret U Erat ocurreret nam an, homero iuvaret"
- "documents/book/preface.tex:14:66 conceptam U corrumpit ea nec. Dolorum conceptam expetendis ad cum, ad"
- "documents/book/preface.tex:14:156 Illud U signiferumque no mei. Illud viderer gubergren ex"
- "documents/book/preface.tex:14:242 Timeam U nisl aeterno pericula. Timeam epicuri cu eam, ludus"
- "documents/book/preface.tex:16:2 Populo U Populo pertinax et nec, graeci"
- "documents/book/preface.tex:18:158 Melius U nusquam iracundia id. Melius delicatissimi te eum"
- "documents/book/preface.tex:20:186 populo U in usu, ne mel posse populo principes. Cu consul"
- "documents/book/preface.tex:20:292 nonumes U luptatum reprehendunt, nonumes antiopam pri ei. Cu"
- "documents/book/preface.tex:20:329 disputando U pri ei. Cu electram disputando mei."
- "documents/book/preface.tex:22:149 Veri U ignota scribentur in. Veri adhuc mea ex, doctus"
- "documents/book/preface.tex:26:91 fuisset U patrioque ex his. Sed fuisset insolens ut. Quo cu"
- "documents/book/preface.tex:26:165 Simul U solet petentium ad. Simul euismod oporteat ei"
- "documents/book/preface.tex:26:220 Appareat U assum gubergren est ei. Appareat iudicabit qui ea, mei"
- "documents/book/preface.tex:28:159 Expetendis U labores detraxit in. Expetendis intellegam quo ut, nibh"
- "documents/book/preface.tex:30:198 fabulas U nobis omnesque et, ius fabulas dolorem an. Eu nam unum"
- "documents/book/preface.tex:32:150 mundi U appareat eos ei. Pri ea mundi laboramus adolescens"
- "documents/book/preface.tex:32:243 Dicunt U viderer eripuit pri ei. Dicunt salutandi mei id."
- "documents/book/preface.tex:34:147 Inani U populo sententiae cu. Inani essent eam an. Ad semper"
- "documents/book/preface.tex:36:236 putant U delicatissimi ex, qui putant meliore tractatos an"
- "documents/book/preface.tex:38:56 Epicuri U aliquam singulis quo ne. Epicuri legendos mea cu. Vel"
- "documents/book/preface.tex:40:158 Mediocrem U pericula theophrastus. Mediocrem salutatus id eum. Id"
- "documents/book/preface.tex:42:278 Solet U praesent definitionem cu. Solet propriae vel cu, per"
- "documents/book/preface.tex:44:142 inimicus U ex, vim eu nominati inimicus. Sea ne posse meliore"
- "documents/book/preface.tex:46:120 Mazim U stet consetetur te vis. Mazim albucius conclusionemque"
- "documents/book/preface.tex:46:135 conclusionemque U vis. Mazim albucius conclusionemque no nam, convenire repudiare"
- "documents/checkliste-holidays/checkliste-holidays.tex:30:117 etix U & 2h & LH1132; etix 123-4567890123\\\\"
- "documents/checkliste-holidays/checkliste-holidays.tex:31:18 Aeroport U 04.12.2016 & Aeroport - Terminal C & 1"
- "documents/checkliste-holidays/checkliste-holidays.tex:31:118 Catalunya U & 35m & A2 - Pl. Catalunya - Fontanella (3 Halte"
- "documents/checkliste-holidays/checkliste-holidays.tex:31:130 Fontanella U A2 - Pl. Catalunya - Fontanella (3 Halte) \\\\"
- "documents/checkliste-holidays/checkliste-holidays.tex:33:155 midrule U 34) 93 399 14 20 \\\\\\midrule"
- "documents/checkliste-holidays/checkliste-holidays.tex:56:18 Boxershorts U \\item 11 Boxershorts"
- "documents/checkliste-holidays/checkliste-holidays.tex:78:15 Powerbank U \\item Powerbank"
- "documents/checkliste-holidays/checkliste-holidays.tex:89:11 Simyo U \\item Simyo (Blau) - Euro-Tarif"
- "documents/checkliste-holidays/checkliste-holidays.tex:98:65 Espanya U 18:35 & Pl Espanya-FGC & 18:"
- "documents/checkliste-holidays/checkliste-holidays.tex:99:62 Glòries U & 19:02 & Glòries &"
- "documents/checkliste-holidays/checkliste-holidays.tex:99:114 Fondo U & 27m & L1 - Fondo (8 Halte) \\\\"
- "documents/checkliste-holidays/checkliste-holidays.tex:100:18 Glóries U 04.12.2016 & Glóries &"
- "documents/checkliste-holidays/checkliste-holidays.tex:100:62 Fòrum U & 19:24 & Fòrum"
- "documents/checkliste-holidays/checkliste-holidays.tex:100:114 Estació U & 11m & T4 - Estació de Sant Adrià (6 Halte"
- "documents/checkliste-holidays/checkliste-holidays.tex:100:125 Sant U m & T4 - Estació de Sant Adrià (6 Halte)\\\\"
- "documents/checkliste-holidays/checkliste-holidays.tex:100:130 Adrià U T4 - Estació de Sant Adrià (6 Halte)\\\\"
- "documents/checkliste-holidays/checkliste-holidays.tex:101:62 CCIB U & 19:35 & CCIB"
- "documents/checkliste-holidays/checkliste-holidays.tex:101:119 Convencions U 2m & Centre de Convencions Internacional de Barcelona"
- "documents/checkliste-holidays/checkliste-holidays.tex:101:131 Internacional U Centre de Convencions Internacional de Barcelona \\\\\\midrule"
- "documents/checkliste-klettersteig/checkliste-klettersteig.tex:32:94 Imst U nchen & Hoch-Imst & 146km"
- "documents/checkliste-klettersteig/checkliste-klettersteig.tex:33:89 Muttekopfhütte U Hoch-Imst & Muttekopfhütte & 5km"
- "documents/checkliste-klettersteig/checkliste-klettersteig.tex:46:18 Muttekopf U Übernachtung Muttekopf-Hütte & 22.00 Euro"
- "documents/checkliste-klettersteig/checkliste-klettersteig.tex:72:15 Softshell U \\item Softshell"
- "documents/checkliste-klettersteig/checkliste-klettersteig.tex:97:15 Bandschlinge U \\item Bandschlinge"
- "documents/checkliste-klettersteig/checkliste-klettersteig.tex:99:15 Helmlampe U \\item Helmlampe (!)"
- "documents/chess-chessboard-4x4/chess-chessboard-4x4.tex:8:3 showmover U % showmover shows which player is"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:38:6 adsfaa U asdf adsfaa asdfasd fasdf sdfsdrurtzhfg"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:38:14 asdfasd U asdf adsfaa asdfasd fasdf sdfsdrurtzhfg"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:38:22 fasdf U asdf adsfaa asdfasd fasdf sdfsdrurtzhfg tdfutu"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:38:28 sdfsdrurtzhfg U adsfaa asdfasd fasdf sdfsdrurtzhfg tdfutu fsdfsdfger thz"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:38:42 tdfutu U fasdf sdfsdrurtzhfg tdfutu fsdfsdfger thz ergte"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:38:50 fsdfsdfger U sdfsdrurtzhfg tdfutu fsdfsdfger thz ergte"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:38:65 ergte U tdfutu fsdfsdfger thz ergte"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:39:2 fasd U fasd fsad fasdf asdfa sdfasdf"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:39:7 fsad U fasd fsad fasdf asdfa sdfasdf"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:39:18 asdfa U fasd fsad fasdf asdfa sdfasdf asdssdfwer wewe"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:39:24 sdfasdf U fasd fsad fasdf asdfa sdfasdf asdssdfwer wewe asdf"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:39:32 asdssdfwer U fasdf asdfa sdfasdf asdssdfwer wewe asdf asdf asdfa"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:39:43 wewe U asdfa sdfasdf asdssdfwer wewe asdf asdf asdfa asasdf"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:39:64 asasdf U wewe asdf asdf asdfa asasdf"
- "documents/citation-cleveref-abbreviations/citation-cleveref-abbreviations.tex:40:1 dasdfs U dasdfs."
- "documents/colors/colors.tex:11:22 DFECF U \\textcolor[HTML]{DFECF7}{inline example}."
- "documents/confirmation-zwischenmiete-re/confirmation-zwischenmiete-re.tex:13:52 propper (proper) U slash]{siunitx} % for propper units"
- "documents/cooking-cuisine/cooking-cuisine.tex:21:16 Mozzarrella U reiben und den Mozzarrella grob würfeln. Die Basilikumbl"
- "documents/cooking-cuisine/cooking-cuisine.tex:21:46 Basilikumblätter U Mozzarrella grob würfeln. Die Basilikumblätter abzupfen, waschen"
- "documents/cooking-cuisine/cooking-cuisine.tex:28:1 Packungsangabe U Packungsangabe al dente garen."
- "documents/cooking-cuisine/cooking-cuisine.tex:28:19 dente U Packungsangabe al dente garen."
- "documents/cooking-cuisine/cooking-cuisine.tex:36:31 anschwitzen U und die Chilischote anschwitzen. Die passierten Tomaten"
- "documents/cooking-cuisine/cooking-cuisine.tex:43:5 Mozzarrellawürfel U der Mozzarrellawürfel unterheben. Die Basilikumbl"
- "documents/cooking-cuisine/cooking-cuisine.tex:50:46 Knoblauchbaguette U ein grüner Salat und Knoblauchbaguette."
- "documents/cooking-recipe/cooking-recipe.tex:16:34 dottedtocline U newcommand*\\l@subsubsection{\\@dottedtocline{3}{3em}{0em}}"
- "documents/cooking-recipe/cooking-recipe.tex:23:12 Primi U % \\chapter{Primi piatti}"
- "documents/cooking-recipe/cooking-recipe.tex:23:18 piatti U % \\chapter{Primi piatti}"
- "documents/cooking-recipe/cooking-recipe.tex:34:10 Basikikum U 1~Bund Basikikum;"
- "documents/csv-physik/csv-physik.tex:9:44 booktabs U table with \\toprule from booktabs"
- "documents/csv-physik/csv-physik.tex:16:9 siunitx U % Setup siunitx:"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:29:26 Signatureinbingung U usepackage{pdfpages} % Signatureinbingung und includepdf"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:29:49 includepdf U Signatureinbingung und includepdf"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:46:42 linkcolor U palettes: shade=B9D7D9 and linkcolor=A40000; shade=D4D7FE"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:72:25 Thoma U pdfkeywords = {Martin Thoma,KIT,CV},"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:106:38 Cashlink U Django Backends for Cashlink}\\\\[5pt]}"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:117:39 Netlight U large IT Consultant for Netlight Consulting GmbH\\\\"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:121:111 Keras U .10121.pdf}{SciPy}, Keras (Tensorflow backend"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:122:28 pytest U Jupyter Notebooks, Pandas, pytest, Flask and nginx. Usually"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:125:1 Occassionally (Occasionally) U Occassionally, Kafka, GraphQL, building"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:125:126 SDLC U security topics (AppSec, SDLC, SCA, SAST, DAST, threat"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:206:31 Convolutional U textbf{\\color{headings}of Convolutional Neural Network}}\\\\"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:271:18 Numpy U & Numpy, \\href{https://arxiv"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:272:44 Pydantic U Functional Programming, Pydantic, \\\\"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:273:124 Pypika U {Type Annotations}, Pypika, \\href{https://martin"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:325:9 MATHOS U \\textit{MATHOS - a calendar app for"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:340:42 cryptosystem U Thesis about the RSA cryptosystem\\\\"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:373:20 convolutional U about papers about convolutional networks.\\\\"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:374:65 bouldering U novels, to go hiking, bouldering, and climbing."
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:437:17 agains (against) U & \\textit{chess agains each other. } \\hfill"
- "documents/cv-curriculum-vitae/cv-curriculum-vitae.tex:447:50 Udacity U Artificial Intelligence} & Udacity\\\\"
- "documents/cv-curriculum-vitae/README.md:10:22 msttcorefonts U sudo apt-get install msttcorefonts"
- "documents/cyrillic/cyrillic.tex:10:13 Русский U \\subsection{Русский}"
- "documents/cyrillic/cyrillic.tex:11:5 люди U Все люди рождаются свободным"
- "documents/cyrillic/cyrillic.tex:11:10 рождаются U Все люди рождаются свободными и равным"
- "documents/cyrillic/cyrillic.tex:11:20 свободными U Все люди рождаются свободными и равными в своем д"
- "documents/cyrillic/cyrillic.tex:11:33 равными U даются свободными и равными в своем достоинстве"
- "documents/cyrillic/cyrillic.tex:11:43 своем U бодными и равными в своем достоинстве и"
- "documents/cyrillic/cyrillic.tex:11:49 достоинстве U и и равными в своем достоинстве и"
- "documents/cyrillic/cyrillic.tex:12:1 правах U правах."
- "documents/eaz/eaz.tex:131:62 Primteiler U = n! + 1$ hat einen Primteiler,"
- "documents/eaz/eaz.tex:155:11 Sylowsätze U \\section*{Sylowsätze}"
- "documents/eaz/eaz.tex:158:22 Sylowgruppe U mindestens eine $p$-Sylowgruppe."
- "documents/eaz/eaz.tex:170:21 Sylowgruppen U \\item Je zwei $p$-Sylowgruppen von $G$ sind zueinander"
- "documents/eaz/eaz.tex:193:26 Reziprozitätsgesetz U item[(V)] Quadratische Reziprozitätsgesetz: Es seinen $p \\neq l"
- "documents/Einnahmenueberschussrechnung/Einnahmenueberschussrechnung.tex:9:3 pdfinfo U % pdfinfo"
- "documents/Einnahmenueberschussrechnung/README.md:3:10 Einnahmenueberschussrechnung U unter `Einnahmenueberschussrechnung.tex` Anmerkungen machen"
- "documents/entropie-distanz/entropie-distanz.tex:95:18 disktrete U Seien $d_1, d_2$ disktrete Wahrscheinlichkeitsverteilung"
- "documents/entropie-distanz/entropie-distanz.tex:98:33 Entropiedistanz U die \\textbf{gewichtete Entropiedistanz} von $d_1$ und $d_2"
- "documents/entropie-distanz/entropie-distanz.tex:107:17 Codebook U \\item \\verb+CodebookSet+: Eine Menge von"
- "documents/entropie-distanz/entropie-distanz.tex:107:46 Codebooks U CodebookSet+: Eine Menge von Codebooks. Jedes Codebook stellt"
- "documents/entropie-distanz/entropie-distanz.tex:109:11 Kovarianzmatrix U Kovarianzmatrix und den Mittelwertsvektor"
- "documents/entropie-distanz/entropie-distanz.tex:109:35 Mittelwertsvektor U Kovarianzmatrix und den Mittelwertsvektor beschrieben."
- "documents/entropie-distanz/entropie-distanz.tex:110:17 Distrib U \\item \\verb+DistribSet+: Eine Menge von"
- "documents/entropie-distanz/entropie-distanz.tex:112:15 reelen U mit reelen Zahlen $c_i \\in \\mathbb"
- "documents/entropie-distanz/entropie-distanz.tex:141:5 Entropiedistanzmaß U dem Entropiedistanzmaß am Ähnlichsten. Die"
- "documents/Feedback/Feedback.tex:23:3 pdfauthor U pdfauthor = {Martin Thoma},"
- "documents/Feedback/Feedback.tex:28:28 Seitestil U pagestyle{fancy}% eigenen Seitestil aktivieren}"
- "documents/Feedback/Feedback.tex:59:40 Vorlesungsstoffs U textbf{Wiederholung des Vorlesungsstoffs} war\\dots\\\\"
- "documents/flashcards/flashcards.tex:33:52 Tangentialebene U D_p F)$ die \\textbf{Tangentialebene}"
- "documents/flashcards/flashcards.tex:44:33 orientierbar U item $S$ heißt \\textbf{orientierbar},"
- "documents/flashcards/flashcards.tex:57:9 scheibt U Man scheibt: $\\kappa_\\gamma(0)"
- "documents/footnotes/footnotes.tex:8:40 sadipscing U sit amet, consetetur sadipscing elitr, sed diam nonumy"
- "documents/footnotes/footnotes.tex:8:67 nonumy U sadipscing elitr, sed diam nonumy eirmod tempor invidunt"
- "documents/footnotes/footnotes.tex:8:174 aliquyam U second footnote} magna aliquyam erat, sed diam voluptua"
- "documents/footnotes/footnotes.tex:8:276 kasd U ea rebum. Stet clita kasd gubergren, no sea takimata"
- "documents/footnotes/footnotes.tex:8:299 takimata U kasd gubergren, no sea takimata sanctus est Lorem ipsum"
- "documents/footnotes/footnotes.tex:10:213 zzril U blandit praesent luptatum zzril delenit augue duis dolore"
- "documents/footnotes/footnotes.tex:10:219 delenit U praesent luptatum zzril delenit augue duis dolore te"
- "documents/footnotes/footnotes.tex:10:339 nonummy U adipiscing elit, sed diam nonummy nibh euismod tincidunt"
- "documents/gallery/gallery.tex:3:38 includestandalone U standalone} % needed for includestandalone"
- "documents/gallery/gallery.tex:30:5 bgcolor U bgcolor=myLightGray,cfbox=borderColor"
- "documents/gallery/gallery.tex:30:25 cfbox U bgcolor=myLightGray,cfbox=borderColor 1px 0px"
- "documents/gallery/gallery2.tex:1:15 Bombadil U % Author: Tom Bombadil"
- "documents/gallery/gallery2.tex:49:29 captionnode U \\node[below right] (captionnode) at (current bounding"
- "documents/GeoTopo-titlepage/GeoTopo.tex:22:39 adjustwidth U changepage} % for the adjustwidth environment"
- "documents/GeoTopo-titlepage/GeoTopo.tex:34:51 ntheorem U to be after hyperref, ntheorem, amsthm"
- "documents/GeoTopo-titlepage/GeoTopo.tex:34:61 amsthm U hyperref, ntheorem, amsthm"
- "documents/glossary/document.tex:24:14 adsfasdf U \\caption{adsfasdf \\gls{SLP} adsfasdf."
- "documents/handout-art-in-ml/handout-art-in-ml.tex:123:147 Gradientenabstieg U nnen mittels \\textit{Gradientenabstieg} automatisch trainiert"
- "documents/handout-art-in-ml/handout-art-in-ml.tex:128:48 vollverbundenen U Netz, welches keine vollverbundenen Schichten hat"
- "documents/handout-art-in-ml/handout-art-in-ml.tex:148:23 detailierte U Alle Quellen und eine detailierte Beschreibung der Verfahren"
- "documents/internet-sonderkuendigung/internet-sonderkuendigung.tex:53:37 Downloadgeschwindigkeit U shop.m-net.de nur eine Downloadgeschwindigkeit von 18~Mbit/s"
- "documents/internet-sonderkuendigung/internet-sonderkuendigung.tex:60:16 Beendigungszeitpunktes U Angabe des Beendigungszeitpunktes zu. Gleichzeitig widerrufe"
- "documents/journey-plan-west-highland-way/checkliste.md:3:13 Aircontact U - Rucksack (Aircontact 55+10, 2.6kg)"
- "documents/journey-plan-west-highland-way/checkliste.md:16:21 moorhead U - [ ] Schlafsack (moorhead MICRO LITE III 185,"
- "documents/journey-plan-west-highland-way/checkliste.md:17:9 Isomatte U - [ ] Isomatte (Loftra Lite, 990g)"
- "documents/journey-plan-west-highland-way/checkliste.md:17:19 Loftra U - [ ] Isomatte (Loftra Lite, 990g)"
- "documents/journey-plan-west-highland-way/checkliste.md:21:3 Hygene U - Hygene"
- "documents/journey-plan-west-highland-way/checkliste.md:32:24 Ibuproven U [ ] Schmerzmittel (Ibuproven)"
- "documents/journey-plan-west-highland-way/checkliste.md:33:9 Durchfallmittel U - [ ] Durchfallmittel"
- "documents/journey-plan-west-highland-way/checkliste.md:40:21 Auslandstariv U - [ ] Smartphone (Auslandstariv?)"
- "documents/journey-plan-west-highland-way/journey-plan-west-highland-way.tex:26:62 Milngavie U & 18:01 & Milngavie [MLN] & 19"
- "documents/journey-plan-west-highland-way/journey-plan-west-highland-way.tex:30:136 nationalexpress U & 2h 5m & coach.nationalexpress.com \\\\"
- "documents/journey-plan-west-highland-way/journey-plan-west-highland-way.tex:31:130 Ryanair U 00 & 1h 20m & Ryanair"
- "documents/kit-agb/kit-agb.tex:33:10 GEHTS U %%% HIER GEHTS LOS! %%%%%%%%%%%%%%"
- "documents/kit-agb/kit-agb.tex:43:16 Vertiefungsfach U $\\boxtimes$ Vertiefungsfach \\\\"
- "documents/kit-agb/kit-agb.tex:45:19 Vertiefungs U %% Namen des Wahl/Vertiefungs/Ergaenzungsfachs hier"
- "documents/kit-agb/kit-agb.tex:61:9 gehts U %% Hier gehts weiter:"
- "documents/kit-agb/kit-agb.tex:102:18 nachgehackt U immer wieder nachgehackt."
- "documents/kit-agb/kit-agb.tex:124:56 Komilitonen U 2 Treffen à 5h mit Komilitonen."
- "documents/kit-agb/kit-agb.tex:177:72 Metacost U Daten. Es wird z.b. von Metacost"
- "documents/kit-agb/kit-agb.tex:186:30 niedrigt U niedrigt. Wenn richtig klassifiziert"
- "documents/kit-agb/kit-agb.tex:189:19 relabelt U \\item Wie relabelt man wenn man die Conditional"
- "documents/kit-agb/kit-agb.tex:200:30 Klassifier U Klassifier das gleiche Ergebnis"
- "documents/kit-agb/kit-agb.tex:210:49 Marginalwahrscheinlichkeiten U wird also über die Marginalwahrscheinlichkeiten"
- "documents/kit-agb/kit-agb.tex:216:16 rumgestammelt U Frage sehr rumgestammelt; da solltet ihr nicht"
- "documents/kit-mathe-template/kit-mathe-template.tex:53:24 MATHBAST U \\item \\texttt{[MATHBAST01]} Einführung in die"
- "documents/kit-mathe-template/kit-mathe-template.tex:55:37 Markovsche U texttt{[MATHBAST03]} Markovsche Ketten (6 ECTS)"
- "documents/kit-mathe-template/kit-mathe-template.tex:56:24 MATHMMST U \\item \\texttt{[MATHMMST11]} Markovsche Entscheidungsp"
- "documents/kit-mathe-template/kit-mathe-template.tex:59:39 Kühnlein U bereits mit Herrn Dr. Kühnlein abgesprochen, siehe"
- "documents/kit-mathe-template/README.md:8:44 Kühnleins U template, sign it, add Dr. Kühnleins permission and give"
- "documents/kit-mathe-template/README.md:9:23 Gheta U to ... hm ... [Dr. Gheta](http://www.informatik"
- "documents/kit-muendlich-info/muendlich-we-2013-martin-thoma.tex:84:25 Nußbaumer U Web Engineering & Dr. Nußbaumer & 12/13 & Ja \\\\[0."
- "documents/kit-muendlich-info/muendlich-we-2013-martin-thoma.tex:147:26 Athmosphäre U Sehr nett, angenehme Athmosphäre."
- "documents/kit-muendlich-info/muendlich-we-2013-martin-thoma.tex:173:63 sonstwie U Beweisen gefragt oder sonstwie nachgehakt?"
- "documents/kit-muendlich-info/muendlich-we-2013-martin-thoma.tex:184:106 delinearisiert U auf weitere Ressourcen delinearisiert werden kann)."
- "documents/kit-muendlich-info/muendlich-we-2013-martin-thoma.tex:188:30 Addressierbare U item[$\\Rightarrow$] Addressierbare Einheiten, MIME-Types"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:122:5 Kalman U Kalman-Filter und Bayes-Fusion"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:177:39 mehrer U item Redundant (Mitteln mehrer Bilder)"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:181:38 Multispektralbild U \\item Wertebereich: Multispektralbild"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:183:30 Tiefenkarte U \\item Verteilt: Tiefenkarte"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:184:32 Texturierung U \\item Orthogonal: Texturierung eines 3D-Objekts"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:190:20 Erweterung U \\item Erweterung der Sensorabdeckung"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:191:60 Kompas U z.B. Accelerometer + Kompas in Kamera)"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:201:50 Kolmogorov U Auf den Axiomen von Kolmogorov: Nicht-Negativität,"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:201:81 Normiertheit U Nicht-Negativität, Normiertheit auf 1 und Additivit"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:213:30 Domänenwissen U item[$\\Rightarrow$] Domänenwissen (z.B. Handbücher) oder"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:221:32 dynamsiches U item Wenn sie nun ein dynamsiches Objekt haben, was machen"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:222:70 Kalmann U Modell wende ich den Kalmann-Filter an. Dieser wendet"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:222:163 Prädiktions U direkt hintereinander) Prädiktions- und Innovationsschritte"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:223:65 Prädiktionsschritt U Zustandsupdate-Gleichung im Prädiktionsschritt hin"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:227:58 brücksichtigt U sicherheiten im Kalman-Filter brücksichtigt?"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:228:36 Kovarianzmatrizen U \\Rightarrow$] Durch Kovarianzmatrizen"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:230:47 semidefinit U Rightarrow$] Sie sind positiv-semidefinit und symmetrisch."
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:248:39 Zugehörigkeitsfunktionen U Rightarrow$] Über die Zugehörigkeitsfunktionen, vor allem über"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:250:30 Defuzzifizierung U Defuzzifizierung."
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:255:39 defuzzifiziert U aufgestellt. Schließlich wird defuzzifiziert."
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:260:44 blauheit U Variablen: Himmelsfarbe (blauheit, grauheit), Windrichtung"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:260:54 grauheit U Himmelsfarbe (blauheit, grauheit), Windrichtung (Norden"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:261:19 Zugehörigkeitsfunktion U \\item Zugehörigkeitsfunktion (aufgezeichnet für Himmelsfar"
- "documents/kit-muendlich-informationsfusion/muendlich-we-2013-martin-thoma.tex:265:52 Maximummethode U Schwerpunktverfahren, Maximummethode, Maximum-Mittelwert"
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:151:50 angeprochen U folgende Themen nicht angeprochen worden: MLNs,"
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:152:58 OPRMs U Deduktive Verfahren, OPRMs, Bayes-Netze."
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:162:9 Vorlesungsinhalte U Die Vorlesungsinhalte sind extrem relevant"
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:192:42 Vapnik U Lernverfahren sind nach Vapnik korrekt?"
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:193:72 Adaboost U Cascade Correlation, Adaboost"
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:195:102 Strumps U lassifikatoren (z.B. Decision Strumps; hier habe ich das Bild"
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:197:5 strumps U strumps ist eine echte Obermenge"
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:199:58 Hypothesenraumes U die strukturierung des Hypothesenraumes."
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:203:72 Hypothesenraum U zwischen Feature-Space und Hypothesenraum gezeichnet, vgl. mein"
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:204:65 Hyperkugel U indem der Radius für die Hyperkugel zu"
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:211:40 prunen U oder \\enquote{prunen} (Verbindungen mit geringem"
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:220:11 gezeichet U gezeichet und auf die y-Achse"
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:222:19 Overfitting U \\item Was ist Overfitting in neuronalen Netzen"
- "documents/kit-muendlich-ml1-2/kit-muendlich-ml1-2.tex:230:26 Transductive U Transductive SVM, Self-Training,"
- "documents/kit-muendlich-mmww/muendlich-we-2013-martin-thoma.tex:128:63 Anki U 3h mit Komilitonen; Anki-Karten für"
- "documents/kit-muendlich-mmww/muendlich-we-2013-martin-thoma.tex:136:65 FILASSE U Modell von Rasmussen, FILASSE. Das"
- "documents/kit-muendlich-mmww/muendlich-we-2013-martin-thoma.tex:181:30 Perzeptiver U item[$\\Rightarrow$] Perzeptiver-, Kognitiver- und Motorischer"
- "documents/kit-muendlich-mmww/muendlich-we-2013-martin-thoma.tex:187:41 Beanspruchungs U Forderungs-, Belastungs-, Beanspruchungs-, Leistungskreislauf"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:80:27 Waibel U Neuronale Netze & Prof. Waibel / Dr. Kilgour & SS"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:80:40 Kilgour U Prof. Waibel / Dr. Kilgour & SS 2015 & Ja \\\\["
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:133:52 Lernpartern U 2 Stunden mit einem Lernpartern"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:182:55 Dimensionalitätsreduktion U Collaborative Filtering, Dimensionalitätsreduktion,"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:183:30 Denoising U Denoising / Rekonstruktion."
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:185:32 Cullogh U item[$\\Rightarrow$] McCullogh-Pitts Perzeptron, Rosenblatt"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:185:46 Perzeptron U Rightarrow$] McCullogh-Pitts Perzeptron, Rosenblatt Perzeptron"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:188:30 Hopfield U Hopfield-Netze, CNNs / TDNNs"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:188:53 TDNNs U Hopfield-Netze, CNNs / TDNNs, Rekurrente Netze"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:189:31 LSTMs U (LSTMs). Ich habe noch \\enquote"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:193:15 Klassifikationsproblem U Klassifikationsproblem mit 3~Klassen lösen"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:209:70 Ouptut U Layer - Input, Hidden, Ouptut. Bias nicht vergessen"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:211:30 Signum U item[$\\Rightarrow$] Signum (smooth: tanh), Heavy"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:212:44 softplus U ReLU (smooth: softplus), Leaky ReLU, ELU. Softmax"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:212:72 Softmax U softplus), Leaky ReLU, ELU. Softmax"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:213:34 Maxout U und Maxout kann man nicht so einfach"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:216:46 Klassifikationsprobleme U Softmax ist für Klassifikationsprobleme gut, da"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:231:57 Unüberwacht U überwachtes lernen. Unüberwacht kann man"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:243:60 unverrauschte U Noise entfernt und das unverrauschte Bild"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:248:133 Validierungsfehler U Trainingsfehler und Validierungsfehler). Der Trainingsfehler"
- "documents/kit-muendlich-nn/kit-muendlich-nn.tex:263:63 Hyer U Algorithmen} (NEAT, HyerNEAT)."
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:152:48 POMDP U Tabelle am Ende, wo MDP / POMDP / RL verglichen werden"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:194:30 Explorationsproblem U Explorationsproblem erwähnt."
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:196:33 Nutzentheorie U Optimierungs- und Nutzentheorie. Schreiben sie mir doch"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:206:19 Minimierungsproblem U von einem Minimierungsproblem ausgehen kann."
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:207:46 Gleichungs U was macht man wenn man Gleichungs-Nebenbedingungen hat"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:214:34 Gleichungsnebenbedingungen U item[$\\Rightarrow$] Die Gleichungsnebenbedingungen kommen raus."
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:218:15 Optimalitätsprinzip U Optimalitätsprinzip sagen?"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:222:41 Wegesuche U das bei der kürzesten Wegesuche sehen."
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:228:51 wernn U $A$ nach $E$ kürzer wernn man direkt von $B$ nach"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:232:69 Rückwärtsrekursiv U Horizont). Dabei geht man Rückwärtsrekursiv"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:251:213 aktionsabhängige U k \\cdot a_k}_{\\text{aktionsabhängige Kosten}} \\right )$$"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:254:60 Riccati U durch die iterativen Riccati-Gleichungen"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:262:38 POMDPs U gut. Kommen wir zu POMDPs. Wie löst man die?"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:264:81 Funktionsapproximatoren U sbare Spezialfälle, Funktionsapproximatoren, Änderung der Optimierung"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:279:35 erwartungstreuen U bedeutet, unter den erwartungstreuen linearen Schätzern ist"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:290:38 erwartungstreu U Rightarrow$] Er muss erwartungstreu sein, was der Kalman"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:291:28 PWLC U \\item Was bedeutet PWLC?"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:293:30 Minimierungsprobleme U Minimierungsprobleme hatten, war es concave"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:304:35 berechnun U zur berechnun der Konvexen Hülle nutzen"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:310:45 Wertefunktionsbasiert U Rightarrow$] Modellbasiert, Wertefunktionsbasiert, Strategiesuche."
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:312:52 argmax U reduziert werden. Mit argmax kann man dann eine Strategie"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:313:63 Dyna U Modellbasiert gibt es Dyna-Q,"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:314:46 PILCO U Adaptive DP und PILCO. Wertefunktionsbasiert"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:331:69 GLIE U benutzt. Besser sind GLIE-Strategien,"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:338:38 gleichverteilt U nicht-optimalen Aktionen gleichverteilt sind und bei"
- "documents/kit-muendlich-proplan/kit-muendlich-proplan.tex:339:9 softmax U softmax ist die Verteilung vom"
- "documents/klausurvorbereitung-algortihmen-2/klausurvorbereitung-algortihmen-2.tex:33:55 Tarjan U Algorithmus von Goldberg und Tarjan. Welche Laufzeit besitzt"
- "documents/klausurvorbereitung-algortihmen-2/klausurvorbereitung-algortihmen-2.tex:40:51 Pina U der Algorithmus von de Pina? Welche Laufzeit besitzt"
- "documents/klausurvorbereitung-algortihmen-2/klausurvorbereitung-algortihmen-2.tex:59:54 Karp U Algorithmus von Rabin-Karp? Welche Laufzeit besitzt"
- "documents/klausurvorbereitung-algortihmen-2/klausurvorbereitung-algortihmen-2.tex:61:20 Suffixbäume U \\item Was sind Suffixbäume? Wie nutzt man sie?"
- "documents/klausurvorbereitung-algortihmen-2/klausurvorbereitung-algortihmen-2.tex:66:45 FPAS U die Abkürzungen PAS, FPAS, APAS?"
- "documents/klausurvorbereitung-algortihmen-2/klausurvorbereitung-algortihmen-2.tex:66:51 APAS U Abkürzungen PAS, FPAS, APAS?"
- "documents/klausurvorbereitung-algortihmen-2/klausurvorbereitung-algortihmen-2.tex:77:26 Kompetitivität U item Was bedeutet c-Kompetitivität?"
- "documents/klausurvorbereitung-algortihmen-2/klausurvorbereitung-algortihmen-2.tex:79:19 Béládys U \\item Was ist Béládys Anomalie?"
- "documents/klausurvorbereitung-gbi/gbi-klausurvorbereitung.tex:77:9 Wieviele U \\item Wieviele Sprachen gibt es über"
- "documents/klausurvorbereitung-gbi/gbi-klausurvorbereitung.tex:138:9 Mebibyte U 14 & 1 Mebibyte = $2^{20}$ Byte &"
- "documents/letter-1822-direct-sparkasse-kuendigen/letter.tex:56:6 NTSBDEB U BIC: NTSBDEB1XXX\\\\"
- "documents/letter-dsgvo/letter-dsgvo.tex:62:5 DSGVO U DSGVO, eine Beantwortung meiner"
- "documents/letter-dsgvo/letter-dsgvo.tex:118:19 Datenminimierungs U \\item Datenminimierungs-Strategien;"
- "documents/letter-dsgvo/letter-dsgvo.tex:119:39 Pseudonymisierung U Anonymisierung oder Pseudonymisierung;"
- "documents/letter-dsgvo/letter-dsgvo.tex:142:53 Sensibilisierungs U welche Schulungs- und Sensibilisierungs-Maßnahmen Sie ergriffen"
- "documents/list-item-sep/list-item-sep.tex:13:10 spearation U Less spearation:"
- "documents/math-euklidische-normalform/math-euklidische-normalform.tex:22:63 intercolumn U used twice to suppress intercolumn whitespace"
- "documents/math-fonts/math-fonts.tex:57:10 mathfrak U \\section{mathfrak}"
- "documents/math-fonts/math-fonts.tex:89:10 mathbb U \\section{mathbb}"
- "documents/math-minimal-distance-to-cubic-function/cubic-functions.tex:46:11 Voronoi U %\\section{Voronoi}"
- "documents/math-minimal-distance-to-cubic-function/cubic-functions.tex:74:81 Košinár U footnote{Thanks to Peter Košinár on \\href{http://math"
- "documents/math-minimal-distance-to-cubic-function/cubic-functions.tex:92:27 guaratees U The first restriction guaratees that we have a polynomial"
- "documents/math-minimal-distance-to-cubic-function/cubic-functions.tex:201:47 Jaccobi U f(x^*) = 0$ and the Jaccobi-Matrix $f'(x^*)$"
- "documents/math-minimal-distance-to-cubic-function/cubic-functions.tex:202:19 invertable U should not be invertable when evaluated at the"
- "documents/math-minimal-distance-to-cubic-function/cubic-functions.tex:253:97 Bairstow U Aerodynamics\" by Leonard Bairstow. The algorithm finds"
- "documents/math-minimal-distance-to-cubic-function/introduction.tex:2:28 selfdriving U you want to develop a selfdriving car, you have to plan"
- "documents/math-minimal-distance-to-cubic-function/introduction.tex:9:24 prefered (preferred) U a cubic spline (the prefered path)"
- "documents/math-minimal-distance-to-cubic-function/introduction.tex:28:21 invervall U defined on a closed invervall, you can calculate the"
- "documents/math-minimal-distance-to-cubic-function/problem-description.tex:4:8 Euklidean U be the Euklidean distance of $P$ to a"
- "documents/math-minimal-distance-to-cubic-function/problem-description.tex:15:46 usefull (useful) U will be tremendously usefull:"
- "documents/math-minimal-distance-to-cubic-function/quadratic-case-2.1.tex:35:59 resubstituting U numerator. Start with resubstituting"
- "documents/math-minimal-distance-to-cubic-function/quadratic-case-2.2.tex:13:18 summands U Now simplify the summands of $x^3$:"
- "documents/math-minimal-distance-to-cubic-function/quadratic-functions.tex:88:15 closests U The number of closests points of $f$ cannot"
- "documents/math-minimal-distance-to-cubic-function/quadratic-functions.tex:121:20 possilby U $P = (0, w)$ could possilby have three minima."
- "documents/math-minimal-distance-to-cubic-function/quadratic-functions.tex:135:31 possilbe U get as close to $0$ as possilbe when we want to minimize"
- "documents/math-minimal-distance-to-cubic-function/quadratic-functions.tex:219:33 sortest U to $x$ will have the sortest distance."
- "documents/math-minimal-distance-to-cubic-function/README.md:2:12 strucutre U incorrect, strucutre and content will change"
- "documents/math-speech-a515/math-speech-a515.tex:41:28 senone U item $s$ (für \\textit{senone}) ist die kleinste Einheit"
- "documents/math-speech-a515/math-speech-a515.tex:52:11 Senone U Senone $s$ für das Muster"
- "documents/math-speech-a515/math-speech-a515.tex:70:6 Multinomialverteilung U Eine Multinomialverteilung ist eine diskrete Wahrscheinl"
- "documents/math-speech-a515/math-speech-a515.tex:92:14 multinominale U Was ist eine multinominale multivariate Gauss-Verteilung"
- "documents/mathe-blutspende/Aufgabe-Blutspende.tex:55:30 Summensymbols U subsection{Auflösen des Summensymbols}"
- "documents/mathe-burdsch-chalifa/Burdsch-Chalifa.tex:22:5 pdfsubject U pdfsubject={Aufgabe},"
- "documents/mathe-burdsch-chalifa/Burdsch-Chalifa.tex:28:24 Burdsch U title{Sichtweite des Burdsch Chalifa}"
- "documents/mathe-burdsch-chalifa/Burdsch-Chalifa.tex:28:32 Chalifa U Sichtweite des Burdsch Chalifa}"
- "documents/mathe-burdsch-chalifa/Burdsch-Chalifa.tex:41:17 Situationsskizze U \\subsection{Situationsskizze}"
- "documents/mathe-burdsch-chalifa/Burdsch-Chalifa.tex:94:14 Mileiha U Das Dorf Mileiha liegt direkt östlich"
- "documents/mathe-burdsch-chalifa/Burdsch-Chalifa.tex:173:9 Bedinungen U Bedinungen noch erkannt werden"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:19:1 stringstyle U stringstyle=\\color{red},"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:21:44 elif U for, while, if, is, elif, else, not, and, or"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:22:1 emphstyle U emphstyle=\\color{black}\\bfseries"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:26:1 morecomment U morecomment=[s]{\"\"\"}{\"\"\"},"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:27:1 rulesepcolor U rulesepcolor=\\color{blue},"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:28:1 otherkeywords U otherkeywords={1, 2, 3, 4, 5, 6,"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:30:1 numberstyle U numberstyle=\\footnotesize,"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:31:1 stepnumber U stepnumber=1,"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:33:1 numbersep U numbersep=5pt,"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:34:1 showspaces U showspaces=false,"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:35:1 showstringspaces U showstringspaces=false, % underline"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:36:1 showtabs U showtabs=false,"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:37:1 tabsize U tabsize=2,"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:38:1 captionpos U captionpos=b,"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:39:1 breaklines U breaklines=true,"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:40:1 breakatwhitespace U breakatwhitespace=false, % sets"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:43:1 escapeinside U escapeinside={\\%*}{*)},"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:177:29 erziehlen U kaum ein gutes Ergebnis erziehlen"
- "documents/mathe-handlungsreisender/Handlungsreisender-in-Deutschland.tex:183:19 Heurisik U Eine mögliche Heurisik ist das auswählen der"
- "documents/mathe-info-studium/mathe-info-studium.tex:53:5 INGI U IN1INGI & Grundbegr. d. Informatik"
- "documents/mathe-info-studium/mathe-info-studium.tex:53:15 Grundbegr U IN1INGI & Grundbegr. d. Informatik"
- "documents/mathe-info-studium/mathe-info-studium.tex:55:5 INPROG U IN1INPROG & Programmieren"
- "documents/mathe-info-studium/mathe-info-studium.tex:55:59 MATHBANM U & 2/0/2 & 5 & MATHBANM01 & EidIaM \\footnote"
- "documents/mathe-info-studium/mathe-info-studium.tex:57:2 MATHBAAN U MATHBAAN01 & Analysis I"
- "documents/mathe-info-studium/mathe-info-studium.tex:59:2 MATHBAAG U MATHBAAG01 & Lineare Algebra"
- "documents/mathe-info-studium/mathe-info-studium.tex:67:5 INALG U IN1INALG1 & Algorithmen I"
- "documents/mathe-info-studium/mathe-info-studium.tex:68:5 INSWT U IN1INSWT1 & Softwaretechnik"
- "documents/mathe-info-studium/mathe-info-studium.tex:72:5 INTHEOG U IN2INTHEOG & Theor. Grundl. der"
- "documents/mathe-info-studium/mathe-info-studium.tex:72:15 Theor U IN2INTHEOG & Theor. Grundl. der Informatik"
- "documents/mathe-info-studium/mathe-info-studium.tex:72:22 Grundl U IN2INTHEOG & Theor. Grundl. der Informatik & 3"
- "documents/mathe-info-studium/mathe-info-studium.tex:73:5 INSWP U IN2INSWP & Praxis der Software"
- "documents/mathe-info-studium/mathe-info-studium.tex:74:5 INBS U IN2INBS & Betriebssysteme"
- "documents/mathe-info-studium/mathe-info-studium.tex:76:5 MATHPM U IN2MATHPM & Wahrscheinlichkeitstheorie"
- "documents/mathe-info-studium/mathe-info-studium.tex:78:59 MATHBASQ U fikationen & ? & 6 & MATHBASQ01 & Schlüsselqualifikation"
- "documents/mathe-info-studium/mathe-info-studium.tex:81:5 INKD U IN2INKD & Kommunikation u"
- "documents/mathe-info-studium/mathe-info-studium.tex:84:2 MATHBAPS U MATHBAPS01 & Proseminar"
- "documents/mathe-info-studium/mathe-info-studium.tex:86:5 MATHAG U IN3MATHAG02& Einführung in Algebra"
- "documents/mathe-info-studium/mathe-info-studium.tex:91:59 MATHBASE U & 3/1/0 & 6 & MATHBASE01 & Seminar"
- "documents/mathe-info-studium/mathe-info-studium.tex:92:5 INPROGP U IN3INPROGP & Programmierparadigmen"
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:162:15 Distributivgesetze U \\item[R3] Distributivgesetze: $\\forall a, b, c \\in"
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:186:52 Charaktersitik U habe $\\mathbb{K}$ die Charaktersitik 0."
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:218:43 Bilinearform U Vektorraum. Eine \\textbf{Bilinearform} auf V ist eine"
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:240:5 reele U Für reele Vektorräume gilt:\\\\"
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:252:15 hermitesche U heißt \\textbf{hermitesche Form} auf V, falls f"
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:262:37 Hermitesche U ymmetrische, positiv definite Hermitesche Form heißt \\textbf{Skalarprod"
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:267:26 unitärer U t (V, F) ein \\textbf{unitärer Vektorraum}."
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:272:10 hermitesch U $A$ heiß hermitesch $: \\Leftrightarrow"
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:283:28 unitären U einem euklidischen oder unitären Vektorraum $V, \\langle"
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:365:15 Orthogonalkomplement U heißt \\textbf{Orthogonalkomplement} von U in V."
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:369:13 Orthogonalprojektion U Die \\textbf{Orthogonalprojektion} von V auf U (in Richtung"
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:393:34 unitär U orthogonal} bzw. \\textbf{unitär}, falls gilt"
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:406:12 unitäre U Analog für unitäre Matrizen."
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:427:29 selbstadjungierter U V \\rightarrow V$ ein selbstadjungierter Endomorphismus. Dann"
- "documents/mathe-lineare-algebra/mathe-lineare-algebra.tex:432:29 Diagonalform U Orthonormalbasis hat Diagonalform"
- "documents/mathe-reis/Reis-Exponentielles-Wachstumsverhalten.tex:22:50 verlagt U sich bescheiden und verlagt für das erste"
- "documents/mathe-reis/Reis-Exponentielles-Wachstumsverhalten.tex:27:5 Wieviel U Wieviel Reis muss der Kaiser"
- "documents/mathe-reis/Reis-Exponentielles-Wachstumsverhalten.tex:45:67 Reisschicht U bei der x die Höhe der Reisschicht"
- "documents/mathe-reis/Reis-Exponentielles-Wachstumsverhalten.tex:58:77 Reispackungen U unpraktisch. Wieviele Reispackungen"
- "documents/mathe-vorlage/mathe-vorlage.tex:80:1 asdfasdfasdf U asdfasdfasdf\\\\"
- "documents/milgrams-small-world/milgrams-small-world-letter.tex:47:45 Milgrams U diesen Brief, weil ich Milgrams Experiment wiederhole"
- "documents/milgrams-small-world/milgrams-small-world-letter.tex:53:11 Freundesfreunde U das \"`Freundesfreunde\"'-System aus sozialen"
- "documents/milgrams-small-world/milgrams-small-world-letter.tex:57:60 Milgram U Das hat schon Stanley Milgram 1967 vermutet."
- "documents/milgrams-small-world/milgrams-small-world-letter.tex:59:56 Bosten U an eine Zielperson in Bosten senden sollte."
- "documents/milgrams-small-world/milgrams-small-world-letter.tex:71:23 sprachigen U an einen Englisch-sprachigen Bekannten schicken."
- "documents/musterloesung-db-2012-09-24/musterloesung-db-2012-09-24.tex:12:31 checkedbox U usepackage{marvosym} % checkedbox"
- "documents/musterloesung-db-2012-09-24/musterloesung-db-2012-09-24.tex:143:50 joinen U stehen (diese werden NULL joinen). Daher nach NULL"
- "documents/musterloesung-db-2012-09-24/musterloesung-db-2012-09-24.tex:161:29 kenn U oder nicht, z.B. SQLite kenn kein EXCEPT, auf einer"
- "documents/musterloesung-db-2012-09-24/musterloesung-db-2012-09-24.tex:162:25 angehakt U stand es aber bei SQL89 angehakt dabei)."
- "documents/musterloesung-db-2012-09-24/musterloesung-db-2012-09-24.tex:173:19 Zykel U Somit ist ein Zykel zwischen 2 und 3 $\\Rightarrow"
- "documents/musterloesung-db-2012-09-24/musterloesung-db-2012-09-24.tex:173:62 serialisierbar U $\\Rightarrow$ nicht serialisierbar"
- "documents/musterloesung-db-2012-09-24/musterloesung-db-2012-09-24.tex:191:28 rücksetzbar U \\item H1 ist nicht rücksetzbar (also weder in RC, ACA"
- "documents/musterloesung-db-2012-09-24/README.md:1:16 Nilans U Auf Basis von [Nilans und Stefans pastebin"
- "documents/musterloesung-db-2012-09-24/README.md:1:35 pastebin U [Nilans und Stefans pastebin](http://pastebin.com"
- "documents/musterloesung-db-klausur-b/musterloesung-db-klausur-b.tex:51:4 Modelierung U ER-Modelierung ist kapazitätserhöhend"
- "documents/musterloesung-db-klausur-b/musterloesung-db-klausur-b.tex:51:20 kapazitätserhöhend U ER-Modelierung ist kapazitätserhöhend? (Beispiel? TODO)"
- "documents/musterloesung-db-klausur-b/musterloesung-db-klausur-b.tex:69:86 hängigkeits U ver\\-bund\\-treu & ab\\-hängigkeits\\-treu & Bemerkung\\\\"
- "documents/musterloesung-db-klausur-b/musterloesung-db-klausur-b.tex:74:143 verbundtreu U in $F$\\newline nicht verbundtreu, da beide Relation nur"
- "documents/nth-example/nth-example.tex:7:66 typsettingh U choice when it comes to typsettingh"
- "documents/paper-peer-review/paper-peer-review.tex:13:67 Semantiv U Neuronal Networks for Semantiv Segmentation in Medical"
- "documents/paper-peer-review/paper-peer-review.tex:31:48 Teichmann U Informatics} by Marvin Teichmann. The reviewed document"
- "documents/paper-peer-review/paper-peer-review.tex:51:1 Gramatical U Gramatical errors make it sometimes"
- "documents/paper-peer-review/paper-peer-review.tex:64:28 stationarity U item What is \\enquote{stationarity of statistics}?"
- "documents/paper-peer-review/paper-peer-review.tex:99:27 gramatically (grammatically) U item The sentence is gramatically wrong and makes it hard"
- "documents/paper-peer-review/paper-peer-review.tex:104:34 Nonlinearities U enquote{Recently ReLU Nonlinearities [KSH12](AlexNet, Bolzmann"
- "documents/paper-peer-review/paper-peer-review.tex:104:66 Bolzmann U nlinearities [KSH12](AlexNet, Bolzmann)}:"
- "documents/paper-peer-review/paper-peer-review.tex:106:34 nonlinearities U enquote{Recently ReLU nonlinearities, as introduced by~[KSH"
- "documents/paper-peer-review/paper-peer-review.tex:114:56 DCNNs U overwhelming successes of DCNNs in image classification"
- "documents/paper-peer-review/paper-peer-review.tex:116:281 restrucuting U the sentence, I guess restrucuting the sentence might help"
- "documents/paper-peer-review/paper-peer-review.tex:130:43 convoluton U sliding-window-as-a-convoluton} idea and which other"
- "documents/paper-peer-review/paper-peer-review.tex:131:49 downsampling U not trying to avoid downsampling as part of the progress"
- "documents/paper-peer-review/paper-peer-review.tex:133:36 upsampling U Explain what an \\enquote{upsampling layer} is."
- "documents/paper-peer-review/paper-peer-review.tex:136:28 Deconvolution U subsection{Section 4.2.1: Deconvolution}"
- "documents/paper-peer-review/paper-peer-review.tex:146:28 lerning U item What is transfer lerning?"
- "documents/paper-peer-review/paper-peer-review.tex:178:24 descripe U \\item \\enquote{descripe}"
- "documents/paper-peer-review/paper-peer-review.tex:179:24 architeture U \\item \\enquote{architeture}"
- "documents/paper-peer-review/paper-peer-review.tex:190:35 Conv U \\enquote{approaches ConvNets} - comma missing"
- "documents/paper-peer-review/paper-peer-review.tex:210:137 choosen (chosen) U layer $s$ is typically choosen to be equal to $k$}"
- "documents/paper-peer-review/README.md:14:65 wiederspiegelt U sich auch in der Arbeit wiederspiegelt?"
- "documents/papers/write-math-paper/ch1-introduction.tex:24:41 Detexify U describes a system called Detexify which uses"
- "documents/papers/write-math-paper/ch1-introduction.tex:28:26 crowdsourcing U which was collected by a crowdsourcing approach via"
- "documents/papers/write-math-paper/ch3-data-and-implementation.tex:20:17 hwrt U package \\texttt{hwrt}."
- "documents/papers/write-math-paper/ch4-algorithms.tex:42:52 Peucker U points with the Douglas-Peucker"
- "documents/papers/write-math-paper/ch4-algorithms.tex:70:15 Manke U introduced by Manke, Finke and Waibel in"
- "documents/papers/write-math-paper/ch4-algorithms.tex:70:22 Finke U introduced by Manke, Finke and Waibel in~\\cite"
- "documents/papers/write-math-paper/ch4-algorithms.tex:73:24 Perceptrons U subsection{Multilayer Perceptrons}\\label{sec:mlp-training"
- "documents/papers/write-math-paper/ch4-algorithms.tex:95:44 pretraining U encoders are another way of pretraining. An"
- "documents/papers/write-math-paper/ch4-algorithms.tex:111:55 denoising U describes how such a denoising auto-encoder"
- "documents/papers/write-math-paper/ch5-optimization-of-system-design.tex:51:32 chktex U tabular}{crrr|rrr} %chktex 44"
- "documents/papers/write-math-paper/ch5-optimization-of-system-design.tex:144:13 Pretraining U \\subsection{Pretraining}\\label{subsec:pretraining"
- "documents/papers/write-math-paper/ch5-optimization-of-system-design.tex:162:23 pretrained U that all pretrained systems performed much"
- "documents/papers/write-math-paper/ch7-mfrdb-eval.tex:6:45 CROHME U + \\cite{Stria2012}, CROHME~2011 \\cite{Mouchere"
- "documents/papers/write-math-paper/figures/errors-by-epoch-pretraining/errors-by-epoch-pretraining.tex:24:70 testerror U point=20,x=epoch, y=testerror, col sep=comma] {baseline"
- "documents/papers/write-math-paper/glossary.tex:50:9 hyperparamter U \\textit{hyperparamter} is a parameter of a"
- "documents/papers/write-math-paper/glossary.tex:57:73 preactivation U activation}, description={The preactivation of a neuron is the weighted"
- "documents/papers/write-math-paper/README.md:9:82 checkwriting U Academic-Writing-Check/checkwriting $f; done`"
- "documents/papers/write-math-paper/write-math-ba-paper.tex:26:17 belowskip U % \\captionsetup{belowskip=12pt,aboveskip=4pt}"
- "documents/papers/write-math-paper/write-math-ba-paper.tex:26:32 aboveskip U captionsetup{belowskip=12pt,aboveskip=4pt}"
- "documents/pdfa-paper/ch1-introduction.tex:1:14 pdfa U %!TEX root = pdfa-paper.tex"
- "documents/pdfa-paper/ch1-introduction.tex:21:261 potenti U tempus sem. Suspendisse potenti. Suspendisse malesuada"
- "documents/pdfa-paper/pdfa-paper.tex:48:5 pdflang U % pdflang={en},"
- "documents/pdfa-paper/pdfa-paper.tex:57:1 adsfadsf U adsfadsf adsfasdf"
- "documents/pflichtenheft/Pflichtenheft.tex:18:19 dvips U % with both latex/dvips and pdflatex."
- "documents/pflichtenheft/Pflichtenheft.tex:83:13 Musskriterien U \\subsection{Musskriterien}"
- "documents/pflichtenheft/Pflichtenheft.tex:92:3 Betriebsbedinugen U % Betriebsbedinugen"
- "documents/pflichtenheft/Pflichtenheft.tex:107:10 Nichtfunktionale U \\section{Nichtfunktionale Anforderungen}"
- "documents/pflichtenheft/Pflichtenheft.tex:112:15 schafeln U % Tabelle ... schafeln .. was ist ihm wichtig"
- "documents/postcard-back/postcard-back.tex:4:52 multicols U to be important for multicols"
- "documents/Programmierparadigmen/C.tex:92:10 Präzedenzregeln U \\section{Präzedenzregeln}\\xindex{Präzedenzregeln"
- "documents/Programmierparadigmen/C.tex:95:20 prenthesis U \\>\\textbf{B.1} \\=prenthesis {\\color{red}$( )$}\\"
- "documents/Programmierparadigmen/Compilerbau.tex:14:23 Interpretierer U item \\textbf{Reiner Interpretierer}: TCL, Unix-Shell"
- "documents/Programmierparadigmen/Compilerbau.tex:21:71 stackoverflow U ist.\\footnote{Quelle: stackoverflow.com/a/2998544, danke"
- "documents/Programmierparadigmen/Compilerbau.tex:21:111 Martelli U 2998544, danke Alex Martelli für diesen Vergleich"
- "documents/Programmierparadigmen/Compilerbau.tex:32:18 Bezeichnergebrauch U \\item Zuordnung Bezeichnergebrauch - Vereinbarung\\todo"
- "documents/Programmierparadigmen/Compilerbau.tex:33:26 Postfixbaum U item Transformation in Postfixbaum"
- "documents/Programmierparadigmen/Compilerbau.tex:34:8 Typcheck U \\item Typcheck, wo statisch möglich"
- "documents/Programmierparadigmen/Compilerbau.tex:60:24 Codee U \\item der Java-Codee ist 123 Byte groß,"
- "documents/Programmierparadigmen/Compilerbau.tex:88:54 Stringtabelle U und in einer \\textit{Stringtabelle}\\xindex{Stringtabelle"
- "documents/Programmierparadigmen/Compilerbau.tex:156:53 Tokenfolge U wird überprüft, ob die Tokenfolge zur"
- "documents/Programmierparadigmen/Compilerbau.tex:175:109 Kleene U Concatenation } | \\text{ KleeneClosure }\\\\"
- "documents/Programmierparadigmen/Compilerbau.tex:205:7 attributierten U einen attributierten Syntaxbaum\\xindex{Syntaxbaum"
- "documents/Programmierparadigmen/Compilerbau.tex:219:40 zielunabhängige U in eine sprach- und zielunabhängige Zwischensprache transformiert"
- "documents/Programmierparadigmen/Compilerbau.tex:222:19 Konstantenfaltung U \\item \\textbf{Konstantenfaltung}: Ersetze z.~B. $3+"
- "documents/Programmierparadigmen/Compilerbau.tex:223:19 Kopienfortschaffung U \\item \\textbf{Kopienfortschaffung}: Setze Werte von Variablen"
- "documents/Programmierparadigmen/Compilerbau.tex:237:19 Nachoptimierung U \\item \\textbf{Nachoptimierung}\\todo{?}"
- "documents/Programmierparadigmen/Compilerbau.tex:295:46 Terminalfolgen U beinhaltet also alle Terminalfolgen, die entweder $k$"
- "documents/Programmierparadigmen/Compilerbau.tex:306:9 Terminalfolge U Da jede Terminalfolge, die sich aus $S$ folgern"
- "documents/Programmierparadigmen/Compilerbau.tex:337:1 Ravi U Ravi Sethi und Jeffry D."
- "documents/Programmierparadigmen/Compilerbau.tex:337:6 Sethi U Ravi Sethi und Jeffry D. Ullman"
- "documents/Programmierparadigmen/Compilerbau.tex:337:26 Ullman U Sethi und Jeffry D. Ullman. Pearson Verlag, 2."
- "documents/Programmierparadigmen/Definitionen.tex:31:33 Nichtterminale U t \\textbf{Menge der Nichtterminale},"
- "documents/Programmierparadigmen/Definitionen.tex:74:23 linkeste U auf das linkeste Nichtterminal angewendet"
- "documents/Programmierparadigmen/Definitionen.tex:76:23 rechteste U auf das rechteste Nichtterminal angewendet"
- "documents/Programmierparadigmen/Definitionen.tex:107:9 linkesten U die linkesten $k$ Symbole der Eingabe"
- "documents/Programmierparadigmen/Definitionen.tex:116:9 linksrekursive U Für linksrekursive, kontextfreie Grammatiken"
- "documents/Programmierparadigmen/Haskell.tex:17:9 ghci U \\texttt{ghci} interpretiert und mittels"