LaTeX-Workshop: Can not show error if file name has spaces.

Preliminary questions [Required]

Disable all the other extensions except for LaTeX Workshop, restart VS Code, and check that you still see this issue. [Required]

You still see this issue?: Yes/No

Make sure to visit the wiki FAQ before filling an issue.

You visited the wiki?: Yes

If your issue is with compiling a document (not having to do with finding the root file of a project), check first that you can compile manually.

You can compile a TeX document manually?: Yes

Describe the bug [Required]

If the tex file name has space, Latex-Workshop can not present the syntax error in problem panels. For example, I use \acute{a} in text without math mode. I need to check log file to find the reason why the recipe terminated with error.

To Reproduce

Steps to reproduce the behavior:

  1. Go to ‘…’
  2. Click on ‘…’
  3. See error

Expected behavior

A clear and concise description of what you expected to happen.

Logs [Required]

Please paste the whole log messages here, not parts of ones. The log should start with Initializing LaTeX Workshop. It is very important to identify problems.

LaTeX Workshop Output [Required]

[16:53:03] Initializing LaTeX Workshop.
[16:53:03] Extension root: c:\Users\sakurajyan\.vscode\extensions\james-yu.latex-workshop-8.26.0
[16:53:03] $PATH: C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Program Files\ImageMagick-7.1.0-Q16-HDRI;C:\Program Files (x86)\VMware\VMware Workstation\bin\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\Program Files\Git\cmd;C:\Program Files\dotnet\;C:\Program Files\Calibre2\;C:\Program Files (x86)\PDFtk\bin\;C:\Program Files\MATLAB\R2021b\runtime\win64;C:\Program Files\MATLAB\R2021b\bin;C:\Program Files\Wolfram Research\WolframScript\;C:\texlive\2022\bin\win32;C:\Users\sakurajyan\AppData\Local\Programs\Python\Python310\Scripts\;C:\Users\sakurajyan\AppData\Local\Programs\Python\Python310\;C:\Users\sakurajyan\AppData\Local\Microsoft\WindowsApps;C:\Users\sakurajyan\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\sakurajyan\AppData\Local\GitHubDesktop\bin;C:\Users\sakurajyan\AppData\Local\Pandoc\
[16:53:03] $SHELL: undefined
[16:53:03] $LANG: undefined
[16:53:03] $LC_ALL: undefined
[16:53:03] process.platform: win32
[16:53:04] process.arch: x64
[16:53:04] vscode.env.appName: Visual Studio Code
[16:53:04] vscode.env.remoteName: undefined
[16:53:04] vscode.env.uiKind: 1
[16:53:04] Workspace for configuration: file:///d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results
[16:53:04] editor.acceptSuggestionOnEnter: "on"
[16:53:04] latex-workshop.bind.enter.key: true
[16:53:04] latex-workshop.docker.enabled: false
[16:53:04] latex-workshop.docker.image.latex: ""
[16:53:04] latex-workshop.hover.preview.mathjax.extensions: []
[16:53:04] latex-workshop.intellisense.package.enabled: true
[16:53:04] latex-workshop.intellisense.update.aggressive.enabled: false
[16:53:04] latex-workshop.intellisense.update.delay: 1000
[16:53:04] latex-workshop.latex.autoBuild.run: "onFileChange"
[16:53:04] latex-workshop.latex.build.forceRecipeUsage: false
[16:53:04] latex-workshop.latex.outDir: "%DIR%"
[16:53:04] latex-workshop.latex.recipes: [
 {
  "name": "latexmk 🔃",
  "tools": [
   "latexmk"
  ]
 },
 {
  "name": "latexmk (latexmkrc)",
  "tools": [
   "latexmk_rconly"
  ]
 },
 {
  "name": "latexmk (lualatex)",
  "tools": [
   "lualatexmk"
  ]
 },
 {
  "name": "latexmk (xelatex)",
  "tools": [
   "xelatexmk"
  ]
 },
 {
  "name": "pdflatex ➞ bibtex ➞ pdflatex × 2",
  "tools": [
   "pdflatex",
   "bibtex",
   "pdflatex",
   "pdflatex"
  ]
 },
 {
  "name": "Compile Rnw files",
  "tools": [
   "rnw2tex",
   "latexmk"
  ]
 },
 {
  "name": "Compile Jnw files",
  "tools": [
   "jnw2tex",
   "latexmk"
  ]
 },
 {
  "name": "tectonic",
  "tools": [
   "tectonic"
  ]
 }
]
[16:53:04] latex-workshop.latex.tools: [
 {
  "name": "latexmk",
  "command": "latexmk",
  "args": [
   "-synctex=1",
   "-interaction=nonstopmode",
   "-file-line-error",
   "-pdf",
   "-outdir=%OUTDIR%",
   "%DOC%"
  ],
  "env": {}
 },
 {
  "name": "lualatexmk",
  "command": "latexmk",
  "args": [
   "-synctex=1",
   "-interaction=nonstopmode",
   "-file-line-error",
   "-lualatex",
   "-outdir=%OUTDIR%",
   "%DOC%"
  ],
  "env": {}
 },
 {
  "name": "xelatexmk",
  "command": "latexmk",
  "args": [
   "-synctex=1",
   "-interaction=nonstopmode",
   "-file-line-error",
   "-xelatex",
   "-outdir=%OUTDIR%",
   "%DOC%"
  ],
  "env": {}
 },
 {
  "name": "latexmk_rconly",
  "command": "latexmk",
  "args": [
   "%DOC%"
  ],
  "env": {}
 },
 {
  "name": "pdflatex",
  "command": "pdflatex",
  "args": [
   "-synctex=1",
   "-interaction=nonstopmode",
   "-file-line-error",
   "%DOC%"
  ],
  "env": {}
 },
 {
  "name": "bibtex",
  "command": "bibtex",
  "args": [
   "%DOCFILE%"
  ],
  "env": {}
 },
 {
  "name": "rnw2tex",
  "command": "Rscript",
  "args": [
   "-e",
   "knitr::opts_knit$set(concordance = TRUE); knitr::knit('%DOCFILE_EXT%')"
  ],
  "env": {}
 },
 {
  "name": "jnw2tex",
  "command": "julia",
  "args": [
   "-e",
   "using Weave; weave(\"%DOC_EXT%\", doctype=\"tex\")"
  ],
  "env": {}
 },
 {
  "name": "jnw2texmintex",
  "command": "julia",
  "args": [
   "-e",
   "using Weave; weave(\"%DOC_EXT%\", doctype=\"texminted\")"
  ],
  "env": {}
 },
 {
  "name": "tectonic",
  "command": "tectonic",
  "args": [
   "--synctex",
   "--keep-logs",
   "%DOC%.tex"
  ],
  "env": {}
 }
]
[16:53:04] latex-workshop.viewer.pdf.internal.keyboardEvent: "auto"
[16:53:04] Creating a new file watcher.
[16:53:04] watcherOptions: {"useFsEvents":false,"usePolling":false,"interval":300,"binaryInterval":1000,"awaitWriteFinish":{"stabilityThreshold":250}}
[16:53:04] Creating PDF file watcher.
[16:53:04] watcherOptions: {"useFsEvents":false,"usePolling":false,"interval":300,"binaryInterval":1000,"awaitWriteFinish":{}}
[16:53:04] Creating Bib file watcher.
[16:53:04] watcherOptions: {"useFsEvents":false,"usePolling":false,"interval":300,"binaryInterval":1000,"awaitWriteFinish":{"stabilityThreshold":250}}
[16:53:04] Set $LATEXWORKSHOP_DOCKER_LATEX: ""
[16:53:05] [Server] Creating LaTeX Workshop http and websocket server.
[16:53:05] LaTeX Workshop initialized.
[16:53:05] Trigger characters for intellisense of LaTeX documents: ["\\",",","{"]
[16:53:05] Bibtex format config: {"tab":"  ","case":"lowercase","left":"{","right":"}","trailingComma":false,"sort":["key"],"alignOnEqual":true,"sortFields":false,"fieldsOrder":[],"firstEntries":["string","xdata"]}
[16:53:05] Current workspace folders: ["file:///d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results"]
[16:53:05] Found root file from active editor: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.tex
[16:53:06] Root file changed: from undefined to d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.tex
[16:53:06] Start to find all dependencies.
[16:53:06] Root file languageId: latex
[16:53:06] [Server] Server successfully started: {"address":"127.0.0.1","family":"IPv4","port":60354}
[16:53:06] Reset file watcher.
[16:53:06] Parsing a file and its subfiles: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.tex
[16:53:06] Parse fls file.
[16:53:06] Cannot find fls file: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.fls
[16:53:06] Added to file watcher: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.tex
[16:53:06] [Server] valdOrigin is http://127.0.0.1:60354
[16:53:06] Restoring the PDF viewer at the column 1 from the state: {"type":"state","state":{"pdfFileUri":"file:///d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Problems.pdf","scale":"auto","scrollMode":0,"spreadMode":0,"scrollTop":1662.6666259765625,"scrollLeft":0,"trim":0,"synctexEnabled":true,"autoReloadEnabled":true}}
[16:53:06] Checking for duplicate labels: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.tex.
[16:53:06] onDidSaveTextDocument triggered: file:///d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Log Sobolev Inequality/Zn Log Sobolev Inequality/Untitled 1.tex
[16:53:06] The internal PDF viewer url: http://127.0.0.1:60354/viewer.html?incode=1&file=pdf..ZmlsZSUzQSUyRiUyRiUyRmQlM0ElMkZPbmVEcml2ZSUyMC0lMjBzdHUuaGl0LmVkdS5jbiUyRk1hdGglMjBQaC5EJTIwQXJ0aWNsZSUyRkxpdHRsZSUyMFJlc3VsdHMlMkZQcm9ibGVtcy5wZGY
[16:53:06] Added to PDF file watcher: file:///d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Problems.pdf
[16:53:06] Snippet data loaded.
[16:53:06] File watcher - file changed: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.tex
[16:53:06] Parsing a file and its subfiles: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.tex
[16:53:07] Checking for duplicate labels: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.tex.
[16:53:07] Auto build started detecting the change of a file: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.tex
[16:53:07] BUILD command invoked.
[16:53:07] The document of the active editor: file:///d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Log Sobolev Inequality/Zn Log Sobolev Inequality/Untitled 1.tex
[16:53:07] The languageId of the document: latex
[16:53:07] Building root file: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.tex
[16:53:07] Build root file d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.tex
[16:53:07] outDir: d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Log Sobolev Inequality/Zn Log Sobolev Inequality
[16:53:07] Recipe step 1: latexmk
[16:53:07] Recipe step 1 args: ["-synctex=1","-interaction=nonstopmode","-file-line-error","-pdf","-outdir=d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Log Sobolev Inequality/Zn Log Sobolev Inequality","d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Log Sobolev Inequality/Zn Log Sobolev Inequality/Untitled 1"]
[16:53:07] Recipe step env: {}
[16:53:07] cwd: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality
[16:53:07] LaTeX build process spawned. PID: 8404.
[16:53:07] Handle data type: open
[16:53:07] Preview PDF file: file:///d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Problems.pdf
[16:53:07] Handle data type: request_params
[16:53:07] Sending the settings of the PDF viewer for initialization: {"type":"params","scale":"auto","trim":0,"scrollMode":0,"spreadMode":0,"hand":false,"invertMode":{"enabled":false,"brightness":1,"grayscale":0.6,"hueRotate":180,"invert":0,"sepia":0},"bgColor":"#ffffff","keybindings":{"synctex":"ctrl-click"}}
[16:53:08] Handle data type: loaded
[16:53:08] Manager.fileWatcher.getWatched: {"d:\\OneDrive - stu.hit.edu.cn\\Math Ph.D Article\\Little Results\\Log Sobolev Inequality\\Zn Log Sobolev Inequality":["Untitled 1.tex"]}
[16:53:08] Manager.filesWatched: ["d:\\OneDrive - stu.hit.edu.cn\\Math Ph.D Article\\Little Results\\Log Sobolev Inequality\\Zn Log Sobolev Inequality\\Untitled 1.tex"]
[16:53:08] BibWatcher.bibWatcher.getWatched: {}
[16:53:08] BibWatcher.bibsWatched: []
[16:53:08] PdfWatcher.pdfWatcher.getWatched: {"d:\\OneDrive - stu.hit.edu.cn\\Math Ph.D Article\\Little Results":["Problems.pdf"]}
[16:53:08] PdfWatcher.pdfsWatched: ["d:\\OneDrive - stu.hit.edu.cn\\Math Ph.D Article\\Little Results\\Problems.pdf"]
[16:53:08] PdfWatcher.watchedPdfVirtualUris: []
[16:53:08] PdfWatcher.ignoredPdfUris: ["file:///d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Log Sobolev Inequality/Zn Log Sobolev Inequality/Untitled 1.pdf"]
[16:53:13] Recipe returns with error: 12/null. PID: 8404. message: Latexmk: If appropriate, the -f option can be used to get latexmk
  to try to force complete processing.
