Skip to content

Instantly share code, notes, and snippets.

@ryo-ARAKI
Last active February 17, 2023 12:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryo-ARAKI/8a256ef600325b0344bbc3990818b691 to your computer and use it in GitHub Desktop.
Save ryo-ARAKI/8a256ef600325b0344bbc3990818b691 to your computer and use it in GitHub Desktop.
LaTeX compile setting
#!/usr/bin/perl
$latex = 'pdflatex %O -synctex=1 -interaction=nonstopmode %S';
$bibtex = 'biblatex';
$biber = 'biber --bblencoding=utf8 -u -U --output_safechars';
$dvipdf = 'dvipdfmx %O %S';
$max_repeat = 5;
$pdf_mode = 3;
$pvc_view_file_via_temporary = 0;
$pdf_previewer = 'evince 2>/dev/null';
#!/usr/bin/perl
$latex = 'uplatex -synctex=1 %O %S -halt-on-error';
$bibtex = 'biblatex';
$biber = 'biber --bblencoding=utf8 -u -U --output_safechars';
$dvipdf = 'dvipdfmx -f takao.map %O %S';
$max_repeat = 5;
$pdf_mode = 3;
$pvc_view_file_via_temporary = 0;
$pdf_previewer = 'evince 2>/dev/null';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment