ob-latex.el 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. ;;; ob-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 'ob)
  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. (org-export-latex-fix-inputenc)))
  89. (defun org-babel-latex-tex-to-pdf (tex-file)
  90. "Extracted from `org-export-as-pdf' in org-latex.el."
  91. (let* ((wconfig (current-window-configuration))
  92. (default-directory (file-name-directory tex-file))
  93. (base (file-name-sans-extension tex-file))
  94. (pdffile (concat base ".pdf"))
  95. (cmds org-latex-to-pdf-process)
  96. (outbuf (get-buffer-create "*Org PDF LaTeX Output*"))
  97. cmd)
  98. (if (and cmds (symbolp cmds))
  99. (funcall cmds tex-file)
  100. (while cmds
  101. (setq cmd (pop cmds))
  102. (while (string-match "%b" cmd)
  103. (setq cmd (replace-match
  104. (save-match-data
  105. (shell-quote-argument base))
  106. t t cmd)))
  107. (while (string-match "%s" cmd)
  108. (setq cmd (replace-match
  109. (save-match-data
  110. (shell-quote-argument tex-file))
  111. t t cmd)))
  112. (shell-command cmd outbuf outbuf)))
  113. (if (not (file-exists-p pdffile))
  114. (error "PDF file was not produced from %s" tex-file)
  115. (set-window-configuration wconfig)
  116. (when org-export-pdf-remove-logfiles
  117. (dolist (ext org-export-pdf-logfiles)
  118. (setq tex-file (concat base "." ext))
  119. (and (file-exists-p tex-file) (delete-file tex-file))))
  120. pdffile)))
  121. (defun org-babel-prep-session:latex (session params)
  122. (error "Latex does not support sessions"))
  123. (provide 'ob-latex)
  124. ;;; ob-latex.el ends here