summaryrefslogtreecommitdiff
path: root/lisp/ob-latex.el
diff options
context:
space:
mode:
authorRudolf Adamkovič <salutis@me.com>2022-11-03 01:05:47 +0100
committerIhor Radchenko <yantar92@posteo.net>2022-11-03 15:27:49 +0800
commit17425599cf7e7a7ec311204851005e141f5ce89b (patch)
tree39dba8dc034cf02e999bdd96c6d5ce645728efc5 /lisp/ob-latex.el
parentaaccbb2f987e80190cfb7ca0cb87d2546455a468 (diff)
ob-latex: Call Inkscape with descriptive arguments
* lisp/ob-latex.el (org-babel-latex-pdf-svg-process): Use descriptive arguments, such as '--export-area-drawing' instead of '-D', to optimize for readability and not brevity (which makes sense for interactive use, which does not apply here).
Diffstat (limited to 'lisp/ob-latex.el')
-rw-r--r--lisp/ob-latex.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ob-latex.el b/lisp/ob-latex.el
index c39c9c5d3..69124a36c 100644
--- a/lisp/ob-latex.el
+++ b/lisp/ob-latex.el
@@ -110,7 +110,13 @@ exporting the literal LaTeX source."
:type 'function)
(defcustom org-babel-latex-pdf-svg-process
- "inkscape --pdf-poppler %f -D -T -l -o %O"
+ "inkscape \
+--pdf-poppler \
+--export-area-drawing \
+--export-text-to-path \
+--export-plain-svg \
+--export-filename=%O \
+%f"
"Command to convert a PDF file to an SVG file."
:group 'org-babel
:type 'string)