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

presentation.el 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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 "path")
  12. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "url")
  13. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "nolinkurl")
  14. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperbaseurl")
  15. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperimage")
  16. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperref")
  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-1-2"
  41. "sec-1-3"
  42. "sec-2"
  43. "sec-2-1"
  44. "sec-2-2"
  45. "sec-2-3"
  46. "sec-2-4"
  47. "sec-2-5"
  48. "sec-2-6"
  49. "sec-2-7"
  50. "sec-2-8"
  51. "sec-2-8-1"
  52. "sec-2-8-2"
  53. "sec-2-9"
  54. "sec-2-9-1"
  55. "sec-2-9-2"
  56. "sec-3"
  57. "sec-3-1"
  58. "sec-3-2"
  59. "sec-3-3"
  60. "sec-3-4"
  61. "sec-3-5"
  62. "sec-4"
  63. "sec-4-1"
  64. "sec-4-2"
  65. "sec-4-3"
  66. "sec-5"
  67. "sec-5-1"
  68. "sec-5-2"
  69. "sec-5-3"
  70. "sec-6"
  71. "sec-6-1"
  72. "sec-6-2"
  73. "sec-6-3"
  74. "sec-7"
  75. "sec-7-1"
  76. "sec-7-2"
  77. "sec-7-3"
  78. "sec-8"
  79. "sec-8-1"
  80. "sec-9"
  81. "sec-9-1"
  82. "sec-10"
  83. "sec-10-1"
  84. "sec-11"
  85. "sec-11-1"
  86. "sec-11-2"
  87. "sec-11-3"))
  88. :latex)