C:\texlive\2022\bin\win32\runscript.tlu:915: command failed with exit code 12:
perl.exe c:\texlive\2022\texmf-dist\scripts\latexmk\latexmk.pl -synctex=1 -interaction=nonstopmode -file-line-error -pdf "-outdir=d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Log Sobolev Inequality/Zn Log Sobolev Inequality" "d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Log Sobolev Inequality/Zn Log Sobolev Inequality/Untitled 1"
.
[16:53:13] The environment variable $PATH: undefined
[16:53:13] The environment variable $Path: C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Program Files\ImageMagick-7.1.0-Q16-HDRI;C:\Program Files (x86)\VMware\VMware Workstation\bin\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\Program Files\Git\cmd;C:\Program Files\dotnet\;C:\Program Files\Calibre2\;C:\Program Files (x86)\PDFtk\bin\;C:\Program Files\MATLAB\R2021b\runtime\win64;C:\Program Files\MATLAB\R2021b\bin;C:\Program Files\Wolfram Research\WolframScript\;C:\texlive\2022\bin\win32;C:\Users\sakurajyan\AppData\Local\Programs\Python\Python310\Scripts\;C:\Users\sakurajyan\AppData\Local\Programs\Python\Python310\;C:\Users\sakurajyan\AppData\Local\Microsoft\WindowsApps;C:\Users\sakurajyan\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\sakurajyan\AppData\Local\GitHubDesktop\bin;C:\Users\sakurajyan\AppData\Local\Pandoc\
[16:53:13] The environment variable $SHELL: undefined
[16:53:13] Cleaning auxiliary files and retrying build after toolchain error.
[16:53:13] Clean glob matched files: {"globs":["./**/*.aux","./**/*.bbl","./**/*.blg","./**/*.idx","./**/*.ind","./**/*.lof","./**/*.lot","./**/*.out","./**/*.toc","./**/*.acn","./**/*.acr","./**/*.alg","./**/*.glg","./**/*.glo","./**/*.gls","./**/*.fls","./**/*.log","./**/*.fdb_latexmk","./**/*.snm","./**/*.synctex(busy)","./**/*.synctex.gz(busy)","./**/*.nav","./**/*.synctex.gz"],"outdir":"d:\\OneDrive - stu.hit.edu.cn\\Math Ph.D Article\\Little Results\\Log Sobolev Inequality\\Zn Log Sobolev Inequality"}
[16:53:13] Cleaning file: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.aux
[16:53:13] Cleaning file: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.fls
[16:53:13] Cleaning file: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.log
[16:53:13] Cleaning file: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.fdb_latexmk
[16:53:13] Cleaning file: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.synctex.gz
[16:53:13] Recipe step 1: latexmk
[16:53:13] Recipe step 1 args: ["-synctex=1","-interaction=nonstopmode","-file-line-error","-pdf","-outdir=d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Log Sobolev Inequality/Zn Log Sobolev Inequality","d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Log Sobolev Inequality/Zn Log Sobolev Inequality/Untitled 1"]
[16:53:13] Recipe step env: {}
[16:53:13] cwd: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality
[16:53:13] LaTeX build process spawned. PID: 18264.
[16:53:18] Recipe returns with error: 12/null. PID: 18264. message: Latexmk: If appropriate, the -f option can be used to get latexmk
  to try to force complete processing.
