- enable auto format

- new output directory for pdf
This commit is contained in:
2024-05-07 08:07:44 +02:00
parent 709f749ad4
commit c34108d942
12 changed files with 158 additions and 157 deletions
+12 -11
View File
@@ -1,5 +1,6 @@
{
"editor.wordWrap": "on",
"editor.formatOnSave": true,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"latex-workshop.latex.outDir": "%WORKSPACE_FOLDER%/build",
"latex-workshop.latex.autoBuild.run": "onFileChange",
@@ -7,8 +8,8 @@
"latex-workshop.latexindent.args": [
"-c=%WORKSPACE_FOLDER%/latexindent/",
"-l=%WORKSPACE_FOLDER%/latexindent/localSettings.yaml",
"%DOCFILE%",
// "%TMPFILE%"
// "%DOCFILE%",
"%TMPFILE%",
// "-y=defaultIndent: '%INDENT%'"
],
"latex-workshop.latex.recipes": [
@@ -16,15 +17,15 @@
"name": "Kleiax Bachlorearbeit",
"tools": [
"latexmk",
// "copyPdf",
// "renamePdf"
"copyPdf",
"renamePdf"
]
},
{
"name": "Copy and Move",
"tools": [
"copyPdf",
// "renamePdf"
"renamePdf"
]
},
],
@@ -45,18 +46,18 @@
},
{
"name": "copyPdf",
"command": "copy",
"command": "cp",
"args": [
"%DIR_W32%\\build\\%DOCFILE%.pdf",
"%DIR_W32%\\output\\"
"%DIR%/build/%DOCFILE%.pdf",
"%DIR%/"
]
},
{
"name": "renamePdf",
"command": "move",
"command": "mv",
"args": [
"-y",
"%DIR_W32%\\output\\%DOCFILE%.pdf",
// "-y",
"%DIR%/%DOCFILE%.pdf",
"Projektarbeit.pdf"
]
}