VSC Latex-Workshop clean up output directory [closed]












1















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.










share|improve this 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 .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











  • I understand that this question is not directly latex related, but would it fit somewhere else?

    – Humpawumpa
    Feb 21 at 7:20
















1















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.










share|improve this 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 .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











  • I understand that this question is not directly latex related, but would it fit somewhere else?

    – Humpawumpa
    Feb 21 at 7:20














1












1








1








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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 .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











  • I understand that this question is not directly latex related, but would it fit somewhere else?

    – Humpawumpa
    Feb 21 at 7:20














  • 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











  • 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










0






active

oldest

votes

















0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes

Popular posts from this blog

How to send String Array data to Server using php in android

Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

Is anime1.com a legal site for watching anime?