C:\texlive\2022\bin\win32\runscript.tlu:915: command failed with exit code 12:
perl.exe c:\texlive\2022\texmf-dist\scripts\latexmk\latexmk.pl -synctex=1 -interaction=nonstopmode -file-line-error -pdf "-outdir=d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Log Sobolev Inequality/Zn Log Sobolev Inequality" "d:/OneDrive - stu.hit.edu.cn/Math Ph.D Article/Little Results/Log Sobolev Inequality/Zn Log Sobolev Inequality/Untitled 1"
.
[16:53:18] The environment variable $PATH: undefined
[16:53:18] The environment variable $Path: C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Program Files\ImageMagick-7.1.0-Q16-HDRI;C:\Program Files (x86)\VMware\VMware Workstation\bin\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\Program Files\Git\cmd;C:\Program Files\dotnet\;C:\Program Files\Calibre2\;C:\Program Files (x86)\PDFtk\bin\;C:\Program Files\MATLAB\R2021b\runtime\win64;C:\Program Files\MATLAB\R2021b\bin;C:\Program Files\Wolfram Research\WolframScript\;C:\texlive\2022\bin\win32;C:\Users\sakurajyan\AppData\Local\Programs\Python\Python310\Scripts\;C:\Users\sakurajyan\AppData\Local\Programs\Python\Python310\;C:\Users\sakurajyan\AppData\Local\Microsoft\WindowsApps;C:\Users\sakurajyan\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\sakurajyan\AppData\Local\GitHubDesktop\bin;C:\Users\sakurajyan\AppData\Local\Pandoc\
[16:53:18] The environment variable $SHELL: undefined
[16:53:18] Clean glob matched files: {"globs":["./**/*.aux","./**/*.bbl","./**/*.blg","./**/*.idx","./**/*.ind","./**/*.lof","./**/*.lot","./**/*.out","./**/*.toc","./**/*.acn","./**/*.acr","./**/*.alg","./**/*.glg","./**/*.glo","./**/*.gls","./**/*.fls","./**/*.log","./**/*.fdb_latexmk","./**/*.snm","./**/*.synctex(busy)","./**/*.synctex.gz(busy)","./**/*.nav","./**/*.synctex.gz"],"outdir":"d:\\OneDrive - stu.hit.edu.cn\\Math Ph.D Article\\Little Results\\Log Sobolev Inequality\\Zn Log Sobolev Inequality"}
[16:53:18] Cleaning file: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.aux
[16:53:18] Cleaning file: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.fls
[16:53:18] Cleaning file: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.log
[16:53:18] Cleaning file: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.fdb_latexmk
[16:53:18] Cleaning file: d:\OneDrive - stu.hit.edu.cn\Math Ph.D Article\Little Results\Log Sobolev Inequality\Zn Log Sobolev Inequality\Untitled 1.synctex.gz

