summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus <rasmus@gmx.us>2013-05-20 12:11:33 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2013-05-21 08:20:36 +0200
commitbb9233ef8a20fd184c617c6f1ddb9546e52b1473 (patch)
treeea908358307d7be949191247544e950ac5e0ddf7
parent84bae843e7fb3fc61054dd58ae28ca7988b10471 (diff)
downloadorg-mode-bb9233ef8a20fd184c617c6f1ddb9546e52b1473.tar.gz
ox-latex.el: Support for pgf files
* ox-latex.el (org-latex--inline-image): pgf is recognized as an inline image and treated the same way tikz files. Python matplotlib and pgfprint for Octave generates pgf plots rather than TiKZ plots. They need just be included via \input{.}. TINYCHANGE
-rw-r--r--lisp/ox-latex.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index 41cf1d0..fdada8b 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -420,7 +420,7 @@ environment."
:type 'string)
(defcustom org-latex-inline-image-rules
- '(("file" . "\\.\\(pdf\\|jpeg\\|jpg\\|png\\|ps\\|eps\\|tikz\\)\\'"))
+ '(("file" . "\\.\\(pdf\\|jpeg\\|jpg\\|png\\|ps\\|eps\\|tikz\\|pgf\\)\\'"))
"Rules characterizing image files that can be inlined into LaTeX.
A rule consists in an association whose key is the type of link
@@ -1739,7 +1739,7 @@ used as a communication channel."
(if (not (string-match "\\`\\[\\(.*\\)\\]\\'" opt)) opt
(match-string 1 opt))))
image-code)
- (if (equal filetype "tikz")
+ (if (member filetype '("tikz" "pgf"))
;; For tikz images:
;; - use \input to read in image file.
;; - if options are present, wrap in a tikzpicture environment.