1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
(TeX-add-style-hook
"expint"
(lambda ()
(TeX-add-to-alist 'LaTeX-provided-class-options
'(("article" "x11names" "english")))
(TeX-add-to-alist 'LaTeX-provided-package-options
'(("fontenc" "T1") ("inputenc" "utf8") ("natbib" "round") ("helvet" "scaled=0.92") ("mathpazo" "sc") ("Sweave" "noae" "inconsolata")))
(add-to-list 'LaTeX-verbatim-environments-local "Verbatim")
(add-to-list 'LaTeX-verbatim-environments-local "lstlisting")
(add-to-list 'LaTeX-verbatim-macros-with-braces-local "href")
(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"
"article"
"art10"
"fontenc"
"inputenc"
"amsmath"
"natbib"
"babel"
"microtype"
"helvet"
"mathpazo"
"Sweave"
"framed"
"xcolor"
"hyperref")
(TeX-add-symbols
'("file" 1)
'("samp" 1)
'("code" 1)
'("pkg" 1)
"Ei"
"FrameCommand")
(LaTeX-add-labels
"sec:introduction"
"sec:expint"
"eq:E1"
"eq:Ei_vs_E1"
"eq:En_vs_gammainc"
"eq:En:recurrence"
"eq:En:asymptotic"
"sec:gammainc"
"eq:gammainc"
"eq:gammainc_vs_pgamma"
"sec:interfaces"
"sec:api"
"sec:implementation"
"sec:alternatives"
"sec:examples")
(LaTeX-add-environments
'("exercice" LaTeX-env-args ["argument"] 0))
(LaTeX-add-bibliographies)
(LaTeX-add-xcolor-definecolors
"link"
"url"
"citation"
"codebg"))
:latex)
|