I am trying to set up a repository for my slides and talks, so I have a repository with two folders
slides/talks/
Now due to the security setup as mentioned here (How) can I include the file somedir/file.tex in the file somedir/subdir/anotherfile.tex it does not work to \include my slides. I want to run either xelatex or latexmk, so what if I actually do want to include these files? I found a few answers here and there but I seem to not get beyond the error message that the aux file can not be written for about the last hour.
So: What is the setting that allows me to run xelatex (or latexmk) in this situation?
I am on VS code and setting the output directory like
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"--output-directory=%OUTDIR%",
"%DOC%"
]
},
does not help. Patching this would be my favourite way of a solution.