org-babel-latex.el 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. ;;; org-babel-latex.el --- org-babel functions for latex "evaluation"
  2. ;; Copyright (C) 2009 Eric Schulte
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;;; License:
  8. ;; This program is free software; you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation; either version 3, or (at your option)
  11. ;; any later version.
  12. ;;
  13. ;; This program is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;;
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;; Commentary:
  23. ;; Org-Babel support for evaluating LaTeX source code.
  24. ;;
  25. ;; Currently on evaluation this returns raw LaTeX code, however at
  26. ;; some point it *may* (it may not) make sense to have LaTeX blocks
  27. ;; compile small pdfs on evaluation.
  28. ;;; Code:
  29. (require 'org-babel)
  30. (org-babel-add-interpreter "latex")
  31. (add-to-list 'org-babel-tangle-langs '("latex" "tex"))
  32. (defvar org-babel-default-header-args:latex
  33. '((:results . "latex") (:exports . "results"))
  34. "Default arguments to use when evaluating a latex source block.")
  35. (defun org-babel-execute:latex (body params)
  36. "Execute a block of Latex code with org-babel. This function is
  37. called by `org-babel-execute-src-block'."
  38. (message "executing Latex source code block")
  39. (mapc (lambda (pair) ;; replace variables
  40. (setq body
  41. (replace-regexp-in-string
  42. (regexp-quote (format "%S" (car pair)))
  43. (if (stringp (cdr pair))
  44. (cdr pair) (format "%S" (cdr pair)))
  45. body))) (second (org-babel-process-params params)))
  46. body)
  47. (defun org-babel-prep-session:latex (session params)
  48. (error "Latex does not support sessions"))
  49. (provide 'org-babel-latex)
  50. ;;; org-babel-latex.el ends here