X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=.emacs;h=350375cf61d01d4697e385535893b15447f62ae3;hb=92847f2b2a6a083695ebfad994170fab8f7f8d72;hp=8a52710b8efa3e303777d9fdb034146bb5521516;hpb=793846c23f1841b1cc6c6d81fbe938def9de8e27;p=emacs.git diff --git a/.emacs b/.emacs index 8a52710..350375c 100644 --- a/.emacs +++ b/.emacs @@ -608,6 +608,21 @@ Argument DESCRIPTION MIME description." (setq org-icalendar-timezone "America/Los_Angeles") (setq org-icalendar-use-scheduled '(todo-start event-if-todo)) (setq org-icalendar-store-UID t) + +;; org babel support +(org-babel-do-load-languages + 'org-babel-load-languages + '((emacs-lisp . t ) + (R . t) + (latex . t))) +;; org-babel-by-backend +(defmacro org-babel-by-backend (&rest body) + `(case (if (boundp 'backend) + (org-export-backend-name backend) + nil) ,@body)) + + + ;; org latex ;; stolen from http://kieranhealy.org/esk/kjhealy.html (require 'org-latex) @@ -649,6 +664,15 @@ Argument DESCRIPTION MIME description." ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))) +(add-to-list 'org-latex-classes + '("letter" + "\\documentclass[11pt]{letter}" + ("\\section{%s}" . "\\section*{%s}") + ("\\subsection{%s}" . "\\subsection*{%s}") + ("\\subsubsection{%s}" . "\\subsubsection*{%s}") + ("\\paragraph{%s}" . "\\paragraph*{%s}") + ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) + ;; Originally taken from Bruno Tavernier: http://thread.gmane.org/gmane.emacs.orgmode/31150/focus=31432 ;; but adapted to use latexmk 4.22 or higher. (defun my-auto-tex-cmd ()