2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00

Verbesserungen

This commit is contained in:
Martin Thoma 2014-02-06 08:53:29 +01:00
parent 7d32bfe889
commit 4285b25613
7 changed files with 22 additions and 13 deletions

View file

@ -1,8 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
import glob
import re, glob
def get_definitions(filename):
with open(filename) as f:
@ -25,4 +24,3 @@ if __name__ == "__main__":
for texsource in sorted(glob.glob("../Kapitel*.tex")):
definitions.append(get_definitions(texsource))
write_definitions_to_template("\n\n\n".join(definitions))