Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
231B

  1. with open("folien.tex", "r") as f:
  2. content = f.read()
  3. edited = ""
  4. for char in content:
  5. edited += char
  6. if char == '.':
  7. edited += "\\pause"
  8. with open("output.tex", "w+") as f:
  9. f.write(edited)
  10. print(edited)