I'm looking to configure kile-livepreview on Ubuntu with -shell-escape so that when I've saved the minted environment is compiled.
I'm successfully configured the PDFLatex and it works flawlessly. I couldn't find any information about how to configure it under Kile's configure menu or kilerc.
Is it possible to modify it?
[Tool/LivePreview-PDFLaTeX/Default]Once you're there you'll find a line that starts with
options(mine looked like this:options=-synctex=1 -interaction=nonstopmode -output-directory=%dir_target %source).Prepend
-shell-escapeto the options so that you get something like this:
– abrac Sep 27 '20 at 16:44options=-synctex=1 -shell-escape -interaction=nonstopmode -output-directory=%dir_target %sourcedir /s %userprofile%\kilercOpen with notepad, findTool/LivePreview-PDFLaTeXand in options add -shell-escape:options=-shell-escape -synctex=1 -interaction=nonstopmode -output-directory=%dir_target %source– Manuel Alves Feb 09 '22 at 11:59