VSC Latex-Workshop clean up output directory [closed]
I try to have a cleaned up output directory after build but it doesn't work. Is anyone using this VS Code Extension and could tell me what's wrong with my settings?
{
"editor.wordWrap": "on",
"editor.wordWrapColumn": 80,
"editor.wrappingIndent": "same",
"latex-workshop.latex.outDir": "./build",
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.autoBuild.cleanAndRetry.enabled": true,
"latex-workshop.latex.autoClean.run": "onBuilt",
"latex-workshop.latex.clean.subfolder.enabled": true,
"latex-workshop.latex.clean.fileTypes": [ "*.aux" ]
}
It's building into the /build directory and I'd like to delete everything but the PDF files afterwards.
ide build-system
closed as off-topic by JouleV, Raaja, Stefan Pinnow, Phelype Oleinik, Dox Feb 20 at 13:19
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question does not fall within the scope of TeX, LaTeX or related typesetting systems as defined in the help center." – JouleV, Raaja, Stefan Pinnow, Phelype Oleinik, Dox
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I try to have a cleaned up output directory after build but it doesn't work. Is anyone using this VS Code Extension and could tell me what's wrong with my settings?
{
"editor.wordWrap": "on",
"editor.wordWrapColumn": 80,
"editor.wrappingIndent": "same",
"latex-workshop.latex.outDir": "./build",
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.autoBuild.cleanAndRetry.enabled": true,
"latex-workshop.latex.autoClean.run": "onBuilt",
"latex-workshop.latex.clean.subfolder.enabled": true,
"latex-workshop.latex.clean.fileTypes": [ "*.aux" ]
}
It's building into the /build directory and I'd like to delete everything but the PDF files afterwards.
ide build-system
closed as off-topic by JouleV, Raaja, Stefan Pinnow, Phelype Oleinik, Dox Feb 20 at 13:19
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question does not fall within the scope of TeX, LaTeX or related typesetting systems as defined in the help center." – JouleV, Raaja, Stefan Pinnow, Phelype Oleinik, Dox
If this question can be reworded to fit the rules in the help center, please edit the question.
1
Welcome to TeX - LaTeX! I guess you need to extend the last line to include other extensions, but that is potentially a long list. Cf. gist.github.com/kogakure/149016 (but I am not sure why.dviis on that list)
– Andrew Swann
Feb 20 at 11:06
without running vs code I am having to guess at suggestions however latex-workshop.latex.clean.subfolder.enabled implies subfolders of outdir but you have set outdir to build ! for some hints on a related issue see github.com/James-Yu/LaTeX-Workshop/issues/530 where the command assumes outdir is main then filetypes are given as build/*
– KJO
Feb 20 at 11:36
I understand that this question is not directly latex related, but would it fit somewhere else?
– Humpawumpa
Feb 21 at 7:20
add a comment |
I try to have a cleaned up output directory after build but it doesn't work. Is anyone using this VS Code Extension and could tell me what's wrong with my settings?
{
"editor.wordWrap": "on",
"editor.wordWrapColumn": 80,
"editor.wrappingIndent": "same",
"latex-workshop.latex.outDir": "./build",
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.autoBuild.cleanAndRetry.enabled": true,
"latex-workshop.latex.autoClean.run": "onBuilt",
"latex-workshop.latex.clean.subfolder.enabled": true,
"latex-workshop.latex.clean.fileTypes": [ "*.aux" ]
}
It's building into the /build directory and I'd like to delete everything but the PDF files afterwards.
ide build-system
I try to have a cleaned up output directory after build but it doesn't work. Is anyone using this VS Code Extension and could tell me what's wrong with my settings?
{
"editor.wordWrap": "on",
"editor.wordWrapColumn": 80,
"editor.wrappingIndent": "same",
"latex-workshop.latex.outDir": "./build",
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.autoBuild.cleanAndRetry.enabled": true,
"latex-workshop.latex.autoClean.run": "onBuilt",
"latex-workshop.latex.clean.subfolder.enabled": true,
"latex-workshop.latex.clean.fileTypes": [ "*.aux" ]
}
It's building into the /build directory and I'd like to delete everything but the PDF files afterwards.
ide build-system
ide build-system
edited Feb 20 at 9:49
JouleV
4,3251938
4,3251938
asked Feb 20 at 9:27
HumpawumpaHumpawumpa
1206
1206
closed as off-topic by JouleV, Raaja, Stefan Pinnow, Phelype Oleinik, Dox Feb 20 at 13:19
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question does not fall within the scope of TeX, LaTeX or related typesetting systems as defined in the help center." – JouleV, Raaja, Stefan Pinnow, Phelype Oleinik, Dox
If this question can be reworded to fit the rules in the help center, please edit the question.
closed as off-topic by JouleV, Raaja, Stefan Pinnow, Phelype Oleinik, Dox Feb 20 at 13:19
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question does not fall within the scope of TeX, LaTeX or related typesetting systems as defined in the help center." – JouleV, Raaja, Stefan Pinnow, Phelype Oleinik, Dox
If this question can be reworded to fit the rules in the help center, please edit the question.
1
Welcome to TeX - LaTeX! I guess you need to extend the last line to include other extensions, but that is potentially a long list. Cf. gist.github.com/kogakure/149016 (but I am not sure why.dviis on that list)
– Andrew Swann
Feb 20 at 11:06
without running vs code I am having to guess at suggestions however latex-workshop.latex.clean.subfolder.enabled implies subfolders of outdir but you have set outdir to build ! for some hints on a related issue see github.com/James-Yu/LaTeX-Workshop/issues/530 where the command assumes outdir is main then filetypes are given as build/*
– KJO
Feb 20 at 11:36
I understand that this question is not directly latex related, but would it fit somewhere else?
– Humpawumpa
Feb 21 at 7:20
add a comment |
1
Welcome to TeX - LaTeX! I guess you need to extend the last line to include other extensions, but that is potentially a long list. Cf. gist.github.com/kogakure/149016 (but I am not sure why.dviis on that list)
– Andrew Swann
Feb 20 at 11:06
without running vs code I am having to guess at suggestions however latex-workshop.latex.clean.subfolder.enabled implies subfolders of outdir but you have set outdir to build ! for some hints on a related issue see github.com/James-Yu/LaTeX-Workshop/issues/530 where the command assumes outdir is main then filetypes are given as build/*
– KJO
Feb 20 at 11:36
I understand that this question is not directly latex related, but would it fit somewhere else?
– Humpawumpa
Feb 21 at 7:20
1
1
Welcome to TeX - LaTeX! I guess you need to extend the last line to include other extensions, but that is potentially a long list. Cf. gist.github.com/kogakure/149016 (but I am not sure why
.dvi is on that list)– Andrew Swann
Feb 20 at 11:06
Welcome to TeX - LaTeX! I guess you need to extend the last line to include other extensions, but that is potentially a long list. Cf. gist.github.com/kogakure/149016 (but I am not sure why
.dvi is on that list)– Andrew Swann
Feb 20 at 11:06
without running vs code I am having to guess at suggestions however latex-workshop.latex.clean.subfolder.enabled implies subfolders of outdir but you have set outdir to build ! for some hints on a related issue see github.com/James-Yu/LaTeX-Workshop/issues/530 where the command assumes outdir is main then filetypes are given as build/*
– KJO
Feb 20 at 11:36
without running vs code I am having to guess at suggestions however latex-workshop.latex.clean.subfolder.enabled implies subfolders of outdir but you have set outdir to build ! for some hints on a related issue see github.com/James-Yu/LaTeX-Workshop/issues/530 where the command assumes outdir is main then filetypes are given as build/*
– KJO
Feb 20 at 11:36
I understand that this question is not directly latex related, but would it fit somewhere else?
– Humpawumpa
Feb 21 at 7:20
I understand that this question is not directly latex related, but would it fit somewhere else?
– Humpawumpa
Feb 21 at 7:20
add a comment |
0
active
oldest
votes
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
1
Welcome to TeX - LaTeX! I guess you need to extend the last line to include other extensions, but that is potentially a long list. Cf. gist.github.com/kogakure/149016 (but I am not sure why
.dviis on that list)– Andrew Swann
Feb 20 at 11:06
without running vs code I am having to guess at suggestions however latex-workshop.latex.clean.subfolder.enabled implies subfolders of outdir but you have set outdir to build ! for some hints on a related issue see github.com/James-Yu/LaTeX-Workshop/issues/530 where the command assumes outdir is main then filetypes are given as build/*
– KJO
Feb 20 at 11:36
I understand that this question is not directly latex related, but would it fit somewhere else?
– Humpawumpa
Feb 21 at 7:20