Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
25개 이상의 토픽을 선택하실 수 없습니다. 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)