use full tex

This commit is contained in:
Charlotte 🦝 Delenk 2023-05-27 07:47:52 +01:00
parent 733689176d
commit 6350e9b456
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -57,7 +57,7 @@ in {
"latex-workshop.latex.tools" = [
{
"name" = "latexmk";
"command" = "${pkgs.texlive.combined.scheme-medium}/bin/latexmk";
"command" = "${pkgs.texlive.combined.scheme-full}/bin/latexmk";
"args" = [
"-synctex=1"
"-interaction=nonstopmode"
@ -71,7 +71,7 @@ in {
}
{
"name" = "lualatexmk";
"command" = "${pkgs.texlive.combined.scheme-medium}/bin/latexmk";
"command" = "${pkgs.texlive.combined.scheme-full}/bin/latexmk";
"args" = [
"-synctex=1"
"-interaction=nonstopmode"
@ -84,13 +84,13 @@ in {
}
{
"name" = "latexmk_rconly";
"command" = "${pkgs.texlive.combined.scheme-medium}/bin/latexmk";
"command" = "${pkgs.texlive.combined.scheme-full}/bin/latexmk";
"args" = ["%DOC%"];
"env" = {};
}
{
"name" = "pdflatex";
"command" = "${pkgs.texlive.combined.scheme-medium}/bin/pdflatex";
"command" = "${pkgs.texlive.combined.scheme-full}/bin/pdflatex";
"args" = [
"-synctex=1"
"-interaction=nonstopmode"
@ -101,7 +101,7 @@ in {
}
{
"name" = "bibtex";
"command" = "${pkgs.texlive.combined.scheme-medium}/bin/bibtex";
"command" = "${pkgs.texlive.combined.scheme-full}/bin/bibtex";
"args" = ["%DOCFILE%"];
"env" = {};
}