2026/06/25 22:50:18 [TRACE] Session ID: 5b8c4d48ce305081 2026/06/25 22:50:18 [TRACE] CSRF Token: HC0brms7ebLU9EaMvlwcIBNcgkI6MTc4MjQxNzAxMjU3NzgxMDczNA== 2026/06/25 22:50:18 [TRACE] Detected encoding: UTF-8 (fast) 2026/06/25 22:50:18 [TRACE] Template: repo/home 2026/06/25 22:50:19 [TRACE] Session ID: 5b8c4d48ce305081 2026/06/25 22:50:19 [TRACE] CSRF Token: HC0brms7ebLU9EaMvlwcIBNcgkI6MTc4MjQxNzAxMjU3NzgxMDczNA== 2026/06/25 22:50:19 [TRACE] Session ID: 31e6390262ade28e 2026/06/25 22:50:19 [TRACE] CSRF Token: zXbqsFcKVtH0Be7frPK_Q5MvpjA6MTc4MjQxNzAxOTAyMTc5NjM2Mw== 2026/06/25 22:50:19 [TRACE] Detected encoding: UTF-8 (fast) HTTP/1.1 200 OK Content-Type: text/html; charset=UTF-8 Date: Thu, 25 Jun 2026 19:50:19 GMT Transfer-Encoding: chunked 461c radu/LaTeX-examples: More than 570 examples for the usage of LaTeX. @ 4e7bec12b0871e8a6208a03eaa88d2d7ea940339 - ICI Gogs

Makefile 718 B

1234567891011121314151617181920212223242526272829303132
  1. SOURCE = triangle-exteriour-angle-theorem-1
  2. DELAY = 80
  3. DENSITY = 300
  4. WIDTH = 500
  5. make:
  6. pdflatex $(SOURCE).tex -output-format=pdf
  7. make clean
  8. clean:
  9. rm -rf $(TARGET) *.class *.html *.log *.aux
  10. gif:
  11. pdfcrop $(SOURCE).pdf
  12. convert -verbose -delay $(DELAY) -loop 0 -density $(DENSITY) $(SOURCE)-crop.pdf $(SOURCE).gif
  13. make clean
  14. png:
  15. make
  16. make svg
  17. inkscape $(SOURCE).svg -w $(WIDTH) --export-png=$(SOURCE).png
  18. transparentGif:
  19. convert $(SOURCE).pdf -transparent white result.gif
  20. make clean
  21. svg:
  22. #inkscape $(SOURCE).pdf --export-plain-svg=$(SOURCE).svg
  23. pdf2svg $(SOURCE).pdf $(SOURCE).svg
  24. # Necessary, as pdf2svg does not always create valid svgs:
  25. inkscape $(SOURCE).svg --export-plain-svg=$(SOURCE).svg
0 2026/06/25 22:50:19 [TRACE] Template: repo/home 2026/06/25 22:50:19 [TRACE] Session ID: 5b8c4d48ce305081 2026/06/25 22:50:19 [TRACE] CSRF Token: HC0brms7ebLU9EaMvlwcIBNcgkI6MTc4MjQxNzAxMjU3NzgxMDczNA==