VSC Latex-Workshop 清理輸出目錄

VSC Latex-Workshop 清理輸出目錄

我嘗試在建置後清理輸出目錄,但它不起作用。有人使用這個 VS Code 擴充功能並且可以告訴我我的設定有什麼問題嗎?

{
    "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" ]
}

它正在構建到/build目錄中,之後我想刪除除 PDF 文件之外的所有內容。

相關內容