This repository has been archived on 2024-10-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Bachelor-Arbeit-Latex/.vscode/settings.json
T
2024-07-11 15:26:20 +02:00

140 lines
3.3 KiB
JSON

{
"editor.wordWrap": "on",
"editor.formatOnSave": true,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"latex-workshop.latex.outDir": "%WORKSPACE_FOLDER%/build",
"latex-workshop.latex.autoBuild.run": "onFileChange",
"latex-workshop.latexindent.path": "latexindent",
"latex-workshop.latexindent.args": [
"-c=%WORKSPACE_FOLDER%/latexindent/",
"-l=%WORKSPACE_FOLDER%/latexindent/localSettings.yaml",
// "%DOCFILE%",
"%TMPFILE%",
// "-y=defaultIndent: '%INDENT%'"
],
"latex-workshop.latex.recipes": [
{
"name": "Kleiax Bachlorarbeit",
"tools": [
"latexmk",
"copyPdf",
"renamePdf"
]
},
{
"name": "Copy and Move",
"tools": [
"copyPdf",
"renamePdf"
]
},
],
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-shell-escape",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-outdir=%OUTDIR%",
"%DOC%"
],
"env": {}
},
{
"name": "copyPdf",
"command": "cp",
"args": [
"%DIR%/build/%DOCFILE%.pdf",
"%DIR%/"
]
},
{
"name": "renamePdf",
"command": "mv",
"args": [
// "-y",
"%DIR%/%DOCFILE%.pdf",
"Bachlorarbeit.pdf"
]
}
],
"cSpell.language": "en,de-DE,de",
"cSpell.words": [
"Akozon",
"Arduinoframework",
"Austauschencoder",
"Bachelorthesis",
"Basissation",
"Beidou",
"blox",
"Blox",
"bürstenbehafteten",
"Christof",
"CPHA",
"Desktopumgebung",
"DGNSS",
"documentclass",
"Doxygen",
"Dutycycle",
"EGNOS",
"Encodern",
"Encoderscheibe",
"Espressif",
"flashen",
"gesockelt",
"GLONASS",
"GPIO",
"Hopfield",
"hypersetup",
"Ionosphärische",
"ionosphärischen",
"Kalibrierungsdaten",
"Klobuchar",
"Konnektoren",
"magnetoresistiv",
"Mehrdeutigkeitslösung",
"mintinline",
"Nachstellzeit",
"NAVSTAR",
"NTRIP",
"PICO",
"Pinleiste",
"POCI",
"Pulsecounter",
"Pulsweitenmodulation",
"radiziert",
"Reely",
"Remotedesktop",
"RINEX",
"Röhrig",
"RTCM",
"Rucken",
"Rückwärtstransformation",
"Saastamoinen",
"SBAS",
"Sparkfun",
"SRAM",
"Strato",
"STRSVR",
"struct",
"subsubsection",
"Taskverwaltung",
"Terminalblock",
"Vorwärtstransformation",
"WROOM",
"XOUT",
"Xtensa",
"YOUT",
"ZEDF",
"Zielinski",
"ZOUT",
"Zumkehr"
],
"cSpell.enableFiletypes": [
"tex"
]
}