A likely to be continually updated presentation on the state of the lisp family. Check tags for past versions.

presentation.el 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. (TeX-add-style-hook
  2. "presentation"
  3. (lambda ()
  4. (setq TeX-command-extra-options
  5. "\"-shell-escape\"")
  6. (TeX-add-to-alist 'LaTeX-provided-class-options
  7. '(("beamer" "bigger")))
  8. (TeX-add-to-alist 'LaTeX-provided-package-options
  9. '(("inputenc" "utf8") ("fontenc" "T1") ("ulem" "normalem")))
  10. (add-to-list 'LaTeX-verbatim-environments-local "semiverbatim")
  11. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperref")
  12. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperimage")
  13. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperbaseurl")
  14. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "nolinkurl")
  15. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "url")
  16. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "path")
  17. (add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")
  18. (TeX-run-style-hooks
  19. "latex2e"
  20. "beamer"
  21. "beamer10"
  22. "inputenc"
  23. "fontenc"
  24. "fixltx2e"
  25. "graphicx"
  26. "longtable"
  27. "float"
  28. "wrapfig"
  29. "rotating"
  30. "ulem"
  31. "amsmath"
  32. "textcomp"
  33. "marvosym"
  34. "wasysym"
  35. "amssymb"
  36. "hyperref")
  37. (LaTeX-add-labels
  38. "sec-1"
  39. "sec-1-1"
  40. "sec-2"
  41. "sec-3"
  42. "sec-4"
  43. "sec-5"
  44. "sec-6"
  45. "sec-7"))
  46. :latex)