org-babel-latex.el 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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, unless a :file
  26. ;; header argument is given in which case small png or pdf files will
  27. ;; be created directly form the latex source code.
  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-expand-body:latex (body params &optional processed-params)
  36. (mapc (lambda (pair) ;; replace variables
  37. (setq body
  38. (replace-regexp-in-string
  39. (regexp-quote (format "%S" (car pair)))
  40. (if (stringp (cdr pair))
  41. (cdr pair) (format "%S" (cdr pair)))
  42. body))) (second (org-babel-process-params params)))
  43. body)
  44. (defun org-babel-execute:latex (body params)
  45. "Execute a block of Latex code with org-babel. This function is
  46. called by `org-babel-execute-src-block'."
  47. (message "executing Latex source code block")
  48. (setq body (org-babel-expand-body:latex body params))
  49. (if (cdr (assoc :file params))
  50. (let ((out-file (cdr (assoc :file params)))
  51. (tex-file (make-temp-file "org-babel-latex" nil ".tex"))
  52. (pdfheight (cdr (assoc :pdfheight params)))
  53. (pdfwidth (cdr (assoc :pdfwidth params)))
  54. (in-buffer (not (string= "no" (cdr (assoc :buffer params)))))
  55. (org-export-latex-packages-alist
  56. (append (cdr (assoc :packages params))
  57. org-export-latex-packages-alist)))
  58. (cond
  59. ((string-match "\\.png$" out-file)
  60. (org-create-formula-image
  61. body out-file org-format-latex-options in-buffer))
  62. ((string-match "\\.pdf$" out-file)
  63. (org-babel-latex-body-to-tex-file tex-file body pdfheight pdfwidth)
  64. (when (file-exists-p out-file) (delete-file out-file))
  65. (rename-file (org-babel-latex-tex-to-pdf tex-file) out-file))
  66. ((string-match "\\.\\([^\\.]+\\)$" out-file)
  67. (error
  68. (message "can not create %s files, please specify a .png or .pdf file"
  69. (match-string 1 out-file)))))
  70. out-file)
  71. body))
  72. (defun org-babel-latex-body-to-tex-file (tex-file body &optional height width)
  73. "Extracted from `org-create-formula-image' in org.el."
  74. (with-temp-file tex-file
  75. (insert (org-splice-latex-header
  76. org-format-latex-header
  77. (remove-if
  78. (lambda (el) (and (listp el) (string= "hyperref" (cadr el))))
  79. org-export-latex-default-packages-alist)
  80. org-export-latex-packages-alist
  81. org-format-latex-header-extra)
  82. (if height (concat "\n" (format "\\pdfpageheight %s" height)) "")
  83. (if width (concat "\n" (format "\\pdfpagewidth %s" width)) "")
  84. (if org-format-latex-header-extra
  85. (concat "\n" org-format-latex-header-extra)
  86. "")
  87. "\n\\begin{document}\n" body "\n\\end{document}\n")))
  88. (defun org-babel-latex-tex-to-pdf (tex-file)
  89. "Extracted from `org-export-as-pdf' in org-latex.el."
  90. (let* ((wconfig (current-window-configuration))
  91. (default-directory (file-name-directory tex-file))
  92. (base (file-name-sans-extension tex-file))
  93. (pdffile (concat base ".pdf"))
  94. (cmds org-latex-to-pdf-process)
  95. (outbuf (get-buffer-create "*Org PDF LaTeX Output*"))
  96. cmd)
  97. (if (and cmds (symbolp cmds))
  98. (funcall cmds tex-file)
  99. (while cmds
  100. (setq cmd (pop cmds))
  101. (while (string-match "%b" cmd)
  102. (setq cmd (replace-match
  103. (save-match-data
  104. (shell-quote-argument base))
  105. t t cmd)))
  106. (while (string-match "%s" cmd)
  107. (setq cmd (replace-match
  108. (save-match-data
  109. (shell-quote-argument tex-file))
  110. t t cmd)))
  111. (shell-command cmd outbuf outbuf)))
  112. (if (not (file-exists-p pdffile))
  113. (error "PDF file was not produced from %s" tex-file)
  114. (set-window-configuration wconfig)
  115. (when org-export-pdf-remove-logfiles
  116. (dolist (ext org-export-pdf-logfiles)
  117. (setq tex-file (concat base "." ext))
  118. (and (file-exists-p tex-file) (delete-file tex-file))))
  119. pdffile)))
  120. (defun org-babel-prep-session:latex (session params)
  121. (error "Latex does not support sessions"))
  122. (provide 'org-babel-latex)
  123. ;;; org-babel-latex.el ends here