2 Commits d36fa74a99 ... bba1c38655

Author SHA1 Message Date
  Fabian Peter Hammerle bba1c38655 readme: remove latex package install commands (using ansible-playbook instead) 3 years ago
  Fabian Peter Hammerle 3aeae8f03b enable shell commands for \includesvg to run inkscape 3 years ago
2 changed files with 4 additions and 2 deletions
  1. 0 2
      README.md
  2. 4 0
      latexmkrc

+ 0 - 2
README.md

@@ -4,8 +4,6 @@
 
 ```sh
 sudo apt-get install latexmk zathura
-# optional:
-sudo apt-get install texlive-latex-extra texlive-science biber
 git clone git@git.hammerle.me:fphammerle/config-latexmk.git ~/.config/latexmk
 ln --symbolic --backup=numbered .config/latexmk/latexmkrc ~/.latexmkrc
 ```

+ 4 - 0
latexmkrc

@@ -1,3 +1,7 @@
 $out_dir = 'latex-build';
+
+# > Package svg Warning: You didn't enable `shell escape' (or `write18') so it wasn't possible to launch the Inkscape export [...]
+$pdflatex = "pdflatex -shell-escape %O %S";
+
 $pdf_mode = 1;  # tex -> pdf via pdflatex
 $pdf_previewer = "start zathura";