123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- (TeX-add-style-hook
- "presentation"
- (lambda ()
- (setq TeX-command-extra-options
- "\"-shell-escape\"")
- (TeX-add-to-alist 'LaTeX-provided-class-options
- '(("beamer" "bigger")))
- (TeX-add-to-alist 'LaTeX-provided-package-options
- '(("inputenc" "utf8") ("fontenc" "T1") ("ulem" "normalem")))
- (add-to-list 'LaTeX-verbatim-environments-local "semiverbatim")
- (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperref")
- (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperimage")
- (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperbaseurl")
- (add-to-list 'LaTeX-verbatim-macros-with-braces-local "nolinkurl")
- (add-to-list 'LaTeX-verbatim-macros-with-braces-local "url")
- (add-to-list 'LaTeX-verbatim-macros-with-braces-local "path")
- (add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")
- (TeX-run-style-hooks
- "latex2e"
- "beamer"
- "beamer10"
- "inputenc"
- "fontenc"
- "fixltx2e"
- "graphicx"
- "longtable"
- "float"
- "wrapfig"
- "rotating"
- "ulem"
- "amsmath"
- "textcomp"
- "marvosym"
- "wasysym"
- "amssymb"
- "hyperref")
- (LaTeX-add-labels
- "sec-1"
- "sec-1-1"
- "sec-2"
- "sec-3"
- "sec-4"
- "sec-5"
- "sec-6"
- "sec-7"))
- :latex)
|