Skip to content

Commit

Permalink
feat: windows settings json
Browse files Browse the repository at this point in the history
  • Loading branch information
IloveNooodles committed Jul 14, 2024
1 parent b731cf6 commit ddd88dd
Showing 1 changed file with 57 additions and 8 deletions.
65 changes: 57 additions & 8 deletions .vscode/settings.windows.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,21 @@
"latex-workshop.latex.recipe.default": "lastUsed",
"latex-workshop.latex.recipes": [
{
"name": "latex_itb_ta WINDOWS",
"tools": ["latex_itb_make", "latex_itb_del", "latex_itb_move"]
"name": "latex_itb_ta Thesis",
"tools": ["latex_itb_make_thesis", "latex_itb_move_thesis"]
},
{
"name": "latex_itb_ta Yudisium",
"tools": ["latex_itb_make_yudisium", "latex_itb_move_yudisium"]
},
{
"name": "latex_itb_ta Paper",
"tools": ["latex_itb_make_paper", "latex_itb_move_paper"]
}
],
"latex-workshop.latex.tools": [
{
"name": "latex_itb_make",
"name": "latex_itb_make_thesis",
"command": "latexmk",
"args": [
"-synctex=1",
Expand All @@ -24,14 +32,55 @@
"env": {}
},
{
"name": "latex_itb_del",
"command": "del",
"args": ["/Q", "%DIR_W32%\\..\\output\\thesis.pdf"]
"name": "latex_itb_make_yudisium",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-bibtex",
"-outdir=..\\build",
"-cd",
"%DIR_W32%\\yudisium.tex"
],
"env": {}
},
{
"name": "latex_itb_move",
"name": "latex_itb_make_paper",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-bibtex",
"-outdir=..\\build",
"-cd",
"%DIR_W32%\\paper.tex"
],
"env": {}
},
{
"name": "latex_itb_move_thesis",
"command": "copy",
"args": ["%OUTDIR_W32%\\thesis.pdf", "%DIR_W32%\\..\\output\\thesis.pdf"]
"args": ["%OUTDIR_W32%\\thesis.pdf", "%DIR_W32%\\..\\output\\thesis.pdf"],
"env": {}
},
{
"name": "latex_itb_move_yudisium",
"command": "copy",
"args": [
"%OUTDIR_W32%\\yudisium.pdf",
"%DIR_W32%\\..\\output\\yudisium.pdf"
],
"env": {}
},
{
"name": "latex_itb_move_paper",
"command": "copy",
"args": ["%OUTDIR_W32%\\paper.pdf", "%DIR_W32%\\..\\output\\paper.pdf"],
"env": {}
}
],
"latex-workshop.synctex.afterBuild.enabled": true,
Expand Down

0 comments on commit ddd88dd

Please sign in to comment.