Developer Tools Console [Required]

To access the log, click ‘help’ -> ‘Toggle Developer Tools’ -> ‘Console’. Paste anything suspicious.

Nothing

Screenshots

image

Desktop [Required]

Please write exact version numbers. Please don’t write latest instead of exact numbers.

  • OS: Windows 11
  • VS Code version: 1.67.2
  • Extension version: 8.26.0
  • TeX distribution version: TeX Live 2022

Additional questions

Are you using VSCodium?

No

Are you using the Snap or Flatpack versions of VS Code?

No

Are you using LaTeX Workshop with VS Code Remote?

No

If the answer is Yes, please write which one you are using. Write the versions of the remote extension.

  • Remote Containers/Remote SSH/Remote WSL
  • Remote Extension Version: [e.g. 0.48.0]

Additional context

Add any other context about the problem here.

About this issue

  • Original URL
  • State: closed
  • Created 2 years ago
  • Comments: 18 (3 by maintainers)

Commits related to this issue

Most upvoted comments

We can see the cause of the difference, "SyncTeX and "\nSyncTeX:

#ifdef W32UPTEXSYNCTEX
 	                        {
 	                        char *stmp = chgto_oem(tmp);
 	                        printf((synctex_ctxt.flags.quoted ? "SyncTeX written on \"%s\"\n" : "\nSyncTeX written on %s.\n"),
 	                               stmp);
 	                        free(stmp);
 	                        }
#else