2-the-echo-of-the-boss.el 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. (TeX-add-style-hook
  2. "2-the-echo-of-the-boss"
  3. (lambda ()
  4. (TeX-add-to-alist 'LaTeX-provided-class-options
  5. '(("article" "11pt")))
  6. (TeX-add-to-alist 'LaTeX-provided-package-options
  7. '(("inputenc" "utf8") ("fontenc" "T1") ("ulem" "normalem")))
  8. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "href")
  9. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperref")
  10. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperimage")
  11. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperbaseurl")
  12. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "nolinkurl")
  13. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "url")
  14. (add-to-list 'LaTeX-verbatim-macros-with-braces-local "path")
  15. (add-to-list 'LaTeX-verbatim-macros-with-delims-local "path")
  16. (TeX-run-style-hooks
  17. "latex2e"
  18. "article"
  19. "art11"
  20. "inputenc"
  21. "fontenc"
  22. "graphicx"
  23. "grffile"
  24. "longtable"
  25. "wrapfig"
  26. "rotating"
  27. "ulem"
  28. "amsmath"
  29. "textcomp"
  30. "amssymb"
  31. "capt-of"
  32. "hyperref")
  33. (LaTeX-add-labels
  34. "to-understand"
  35. "good-practices"
  36. "the-word-to-the-nerd"))
  37. :latex)