>From 126b6b77b0a700740f837f729a0a6050e0837f71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rudolf=20Adamkovi=C4=8D?= Date: Thu, 3 Nov 2022 01:05:47 +0100 Subject: [PATCH 2/2] 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). --- lisp/ob-latex.el | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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) -- 2.38.1