James-Yu / LaTeX-Workshop

Boost LaTeX typesetting efficiency with preview, compile, autocomplete, colorize, and more.
MIT License
10.65k stars 530 forks source link

errors from the Problem Pane and Linter not showing up when the file is named? #2972

Closed lightningHoneypot closed 2 years ago

lightningHoneypot commented 2 years ago

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

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/No

What does one mean "compile a TeX document manually"?

Describe the bug [Required]

There is a neat feature that I could use which is something called the lint feature, not only I can use it to see equations, but in programming I can use it to debug problems

The problem now is this:

  1. The errors only show when the file is "Untitled-1.tex"
  2. When it is named, the code where the error is does not show up

To Reproduce

Steps to reproduce the behavior:

  1. Have two different files, one named, one Untitled-1.tex
  2. Create your tex file with an error
  3. See if the error pops up on both files

Expected behavior

Errors should be showing on the Problems pane AND the Linter on both files, but Untitled-1.tex is the only one that has it

Logs [Required]

LaTeX Workshop Output [Required]

Named:
[01:17:51] Initializing LaTeX Workshop.
[01:17:51] Extension root: c:\Users\[REDACTED USER]\.vscode\extensions\james-yu.latex-workshop-8.21.1
[01:17:51] $PATH: C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\texlive\2021\bin\win32;C:\Program Files\Git\cmd;C:\Users\[REDACTED USER]\AppData\Local\Programs\Python\Python310\Scripts\;C:\Users\[REDACTED USER]\AppData\Local\Programs\Python\Python310\;C:\Users\[REDACTED USER]\AppData\Local\Microsoft\WindowsApps;C:\Users\[REDACTED USER]\AppData\Local\Programs\Microsoft VS Code\bin;
[01:17:51] $SHELL: undefined
[01:17:51] vscode.env.appName: Visual Studio Code
[01:17:51] vscode.env.remoteName: undefined
[01:17:51] vscode.env.uiKind: 1
[01:17:51] latex-workshop.bind.enter.key: true
[01:17:51] latex-workshop.docker.enabled: false
[01:17:51] latex-workshop.docker.image.latex: ""
[01:17:51] latex-workshop.intellisense.package.enabled: true
[01:17:51] latex-workshop.intellisense.update.aggressive.enabled: false
[01:17:51] latex-workshop.intellisense.update.delay: 1000
[01:17:51] latex-workshop.latex.autoBuild.run: "onFileChange"
[01:17:51] latex-workshop.latex.outDir: "%DIR%"
[01:17:51] latex-workshop.latex.recipes: [
 {
  "name": "latexmk 🔃",
  "tools": [
   "latexmk"
  ]
 },
 {
  "name": "latexmk (latexmkrc)",
  "tools": [
   "latexmk_rconly"
  ]
 },
 {
  "name": "latexmk (lualatex)",
  "tools": [
   "lualatexmk"
  ]
 },
 {
  "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"
  ]
 }
]
[01:17:51] 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": "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": {}
 }
]
[01:17:51] latex-workshop.viewer.pdf.internal.keyboardEvent: "auto"
[01:17:51] Creating a new file watcher.
[01:17:51] watcherOptions: {"useFsEvents":false,"usePolling":false,"interval":300,"binaryInterval":1000,"awaitWriteFinish":{"stabilityThreshold":250}}
[01:17:51] Creating PDF file watcher.
[01:17:51] watcherOptions: {"useFsEvents":false,"usePolling":false,"interval":300,"binaryInterval":1000,"awaitWriteFinish":{}}
[01:17:51] Creating Bib file watcher.
[01:17:51] watcherOptions: {"useFsEvents":false,"usePolling":false,"interval":300,"binaryInterval":1000,"awaitWriteFinish":{"stabilityThreshold":250}}
[01:17:51] Set $LATEXWORKSHOP_DOCKER_LATEX: ""
[01:17:52] [Server] Creating LaTeX Workshop http and websocket server.
[01:17:52] Bibtex format config: {"tab":"  ","case":"lowercase","left":"{","right":"}","trailingComma":false,"sort":["key"],"alignOnEqual":true,"sortFields":false,"fieldsOrder":[],"firstEntries":["string","xdata"]}
[01:17:52] LaTeX Workshop initialized.
[01:17:52] Bibtex format config: {"tab":"  ","case":"lowercase","left":"{","right":"}","trailingComma":false,"sort":["key"],"alignOnEqual":true,"sortFields":false,"fieldsOrder":[],"firstEntries":["string","xdata"]}
[01:17:52] Trigger characters for intellisense of LaTeX documents: ["\\",",","{"]
[01:17:52] Bibtex format config: {"tab":"  ","case":"lowercase","left":"{","right":"}","trailingComma":false,"sort":["key"],"alignOnEqual":true,"sortFields":false,"fieldsOrder":[],"firstEntries":["string","xdata"]}
[01:17:52] Current workspace folders: undefined
[01:17:52] Current workspaceRootDir: 
[01:17:52] Found root file from active editor: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:17:53] Root file changed: from undefined to c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:17:53] Start to find all dependencies.
[01:17:53] Root file languageId: latex
[01:17:53] [Server] Server successfully started: {"address":"127.0.0.1","family":"IPv4","port":64510}
[01:17:53] Reset file watcher.
[01:17:53] Parsing a file and its subfiles: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:17:53] Parse fls file.
[01:17:53] Fls file found: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.fls
[01:17:53] Parse aux file: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.aux
[01:17:53] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:17:54] Added to file watcher: c:\Windows\Fonts\msyh.ttc
[01:17:54] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\Code_RGCfrOVjkn.png
[01:17:54] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\Code_TtV2H21FVL.png
[01:17:54] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\Code_rDYFCVcro2.png
[01:17:54] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\Code_8PUnn1uNZo.png
[01:17:54] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\Code_YL9Wle6Xa6.png
[01:17:54] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\firefox_PnEA0dzVqO.png
[01:17:54] Added to file watcher: c:\Windows\Fonts\simhei.ttf
[01:17:54] Restoring the PDF viewer at the column 1 from the state: {"type":"state","state":{"path":"c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\econ 341 13-16.pdf","scale":"auto","scrollMode":0,"spreadMode":0,"scrollTop":0,"scrollLeft":0,"trim":0,"synctexEnabled":true,"autoReloadEnabled":true}}
[01:17:54] The internal PDF viewer url: http://127.0.0.1:64510/viewer.html?incode=1&file=pdf..YyUzQSU1Q1VzZXJzJTVDc2xlb24lNUNEZXNrdG9wJTVDTGF0ZXglNUNlY29uJTIwMzQxJTIwMTMtMTYucGRm
[01:17:54] Snippet data loaded.
[01:17:54] Checking for duplicate labels: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex.
[01:17:55] Handle data type: open
[01:17:55] Preview PDF file: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.pdf
[01:17:55] Manager.fileWatcher.getWatched: {"c:\\Users\\[REDACTED USER]\\Desktop\\Latex":["Code_8PUnn1uNZo.png","Code_RGCfrOVjkn.png","Code_TtV2H21FVL.png","Code_YL9Wle6Xa6.png","Code_rDYFCVcro2.png","econ 341 13-16.tex","firefox_PnEA0dzVqO.png"],"c:\\Windows\\Fonts":["msyh.ttc","simhei.ttf"]}
[01:17:55] Manager.filesWatched: ["c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\econ 341 13-16.tex","c:\\Windows\\Fonts\\msyh.ttc","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_RGCfrOVjkn.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_TtV2H21FVL.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_rDYFCVcro2.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_8PUnn1uNZo.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_YL9Wle6Xa6.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\firefox_PnEA0dzVqO.png","c:\\Windows\\Fonts\\simhei.ttf"]
[01:17:55] BibWatcher.bibWatcher.getWatched: {}
[01:17:55] BibWatcher.bibsWatched: []
[01:17:55] PdfWatcher.pdfWatcher.getWatched: {}
[01:17:55] PdfWatcher.pdfsWatched: []
[01:17:55] Handle data type: request_params
[01:17:55] 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"}}
[01:17:56] Handle data type: loaded
[01:18:10] Current workspace folders: undefined
[01:18:10] Current workspaceRootDir: 
[01:18:10] Found root file from active editor: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:18:10] Keep using the same root file: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:18:12] Manager.fileWatcher.getWatched: {"c:\\Users\\[REDACTED USER]\\Desktop\\Latex":["Code_8PUnn1uNZo.png","Code_RGCfrOVjkn.png","Code_TtV2H21FVL.png","Code_YL9Wle6Xa6.png","Code_rDYFCVcro2.png","econ 341 13-16.tex","firefox_PnEA0dzVqO.png"],"c:\\Windows\\Fonts":["msyh.ttc","simhei.ttf"]}
[01:18:12] Manager.filesWatched: ["c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\econ 341 13-16.tex","c:\\Windows\\Fonts\\msyh.ttc","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_RGCfrOVjkn.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_TtV2H21FVL.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_rDYFCVcro2.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_8PUnn1uNZo.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_YL9Wle6Xa6.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\firefox_PnEA0dzVqO.png","c:\\Windows\\Fonts\\simhei.ttf"]
[01:18:12] BibWatcher.bibWatcher.getWatched: {}
[01:18:12] BibWatcher.bibsWatched: []
[01:18:12] PdfWatcher.pdfWatcher.getWatched: {}
[01:18:12] PdfWatcher.pdfsWatched: []
[01:18:13] Current workspace folders: undefined
[01:18:13] Current workspaceRootDir: 
[01:18:13] Found root file from active editor: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex
[01:18:13] Root file changed: from c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex to c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex
[01:18:13] Start to find all dependencies.
[01:18:13] Root file languageId: latex
[01:18:13] Reset file watcher.
[01:18:13] Parsing a file and its subfiles: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex
[01:18:13] Parse fls file.
[01:18:13] Fls file found: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.fls
[01:18:13] Parse aux file: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.aux
[01:18:13] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex
[01:18:13] Added to file watcher: c:\Windows\Fonts\msyh.ttc
[01:18:13] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Code_RGCfrOVjkn.png
[01:18:13] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Code_TtV2H21FVL.png
[01:18:13] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Code_rDYFCVcro2.png
[01:18:13] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Code_8PUnn1uNZo.png
[01:18:13] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Code_YL9Wle6Xa6.png
[01:18:13] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\firefox_PnEA0dzVqO.png
[01:18:13] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Code_732godPRNB.png
[01:18:13] Added to file watcher: c:\Windows\Fonts\simhei.ttf
[01:18:14] Checking for duplicate labels: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex.
[01:18:15] Manager.fileWatcher.getWatched: {"c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled":["Code_732godPRNB.png","Code_8PUnn1uNZo.png","Code_RGCfrOVjkn.png","Code_TtV2H21FVL.png","Code_YL9Wle6Xa6.png","Code_rDYFCVcro2.png","Untitled-1.tex","firefox_PnEA0dzVqO.png"],"c:\\Windows\\Fonts":["msyh.ttc","simhei.ttf"]}
[01:18:15] Manager.filesWatched: ["c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Untitled-1.tex","c:\\Windows\\Fonts\\msyh.ttc","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Code_RGCfrOVjkn.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Code_TtV2H21FVL.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Code_rDYFCVcro2.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Code_8PUnn1uNZo.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Code_YL9Wle6Xa6.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\firefox_PnEA0dzVqO.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Code_732godPRNB.png","c:\\Windows\\Fonts\\simhei.ttf"]
[01:18:15] BibWatcher.bibWatcher.getWatched: {}
[01:18:15] BibWatcher.bibsWatched: []
[01:18:15] PdfWatcher.pdfWatcher.getWatched: {}
[01:18:15] PdfWatcher.pdfsWatched: []
[01:18:17] Current workspace folders: undefined
[01:18:17] Current workspaceRootDir: 
[01:18:17] Found root file from active editor: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:18:17] Root file changed: from c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex to c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:18:17] Start to find all dependencies.
[01:18:17] Root file languageId: latex
[01:18:17] Reset file watcher.
[01:18:17] Parsing a file and its subfiles: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:18:17] Parse fls file.
[01:18:17] Fls file found: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.fls
[01:18:17] Parse aux file: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.aux
[01:18:17] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:18:17] Added to file watcher: c:\Windows\Fonts\msyh.ttc
[01:18:17] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\Code_RGCfrOVjkn.png
[01:18:17] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\Code_TtV2H21FVL.png
[01:18:17] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\Code_rDYFCVcro2.png
[01:18:17] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\Code_8PUnn1uNZo.png
[01:18:17] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\Code_YL9Wle6Xa6.png
[01:18:17] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex\firefox_PnEA0dzVqO.png
[01:18:17] Added to file watcher: c:\Windows\Fonts\simhei.ttf
[01:18:17] Checking for duplicate labels: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex.
[01:18:19] Manager.fileWatcher.getWatched: {"c:\\Users\\[REDACTED USER]\\Desktop\\Latex":["Code_8PUnn1uNZo.png","Code_RGCfrOVjkn.png","Code_TtV2H21FVL.png","Code_YL9Wle6Xa6.png","Code_rDYFCVcro2.png","econ 341 13-16.tex","firefox_PnEA0dzVqO.png"],"c:\\Windows\\Fonts":["msyh.ttc","simhei.ttf"]}
[01:18:19] Manager.filesWatched: ["c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\econ 341 13-16.tex","c:\\Windows\\Fonts\\msyh.ttc","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_RGCfrOVjkn.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_TtV2H21FVL.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_rDYFCVcro2.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_8PUnn1uNZo.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\Code_YL9Wle6Xa6.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\firefox_PnEA0dzVqO.png","c:\\Windows\\Fonts\\simhei.ttf"]
[01:18:19] BibWatcher.bibWatcher.getWatched: {}
[01:18:19] BibWatcher.bibsWatched: []
[01:18:19] PdfWatcher.pdfWatcher.getWatched: {}
[01:18:19] PdfWatcher.pdfsWatched: []
[01:18:19] File watcher - file changed: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:18:19] Parsing a file and its subfiles: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:18:19] onDidSaveTextDocument triggered: file:///c:/Users/[REDACTED USER]/Desktop/Latex/econ 341 13-16.tex
[01:18:19] Checking for duplicate labels: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex.
[01:18:19] Auto build started detecting the change of a file: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:18:19] BUILD command invoked.
[01:18:19] The document of the active editor: file:///c%3A/Users/[REDACTED USER]/Desktop/Latex/econ%20341%2013-16.tex
[01:18:19] The languageId of the document: latex
[01:18:19] Building root file: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:18:19] Build root file c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[01:18:19] outDir: c:/Users/[REDACTED USER]/Desktop/Latex
[01:18:19] Recipe step 1: latexmk, -synctex=1,-interaction=nonstopmode,-file-line-error,-pdf,-outdir=c:/Users/[REDACTED USER]/Desktop/Latex,c:/Users/[REDACTED USER]/Desktop/Latex/econ 341 13-16
[01:18:19] Recipe step env: {}
[01:18:19] cwd: c:\Users\[REDACTED USER]\Desktop\Latex
[01:18:19] LaTeX build process spawned. PID: 19740.
[01:18:24] Recipe returns with error: 12/null. PID: 19740. message: Rc files read:
  NONE
Latexmk: This is Latexmk, John Collins, 21 September 2021, version: 4.75.
Rule 'pdflatex': File changes, etc:
   Changed files, or newly in use since previous run(s):
      'c:/Users/[REDACTED USER]/Desktop/Latex/econ 341 13-16.tex'
      'econ 341 13-16.tex'
------------
Run number 1 of rule 'pdflatex'
------------
------------
Running 'pdflatex  -synctex=1 -interaction=nonstopmode -file-line-error -recorder  "c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex"'
------------
Latexmk: Log file says output to 'econ 341 13-16.pdf'
Collected error summary (may duplicate other messages):
  pdflatex: Command for 'pdflatex' gave return code 1
      Refer to 'econ 341 13-16.log' for details
Latexmk: Use the -f option to force complete processing,
 unless error was exceeding maximum runs, or warnings treated as errors.
C:\texlive\2021\bin\win32\runscript.tlu:915: command failed with exit code 12:
perl.exe c:\texlive\2021\texmf-dist\scripts\latexmk\latexmk.pl -synctex=1 -interaction=nonstopmode -file-line-error -pdf -outdir=c:/Users/[REDACTED USER]/Desktop/Latex "c:/Users/[REDACTED USER]/Desktop/Latex/econ 341 13-16"
.
[01:18:24] The environment variable $PATH: undefined
[01:18:24] The environment variable $Path: C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\texlive\2021\bin\win32;C:\Program Files\Git\cmd;C:\Users\[REDACTED USER]\AppData\Local\Programs\Python\Python310\Scripts\;C:\Users\[REDACTED USER]\AppData\Local\Programs\Python\Python310\;C:\Users\[REDACTED USER]\AppData\Local\Microsoft\WindowsApps;C:\Users\[REDACTED USER]\AppData\Local\Programs\Microsoft VS Code\bin;
[01:18:24] The environment variable $SHELL: undefined
[01:18:24] Cleaning auxiliary files and retrying build after toolchain error.
[01:18:24] 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","*.vrb"],"outdir":"c:\\Users\\[REDACTED USER]\\Desktop\\Latex"}
[01:18:24] Cleaning file: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.aux
[01:18:24] Cleaning file: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.out
[01:18:24] Cleaning file: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.fls
[01:18:24] Cleaning file: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.log
[01:18:24] Cleaning file: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.fdb_latexmk
[01:18:24] Recipe step 1: latexmk, -synctex=1,-interaction=nonstopmode,-file-line-error,-pdf,-outdir=c:/Users/[REDACTED USER]/Desktop/Latex,c:/Users/[REDACTED USER]/Desktop/Latex/econ 341 13-16
[01:18:24] Recipe step env: {}
[01:18:24] cwd: c:\Users\[REDACTED USER]\Desktop\Latex
[01:18:24] LaTeX build process spawned. PID: 17196.
[01:18:28] Recipe returns with error: 12/null. PID: 17196. message: Rc files read:
  NONE
Latexmk: This is Latexmk, John Collins, 21 September 2021, version: 4.75.
Rule 'pdflatex': File changes, etc:
   Changed files, or newly in use since previous run(s):
      'c:/Users/[REDACTED USER]/Desktop/Latex/econ 341 13-16.tex'
------------
Run number 1 of rule 'pdflatex'
------------
------------
Running 'pdflatex  -synctex=1 -interaction=nonstopmode -file-line-error -recorder  "c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex"'
------------
Latexmk: References changed.
Latexmk: Log file says output to 'econ 341 13-16.pdf'
Collected error summary (may duplicate other messages):
  pdflatex: Command for 'pdflatex' gave return code 1
      Refer to 'econ 341 13-16.log' for details
Latexmk: Use the -f option to force complete processing,
 unless error was exceeding maximum runs, or warnings treated as errors.
C:\texlive\2021\bin\win32\runscript.tlu:915: command failed with exit code 12:
perl.exe c:\texlive\2021\texmf-dist\scripts\latexmk\latexmk.pl -synctex=1 -interaction=nonstopmode -file-line-error -pdf -outdir=c:/Users/[REDACTED USER]/Desktop/Latex "c:/Users/[REDACTED USER]/Desktop/Latex/econ 341 13-16"
.
[01:18:28] The environment variable $PATH: undefined
[01:18:28] The environment variable $Path: C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\texlive\2021\bin\win32;C:\Program Files\Git\cmd;C:\Users\[REDACTED USER]\AppData\Local\Programs\Python\Python310\Scripts\;C:\Users\[REDACTED USER]\AppData\Local\Programs\Python\Python310\;C:\Users\[REDACTED USER]\AppData\Local\Microsoft\WindowsApps;C:\Users\[REDACTED USER]\AppData\Local\Programs\Microsoft VS Code\bin;
[01:18:28] The environment variable $SHELL: undefined

Untitled:

[01:15:33] Initializing LaTeX Workshop.
[01:15:33] Extension root: c:\Users\[REDACTED USER]\.vscode\extensions\james-yu.latex-workshop-8.21.1
[01:15:33] $PATH: C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\texlive\2021\bin\win32;C:\Program Files\Git\cmd;C:\Users\[REDACTED USER]\AppData\Local\Programs\Python\Python310\Scripts\;C:\Users\[REDACTED USER]\AppData\Local\Programs\Python\Python310\;C:\Users\[REDACTED USER]\AppData\Local\Microsoft\WindowsApps;C:\Users\[REDACTED USER]\AppData\Local\Programs\Microsoft VS Code\bin;
[01:15:33] $SHELL: undefined
[01:15:33] vscode.env.appName: Visual Studio Code
[01:15:33] vscode.env.remoteName: undefined
[01:15:33] vscode.env.uiKind: 1
[01:15:33] latex-workshop.bind.enter.key: true
[01:15:33] latex-workshop.docker.enabled: false
[01:15:33] latex-workshop.docker.image.latex: ""
[01:15:33] latex-workshop.intellisense.package.enabled: true
[01:15:33] latex-workshop.intellisense.update.aggressive.enabled: false
[01:15:33] latex-workshop.intellisense.update.delay: 1000
[01:15:33] latex-workshop.latex.autoBuild.run: "onFileChange"
[01:15:33] latex-workshop.latex.outDir: "%DIR%"
[01:15:33] latex-workshop.latex.recipes: [
 {
  "name": "latexmk 🔃",
  "tools": [
   "latexmk"
  ]
 },
 {
  "name": "latexmk (latexmkrc)",
  "tools": [
   "latexmk_rconly"
  ]
 },
 {
  "name": "latexmk (lualatex)",
  "tools": [
   "lualatexmk"
  ]
 },
 {
  "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"
  ]
 }
]
[01:15:33] 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": "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": {}
 }
]
[01:15:33] latex-workshop.viewer.pdf.internal.keyboardEvent: "auto"
[01:15:33] Creating a new file watcher.
[01:15:33] watcherOptions: {"useFsEvents":false,"usePolling":false,"interval":300,"binaryInterval":1000,"awaitWriteFinish":{"stabilityThreshold":250}}
[01:15:33] Creating PDF file watcher.
[01:15:33] watcherOptions: {"useFsEvents":false,"usePolling":false,"interval":300,"binaryInterval":1000,"awaitWriteFinish":{}}
[01:15:33] Creating Bib file watcher.
[01:15:33] watcherOptions: {"useFsEvents":false,"usePolling":false,"interval":300,"binaryInterval":1000,"awaitWriteFinish":{"stabilityThreshold":250}}
[01:15:33] Set $LATEXWORKSHOP_DOCKER_LATEX: ""
[01:15:33] [Server] Creating LaTeX Workshop http and websocket server.
[01:15:33] Bibtex format config: {"tab":"  ","case":"lowercase","left":"{","right":"}","trailingComma":false,"sort":["key"],"alignOnEqual":true,"sortFields":false,"fieldsOrder":[],"firstEntries":["string","xdata"]}
[01:15:33] LaTeX Workshop initialized.
[01:15:33] Bibtex format config: {"tab":"  ","case":"lowercase","left":"{","right":"}","trailingComma":false,"sort":["key"],"alignOnEqual":true,"sortFields":false,"fieldsOrder":[],"firstEntries":["string","xdata"]}
[01:15:33] Trigger characters for intellisense of LaTeX documents: ["\\",",","{"]
[01:15:33] Bibtex format config: {"tab":"  ","case":"lowercase","left":"{","right":"}","trailingComma":false,"sort":["key"],"alignOnEqual":true,"sortFields":false,"fieldsOrder":[],"firstEntries":["string","xdata"]}
[01:15:33] Current workspace folders: undefined
[01:15:33] Current workspaceRootDir: 
[01:15:33] Found root file from active editor: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex
[01:15:34] Root file changed: from undefined to c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex
[01:15:34] Start to find all dependencies.
[01:15:34] Root file languageId: latex
[01:15:34] [Server] Server successfully started: {"address":"127.0.0.1","family":"IPv4","port":58262}
[01:15:34] Reset file watcher.
[01:15:34] Parsing a file and its subfiles: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex
[01:15:34] Parse fls file.
[01:15:34] Fls file found: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.fls
[01:15:34] Parse aux file: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.aux
[01:15:35] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex
[01:15:35] Added to file watcher: c:\Windows\Fonts\msyh.ttc
[01:15:35] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Code_RGCfrOVjkn.png
[01:15:35] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Code_TtV2H21FVL.png
[01:15:35] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Code_rDYFCVcro2.png
[01:15:35] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Code_8PUnn1uNZo.png
[01:15:35] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Code_YL9Wle6Xa6.png
[01:15:35] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\firefox_PnEA0dzVqO.png
[01:15:35] Added to file watcher: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Code_732godPRNB.png
[01:15:35] Added to file watcher: c:\Windows\Fonts\simhei.ttf
[01:15:35] Restoring the PDF viewer at the column 1 from the state: {"type":"state","state":{"path":"c:\\Users\\[REDACTED USER]\\Desktop\\Latex\\econ 341 13-16.pdf","scale":"auto","scrollMode":0,"spreadMode":0,"scrollTop":0,"scrollLeft":0,"trim":0,"synctexEnabled":true,"autoReloadEnabled":true}}
[01:15:35] The internal PDF viewer url: http://127.0.0.1:58262/viewer.html?incode=1&file=pdf..YyUzQSU1Q1VzZXJzJTVDc2xlb24lNUNEZXNrdG9wJTVDTGF0ZXglNUNlY29uJTIwMzQxJTIwMTMtMTYucGRm
[01:15:35] Snippet data loaded.
[01:15:35] Checking for duplicate labels: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex.
[01:15:36] Handle data type: open
[01:15:36] Preview PDF file: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.pdf
[01:15:36] Manager.fileWatcher.getWatched: {"c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled":["Code_732godPRNB.png","Code_8PUnn1uNZo.png","Code_RGCfrOVjkn.png","Code_TtV2H21FVL.png","Code_YL9Wle6Xa6.png","Code_rDYFCVcro2.png","Untitled-1.tex","firefox_PnEA0dzVqO.png"],"c:\\Windows\\Fonts":["msyh.ttc","simhei.ttf"]}
[01:15:36] Manager.filesWatched: ["c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Untitled-1.tex","c:\\Windows\\Fonts\\msyh.ttc","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Code_RGCfrOVjkn.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Code_TtV2H21FVL.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Code_rDYFCVcro2.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Code_8PUnn1uNZo.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Code_YL9Wle6Xa6.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\firefox_PnEA0dzVqO.png","c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled\\Code_732godPRNB.png","c:\\Windows\\Fonts\\simhei.ttf"]
[01:15:36] BibWatcher.bibWatcher.getWatched: {}
[01:15:36] BibWatcher.bibsWatched: []
[01:15:36] PdfWatcher.pdfWatcher.getWatched: {}
[01:15:36] PdfWatcher.pdfsWatched: []
[01:15:36] Handle data type: request_params
[01:15:36] 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"}}
[01:15:37] Handle data type: loaded
[01:15:48] onDidSaveTextDocument triggered: file:///c:/Users/[REDACTED USER]/Desktop/Latex Untitled/Untitled-1.tex
[01:15:48] File watcher - file changed: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex
[01:15:48] Parsing a file and its subfiles: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex
[01:15:48] Checking for duplicate labels: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex.
[01:15:48] Auto build started detecting the change of a file: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex
[01:15:48] BUILD command invoked.
[01:15:48] The document of the active editor: file:///c%3A/Users/[REDACTED USER]/Desktop/Latex%20Untitled/Untitled-1.tex
[01:15:48] The languageId of the document: latex
[01:15:48] Building root file: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex
[01:15:48] Build root file c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex
[01:15:48] outDir: c:/Users/[REDACTED USER]/Desktop/Latex Untitled
[01:15:48] Recipe step 1: latexmk, -synctex=1,-interaction=nonstopmode,-file-line-error,-pdf,-outdir=c:/Users/[REDACTED USER]/Desktop/Latex Untitled,c:/Users/[REDACTED USER]/Desktop/Latex Untitled/Untitled-1
[01:15:48] Recipe step env: {}
[01:15:48] cwd: c:\Users\[REDACTED USER]\Desktop\Latex Untitled
[01:15:48] LaTeX build process spawned. PID: 30232.
[01:15:53] LaTeX log parsed with 3 messages.
[01:15:53] Recipe returns with error: 12/null. PID: 30232. message: Rc files read:
  NONE
Latexmk: This is Latexmk, John Collins, 21 September 2021, version: 4.75.
Rule 'pdflatex': File changes, etc:
   Changed files, or newly in use since previous run(s):
      'Untitled-1.aux'
      'Untitled-1.out'
------------
Run number 1 of rule 'pdflatex'
------------
------------
Running 'pdflatex  -synctex=1 -interaction=nonstopmode -file-line-error -recorder  "c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex"'
------------
Latexmk: Log file says output to 'Untitled-1.pdf'
Collected error summary (may duplicate other messages):
  pdflatex: Command for 'pdflatex' gave return code 1
      Refer to 'Untitled-1.log' for details
Latexmk: Use the -f option to force complete processing,
 unless error was exceeding maximum runs, or warnings treated as errors.
C:\texlive\2021\bin\win32\runscript.tlu:915: command failed with exit code 12:
perl.exe c:\texlive\2021\texmf-dist\scripts\latexmk\latexmk.pl -synctex=1 -interaction=nonstopmode -file-line-error -pdf "-outdir=c:/Users/[REDACTED USER]/Desktop/Latex Untitled" "c:/Users/[REDACTED USER]/Desktop/Latex Untitled/Untitled-1"
.
[01:15:53] The environment variable $PATH: undefined
[01:15:53] The environment variable $Path: C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\texlive\2021\bin\win32;C:\Program Files\Git\cmd;C:\Users\[REDACTED USER]\AppData\Local\Programs\Python\Python310\Scripts\;C:\Users\[REDACTED USER]\AppData\Local\Programs\Python\Python310\;C:\Users\[REDACTED USER]\AppData\Local\Microsoft\WindowsApps;C:\Users\[REDACTED USER]\AppData\Local\Programs\Microsoft VS Code\bin;
[01:15:53] The environment variable $SHELL: undefined
[01:15:53] Cleaning auxiliary files and retrying build after toolchain error.
[01:15:53] 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","*.vrb"],"outdir":"c:\\Users\\[REDACTED USER]\\Desktop\\Latex Untitled"}
[01:15:53] Cleaning file: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.aux
[01:15:53] Cleaning file: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.out
[01:15:53] Cleaning file: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.fls
[01:15:53] Cleaning file: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.log
[01:15:53] Cleaning file: c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.fdb_latexmk
[01:15:53] Recipe step 1: latexmk, -synctex=1,-interaction=nonstopmode,-file-line-error,-pdf,-outdir=c:/Users/[REDACTED USER]/Desktop/Latex Untitled,c:/Users/[REDACTED USER]/Desktop/Latex Untitled/Untitled-1
[01:15:53] Recipe step env: {}
[01:15:53] cwd: c:\Users\[REDACTED USER]\Desktop\Latex Untitled
[01:15:53] LaTeX build process spawned. PID: 18236.
[01:15:57] LaTeX log parsed with 4 messages.
[01:15:57] Recipe returns with error: 12/null. PID: 18236. message: Rc files read:
  NONE
Latexmk: This is Latexmk, John Collins, 21 September 2021, version: 4.75.
Rule 'pdflatex': File changes, etc:
   Changed files, or newly in use since previous run(s):
      'c:/Users/[REDACTED USER]/Desktop/Latex Untitled/Untitled-1.tex'
------------
Run number 1 of rule 'pdflatex'
------------
------------
Running 'pdflatex  -synctex=1 -interaction=nonstopmode -file-line-error -recorder  "c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex"'
------------
Latexmk: References changed.
Latexmk: Log file says output to 'Untitled-1.pdf'
Collected error summary (may duplicate other messages):
  pdflatex: Command for 'pdflatex' gave return code 1
      Refer to 'Untitled-1.log' for details
Latexmk: Use the -f option to force complete processing,
 unless error was exceeding maximum runs, or warnings treated as errors.
C:\texlive\2021\bin\win32\runscript.tlu:915: command failed with exit code 12:
perl.exe c:\texlive\2021\texmf-dist\scripts\latexmk\latexmk.pl -synctex=1 -interaction=nonstopmode -file-line-error -pdf "-outdir=c:/Users/[REDACTED USER]/Desktop/Latex Untitled" "c:/Users/[REDACTED USER]/Desktop/Latex Untitled/Untitled-1"
.
[01:15:57] The environment variable $PATH: undefined
[01:15:57] The environment variable $Path: C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\texlive\2021\bin\win32;C:\Program Files\Git\cmd;C:\Users\[REDACTED USER]\AppData\Local\Programs\Python\Python310\Scripts\;C:\Users\[REDACTED USER]\AppData\Local\Programs\Python\Python310\;C:\Users\[REDACTED USER]\AppData\Local\Microsoft\WindowsApps;C:\Users\[REDACTED USER]\AppData\Local\Programs\Microsoft VS Code\bin;
[01:15:57] The environment variable $SHELL: undefined

Developer Tools Console [Required]

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

Named file: INFO Starting extension host with pid 21888. log.ts:289 INFO [LocalProcessExtensionHost]: IExtensionHostStarter.start() took 29 ms. log.ts:301 ERR [Extension Host] (node:21888) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. (Use Code --trace-deprecation ... to show where the warning was created) console.ts:137 [Extension Host] (node:21888) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.(Use Code --trace-deprecation ... to show where the warning was created) E @ console.ts:137 7notificationsAlerts.ts:42 Recipe terminated with error. onDidChangeNotification @ notificationsAlerts.ts:42 log.ts:295 WARN Settings pattern "keyboard.*" doesn't match any settings 2notificationsAlerts.ts:42 Recipe terminated with error. onDidChangeNotification @ notificationsAlerts.ts:42

On the Untitled-1.tex

INFO Starting extension host with pid 21888. log.ts:289 INFO [LocalProcessExtensionHost]: IExtensionHostStarter.start() took 29 ms. log.ts:301 ERR [Extension Host] (node:21888) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. (Use Code --trace-deprecation ... to show where the warning was created) console.ts:137 [Extension Host] (node:21888) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.(Use Code --trace-deprecation ... to show where the warning was created) E @ console.ts:137 7notificationsAlerts.ts:42 Recipe terminated with error. onDidChangeNotification @ notificationsAlerts.ts:42 log.ts:295 WARN Settings pattern "keyboard.*" doesn't match any settings notificationsAlerts.ts:42 Recipe terminated with error. onDidChangeNotification @ notificationsAlerts.ts:42

Screenshots

If applicable, add screenshots to help explain your problem.

Named file: image

Unnamed file: InkedCode_xR9ZkO7JuV_LI

Desktop [Required]

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

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

jlelong commented 2 years ago

Please post the complete logs of the extension starting from Initializing LaTeX Workshop. Do not truncate or alter them.

74528024-87b2ef80-4f6a-11ea-9c5d-4f9feff25524

lightningHoneypot commented 2 years ago

Please post the complete logs of the extension starting from Initializing LaTeX Workshop. Do not truncate or alter them.

74528024-87b2ef80-4f6a-11ea-9c5d-4f9feff25524

isn't the files there? and the only thing that I change on the logs is removing my username

jlelong commented 2 years ago

I am a bit puzzled by

[23:21:14] File watcher - file deleted: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[23:21:14] Root file deleted: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex

Did you delete the file yourself? Can you try if you see the same issue with v8.20.2?

https://github.com/James-Yu/LaTeX-Workshop/wiki/FAQ#install-an-older-version-of-latex-workshop

lightningHoneypot commented 2 years ago

I am a bit puzzled by

[23:21:14] File watcher - file deleted: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[23:21:14] Root file deleted: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex

Did you delete the file yourself? Can you try if you see the same issue with v8.20.2?

https://github.com/James-Yu/LaTeX-Workshop/wiki/FAQ#install-an-older-version-of-latex-workshop

Sorry, I am also confused too, It seems that in the process of trying to get all of the logs, I failed to clear previous debugs I am going to edit my post with the different logs now, and delete some of the comments

lightningHoneypot commented 2 years ago

I am a bit puzzled by

[23:21:14] File watcher - file deleted: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[23:21:14] Root file deleted: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex

Did you delete the file yourself? Can you try if you see the same issue with v8.20.2?

https://github.com/James-Yu/LaTeX-Workshop/wiki/FAQ#install-an-older-version-of-latex-workshop

I have now updated the logs in the post

lightningHoneypot commented 2 years ago

Ok hopefully I got what we wanted here all logs should have the "Initializing LaTeX Workshop" text

I am a bit puzzled by

[23:21:14] File watcher - file deleted: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[23:21:14] Root file deleted: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex

Did you delete the file yourself? Can you try if you see the same issue with v8.20.2?

https://github.com/James-Yu/LaTeX-Workshop/wiki/FAQ#install-an-older-version-of-latex-workshop

lightningHoneypot commented 2 years ago

I am a bit puzzled by

[23:21:14] File watcher - file deleted: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex
[23:21:14] Root file deleted: c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex

Did you delete the file yourself? Can you try if you see the same issue with v8.20.2?

https://github.com/James-Yu/LaTeX-Workshop/wiki/FAQ#install-an-older-version-of-latex-workshop

Same issue when trying v8.20.2 untitled file has problems displayed on the Problems Pane AND Linter named file does not

jlelong commented 2 years ago

What you called an unnamed file is actually named Untiled-1.tex. So it does have a name.

The messages you see do not come from any linter but from the logs of the LaTeX compiler, which are parsed by the extension. You check and compare the logs of the LaTeX compiler in both cases. I cannot reproduce your problem we cannot help unfortunately.

lightningHoneypot commented 2 years ago

What you called an unnamed file is actually named Untiled-1.tex. So it does have a name.

The messages you see do not come from any linter but from the logs of the LaTeX compiler, which are parsed by the extension. You check and compare the logs of the LaTeX compiler in both cases. I cannot reproduce your problem we cannot help unfortunately.

it's Untitled-1.tex, and it is not named by me as it is the default name, I apologize for the misspelling and confusion

and is it possible to just send you the files? that way you can debug what is happening

lightningHoneypot commented 2 years ago

What you called an unnamed file is actually named Untiled-1.tex. So it does have a name.

The messages you see do not come from any linter but from the logs of the LaTeX compiler, which are parsed by the extension. You check and compare the logs of the LaTeX compiler in both cases. I cannot reproduce your problem we cannot help unfortunately.

Hey, it seems that there is a simliar issue that happened to another user too 3 years ago: https://github.com/James-Yu/LaTeX-Workshop/issues/852 that is the problem that I am facing when one file is Untitled-1.tex, and the other is named. I really want to have something that can detect compilation errors at a glance and not go through a log just to find the issue in question

jlelong commented 2 years ago

852 is about hard wrapped LaTeX logs. Can you post the logs of the LaTex compiler for both cases?

lightningHoneypot commented 2 years ago

852 is about hard wrapped LaTeX logs. Can you post the logs of the LaTex compiler for both cases?

For untitled-1.tex:

Rc files read:
  NONE
Latexmk: This is Latexmk, John Collins, 21 September 2021, version: 4.75.
Rule 'pdflatex': File changes, etc:
   Changed files, or newly in use since previous run(s):
      'c:/Users/[REDACTED USER]/Desktop/Latex Untitled/Untitled-1.tex'
------------
Run number 1 of rule 'pdflatex'
------------
------------
Running 'pdflatex  -synctex=1 -interaction=nonstopmode -file-line-error -recorder  "c:\Users\[REDACTED USER]\Desktop\Latex Untitled\Untitled-1.tex"'
------------
Latexmk: applying rule 'pdflatex'...
This is pdfTeX, Version 3.141592653-2.6-1.40.23 (TeX Live 2021/W32TeX) (preloaded format=pdflatex)
 restricted \write18 enabled.
entering extended mode
(c:/Users/[REDACTED USER]/Desktop/Latex Untitled/Untitled-1.tex
LaTeX2e <2021-06-01> patch level 1
L3 programming layer <2021-10-18> (c:/texlive/2021/texmf-dist/tex/latex/elegantnote/elegantnote.cls
Document Class: elegantnote 2020/04/12 ElegantNote v2.30 class
(c:/texlive/2021/texmf-dist/tex/latex/kvoptions/kvoptions.sty (c:/texlive/2021/texmf-dist/tex/latex/graphics/keyval.sty) (c:/texlive/2021/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty) (c:/texlive/2021/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty)) (c:/texlive/2021/texmf-dist/tex/latex/etoolbox/etoolbox.sty) (c:/texlive/2021/texmf-dist/tex/latex/tools/calc.sty) (c:/texlive/2021/texmf-dist/tex/latex/base/article.cls
Document Class: article 2021/02/12 v1.4n Standard LaTeX document class
(c:/texlive/2021/texmf-dist/tex/latex/base/size10.clo)) (c:/texlive/2021/texmf-dist/tex/latex/amsmath/amsmath.sty
For additional information on amsmath, use the `?' option.
(c:/texlive/2021/texmf-dist/tex/latex/amsmath/amstext.sty (c:/texlive/2021/texmf-dist/tex/latex/amsmath/amsgen.sty)) (c:/texlive/2021/texmf-dist/tex/latex/amsmath/amsbsy.sty) (c:/texlive/2021/texmf-dist/tex/latex/amsmath/amsopn.sty)) (c:/texlive/2021/texmf-dist/tex/latex/amscls/amsthm.sty) (c:/texlive/2021/texmf-dist/tex/generic/iftex/iftex.sty) (c:/texlive/2021/texmf-dist/tex/latex/ctex/ctex.sty (c:/texlive/2021/texmf-dist/tex/latex/l3kernel/expl3.sty (c:/texlive/2021/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)) (c:/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse.sty) (c:/texlive/2021/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty) (c:/texlive/2021/texmf-dist/tex/latex/ctex/ctexhook.sty) (c:/texlive/2021/texmf-dist/tex/latex/ctex/ctexpatch.sty) (c:/texlive/2021/texmf-dist/tex/latex/base/fix-cm.sty (c:/texlive/2021/texmf-dist/tex/latex/base/ts1enc.def)) (c:/texlive/2021/texmf-dist/tex/latex/ctex/config/ctexopts.cfg) (c:/texlive/2021/texmf-dist/tex/latex/ctex/engine/ctex-engine-pdftex.def (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty (c:/texlive/2021/texmf-dist/tex/generic/iftex/ifpdf.sty) (c:/texlive/2021/texmf-dist/tex/latex/base/inputenc.sty) (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/CJK.sty (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty) (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/CJK.enc))
==> First Aid for CJK.sty no longer applied!
    Expected:
        2015/04/18 4.8.4
    but found:
        2021/10/16 4.8.5
    so I'm assuming it got fixed.
(c:/texlive/2021/texmf-dist/tex/latex/base/fontenc.sty)) (c:/texlive/2021/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty (c:/texlive/2021/texmf-dist/tex/latex/cjkpunct/CJKpunct.spa)) (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty) (c:/texlive/2021/texmf-dist/tex/latex/ctex/ctexspa.def)) (c:/texlive/2021/texmf-dist/tex/latex/zhnumber/zhnumber.sty (c:/texlive/2021/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg)) (c:/texlive/2021/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-plain.def) (c:/texlive/2021/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-windows.def)) (c:/texlive/2021/texmf-dist/tex/latex/ctex/config/ctex.cfg) (c:/texlive/2021/texmf-dist/tex/latex/newtx/newtxtext.sty `newtxtext' v1.658, 2021/10/13 Text macros taking advantage of TeX-Gyre Termes fonts (msharpe) (c:/texlive/2021/texmf-dist/tex/latex/fontaxes/fontaxes.sty) (c:/texlive/2021/texmf-dist/tex/latex/xkeyval/xkeyval.sty (c:/texlive/2021/texmf-dist/tex/generic/xkeyval/xkeyval.tex (c:/texlive/2021/texmf-dist/tex/generic/xkeyval/xkvutils.tex))) (c:/texlive/2021/texmf-dist/tex/generic/xstring/xstring.sty (c:/texlive/2021/texmf-dist/tex/generic/xstring/xstring.tex)) (c:/texlive/2021/texmf-dist/tex/latex/base/ifthen.sty) (c:/texlive/2021/texmf-dist/tex/latex/carlisle/scalefnt.sty) (c:/texlive/2021/texmf-dist/tex/latex/base/fontenc.sty (c:/texlive/2021/texmf-dist/tex/latex/newtx/t1ntxtlf.fd)) (c:/texlive/2021/texmf-dist/tex/latex/base/textcomp.sty)) (c:/texlive/2021/texmf-dist/tex/latex/tools/indentfirst.sty) (c:/texlive/2021/texmf-dist/tex/latex/anyfontsize/anyfontsize.sty) (c:/texlive/2021/texmf-dist/tex/latex/graphics/graphicx.sty (c:/texlive/2021/texmf-dist/tex/latex/graphics/graphics.sty (c:/texlive/2021/texmf-dist/tex/latex/graphics/trig.sty) (c:/texlive/2021/texmf-dist/tex/latex/graphics-cfg/graphics.cfg) (c:/texlive/2021/texmf-dist/tex/latex/graphics-def/pdftex.def))) (c:/texlive/2021/texmf-dist/tex/latex/booktabs/booktabs.sty) (c:/texlive/2021/texmf-dist/tex/latex/xcolor/xcolor.sty (c:/texlive/2021/texmf-dist/tex/latex/graphics-cfg/color.cfg)) (c:/texlive/2021/texmf-dist/tex/latex/hyperref/hyperref.sty (c:/texlive/2021/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty (c:/texlive/2021/texmf-dist/tex/generic/infwarerr/infwarerr.sty)) (c:/texlive/2021/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty) (c:/texlive/2021/texmf-dist/tex/generic/pdfescape/pdfescape.sty) (c:/texlive/2021/texmf-dist/tex/latex/hycolor/hycolor.sty) (c:/texlive/2021/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty) (c:/texlive/2021/texmf-dist/tex/latex/auxhook/auxhook.sty) (c:/texlive/2021/texmf-dist/tex/latex/hyperref/pd1enc.def) (c:/texlive/2021/texmf-dist/tex/latex/hyperref/hyperref-langpatches.def) (c:/texlive/2021/texmf-dist/tex/generic/intcalc/intcalc.sty) (c:/texlive/2021/texmf-dist/tex/generic/etexcmds/etexcmds.sty) (c:/texlive/2021/texmf-dist/tex/latex/hyperref/puenc.def) (c:/texlive/2021/texmf-dist/tex/latex/url/url.sty) (c:/texlive/2021/texmf-dist/tex/generic/bitset/bitset.sty (c:/texlive/2021/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty)) (c:/texlive/2021/texmf-dist/tex/latex/base/atbegshi-ltx.sty)) (c:/texlive/2021/texmf-dist/tex/latex/hyperref/hpdftex.def (c:/texlive/2021/texmf-dist/tex/latex/base/atveryend-ltx.sty) (c:/texlive/2021/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty (c:/texlive/2021/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty))) (c:/texlive/2021/texmf-dist/tex/latex/xpatch/xpatch.sty) (c:/texlive/2021/texmf-dist/tex/generic/hologo/hologo.sty) (c:/texlive/2021/texmf-dist/tex/latex/silence/silence.sty) (c:/texlive/2021/texmf-dist/tex/latex/caption/caption.sty (c:/texlive/2021/texmf-dist/tex/latex/caption/caption3.sty)) (c:/texlive/2021/texmf-dist/tex/latex/enumitem/enumitem.sty) (c:/texlive/2021/texmf-dist/tex/latex/footmisc/footmisc.sty) (c:/texlive/2021/texmf-dist/tex/latex/titlesec/titlesec.sty) (c:/texlive/2021/texmf-dist/tex/latex/geometry/geometry.sty (c:/texlive/2021/texmf-dist/tex/generic/iftex/ifvtex.sty)) (c:/texlive/2021/texmf-dist/tex/latex/extsizes/extsizes.sty (c:/texlive/2021/texmf-dist/tex/latex/base/size11.clo)) (c:/texlive/2021/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty) (c:/texlive/2021/texmf-dist/tex/latex/gbt7714/gbt7714.sty (c:/texlive/2021/texmf-dist/tex/latex/natbib/natbib.sty)) (c:/texlive/2021/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty (c:/texlive/2021/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty (c:/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex)) (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def) (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/pgf.revision.tex))) (c:/texlive/2021/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (c:/texlive/2021/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (c:/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex)) (c:/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg) (c:/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def (c:/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def))) (c:/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex)) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex))) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex)) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex)) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex))) (c:/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex) (c:/texlive/2021/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty) (c:/texlive/2021/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty)) (c:/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgffor.sty (c:/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) (c:/texlive/2021/texmf-dist/tex/latex/pgf/math/pgfmath.sty (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))) (c:/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex))) (c:/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex))) (c:/texlive/2021/texmf-dist/tex/latex/listings/listings.sty (c:/texlive/2021/texmf-dist/tex/latex/listings/lstmisc.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/listings.cfg)) (c:/texlive/2021/texmf-dist/tex/latex/lstaddons/lstautogobble.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang1.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang2.sty)
(c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang3.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang1.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang2.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang3.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang1.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang2.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang3.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstmisc.sty)) (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.bdg) (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.enc) (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.chr) (./Untitled-1.aux) (c:/texlive/2021/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
) (c:/texlive/2021/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty (c:/texlive/2021/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg)) (c:/texlive/2021/texmf-dist/tex/latex/hyperref/nameref.sty (c:/texlive/2021/texmf-dist/tex/latex/refcount/refcount.sty) (c:/texlive/2021/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty))
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
(c:/texlive/2021/texmf-dist/tex/generic/ctex/zhmap/ctex-zhmap-windows.tex{c:/texlive/2021/texmf-var/fonts/map/pdftex/updmap/pdftex.map}{UGBK.sfd}{Unicode.sfd}) [1] [2]
Overfull \hbox (104.8006pt too wide) in paragraph at lines 77--81
\T1/ntxtlf/b/n/10.95 Ar-bi-trage\T1/ntxtlf/m/n/10.95 . $\OML/cmm/m/it/10.95 text[] \OMS/cmsy/m/n/10.95 ! []$ 
[3] [4] [5] (c:/texlive/2021/texmf-dist/tex/latex/ctex/fd/c70rm.fd) [6 <./Code_RGCfrOVjkn.png>] [7] [8 <./Code_TtV2H21FVL.png>] [9 <./Code_rDYFCVcro2.png>] [10 <./Code_8PUnn1uNZo.png>] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21 <./Code_YL9Wle6Xa6.png> <./firefox_PnEA0dzVqO.png>] [22] [23] [24]

c:/Users/[REDACTED USER]/Desktop/Latex Untitled/Untitled-1.tex:608: LaTeX Error: Environment warpfigure undefined.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              

l.608 \begin{warpfigure}
                        [h]

c:/Users/[REDACTED USER]/Desktop/Latex Untitled/Untitled-1.tex:610: LaTeX Error: \begin{document} ended by \end{warpfigure}.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              

l.610 \end{warpfigure}

[25 <./Code_732godPRNB.png>] [26] (./Untitled-1.aux)

Package rerunfilecheck Warning: File `Untitled-1.out' has changed.
(rerunfilecheck)                Rerun to get outlines right
(rerunfilecheck)                or use package `bookmark'.

 )
(see the transcript file for additional information)<c:/Windows/Fonts/simhei.ttf><c:/Windows/Fonts/simhei.ttf><c:/Windows/Fonts/simhei.ttf><c:/Windows/Fonts/simhei.ttf><c:/Windows/Fonts/simhei.ttf>{c:/texlive/2021/texmf-dist/fonts/enc/dvips/cm-super/cm-super-t1.enc}{c:/texlive/2021/texmf-dist/fonts/enc/dvips/newtx/ntx-ec-tlf.enc}<c:/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb><c:/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb><c:/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb><c:/texlive/2021/texmf-dist/fonts/type1/public/cm-super/sftt1000.pfb><c:/texlive/2021/texmf-dist/fonts/type1/public/newtx/ztmb.pfb><c:/texlive/2021/texmf-dist/fonts/type1/public/newtx/ztmr.pfb><c:/texlive/2021/texmf-dist/fonts/type1/public/newtx/ztmri.pfb>
Output written on Untitled-1.pdf (26 pages, 717121 bytes).
SyncTeX written on Untitled-1.synctex.gz.

Transcript written on Untitled-1.log.
Latexmk: References changed.
Latexmk: Log file says output to 'Untitled-1.pdf'
Collected error summary (may duplicate other messages):
  pdflatex: Command for 'pdflatex' gave return code 1
      Refer to 'Untitled-1.log' for details
Latexmk: Use the -f option to force complete processing,
 unless error was exceeding maximum runs, or warnings treated as errors.
Latexmk: Examining 'Untitled-1.log'
=== TeX engine is 'pdfTeX'
Latexmk: Errors, so I did not complete making targets
C:\texlive\2021\bin\win32\runscript.tlu:915: command failed with exit code 12:
perl.exe c:\texlive\2021\texmf-dist\scripts\latexmk\latexmk.pl -synctex=1 -interaction=nonstopmode -file-line-error -pdf "-outdir=c:/Users/[REDACTED USER]/Desktop/Latex Untitled" "c:/Users/[REDACTED USER]/Desktop/Latex Untitled/Untitled-1"

For my named file:

Rc files read:
  NONE
Latexmk: This is Latexmk, John Collins, 21 September 2021, version: 4.75.
Rule 'pdflatex': File changes, etc:
   Changed files, or newly in use since previous run(s):
      'c:/Users/[REDACTED USER]/Desktop/Latex/econ 341 13-16.tex'
------------
Run number 1 of rule 'pdflatex'
------------
------------
Running 'pdflatex  -synctex=1 -interaction=nonstopmode -file-line-error -recorder  "c:\Users\[REDACTED USER]\Desktop\Latex\econ 341 13-16.tex"'
------------
Latexmk: applying rule 'pdflatex'...
This is pdfTeX, Version 3.141592653-2.6-1.40.23 (TeX Live 2021/W32TeX) (preloaded format=pdflatex)
 restricted \write18 enabled.
entering extended mode
(c:/Users/[REDACTED USER]/Desktop/Latex/econ 341 13-16.tex
LaTeX2e <2021-06-01> patch level 1
L3 programming layer <2021-10-18> (c:/texlive/2021/texmf-dist/tex/latex/elegantnote/elegantnote.cls
Document Class: elegantnote 2020/04/12 ElegantNote v2.30 class
(c:/texlive/2021/texmf-dist/tex/latex/kvoptions/kvoptions.sty (c:/texlive/2021/texmf-dist/tex/latex/graphics/keyval.sty) (c:/texlive/2021/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty) (c:/texlive/2021/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty)) (c:/texlive/2021/texmf-dist/tex/latex/etoolbox/etoolbox.sty) (c:/texlive/2021/texmf-dist/tex/latex/tools/calc.sty) (c:/texlive/2021/texmf-dist/tex/latex/base/article.cls
Document Class: article 2021/02/12 v1.4n Standard LaTeX document class
(c:/texlive/2021/texmf-dist/tex/latex/base/size10.clo)) (c:/texlive/2021/texmf-dist/tex/latex/amsmath/amsmath.sty
For additional information on amsmath, use the `?' option.
(c:/texlive/2021/texmf-dist/tex/latex/amsmath/amstext.sty (c:/texlive/2021/texmf-dist/tex/latex/amsmath/amsgen.sty)) (c:/texlive/2021/texmf-dist/tex/latex/amsmath/amsbsy.sty) (c:/texlive/2021/texmf-dist/tex/latex/amsmath/amsopn.sty)) (c:/texlive/2021/texmf-dist/tex/latex/amscls/amsthm.sty) (c:/texlive/2021/texmf-dist/tex/generic/iftex/iftex.sty) (c:/texlive/2021/texmf-dist/tex/latex/ctex/ctex.sty (c:/texlive/2021/texmf-dist/tex/latex/l3kernel/expl3.sty (c:/texlive/2021/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)) (c:/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse.sty) (c:/texlive/2021/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty) (c:/texlive/2021/texmf-dist/tex/latex/ctex/ctexhook.sty) (c:/texlive/2021/texmf-dist/tex/latex/ctex/ctexpatch.sty) (c:/texlive/2021/texmf-dist/tex/latex/base/fix-cm.sty (c:/texlive/2021/texmf-dist/tex/latex/base/ts1enc.def)) (c:/texlive/2021/texmf-dist/tex/latex/ctex/config/ctexopts.cfg) (c:/texlive/2021/texmf-dist/tex/latex/ctex/engine/ctex-engine-pdftex.def (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty (c:/texlive/2021/texmf-dist/tex/generic/iftex/ifpdf.sty) (c:/texlive/2021/texmf-dist/tex/latex/base/inputenc.sty) (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/CJK.sty (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty) (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/CJK.enc))
==> First Aid for CJK.sty no longer applied!
    Expected:
        2015/04/18 4.8.4
    but found:
        2021/10/16 4.8.5
    so I'm assuming it got fixed.
(c:/texlive/2021/texmf-dist/tex/latex/base/fontenc.sty)) (c:/texlive/2021/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty (c:/texlive/2021/texmf-dist/tex/latex/cjkpunct/CJKpunct.spa)) (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty) (c:/texlive/2021/texmf-dist/tex/latex/ctex/ctexspa.def)) (c:/texlive/2021/texmf-dist/tex/latex/zhnumber/zhnumber.sty (c:/texlive/2021/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg)) (c:/texlive/2021/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-plain.def) (c:/texlive/2021/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-windows.def)) (c:/texlive/2021/texmf-dist/tex/latex/ctex/config/ctex.cfg) (c:/texlive/2021/texmf-dist/tex/latex/newtx/newtxtext.sty `newtxtext' v1.658, 2021/10/13 Text macros taking advantage of TeX-Gyre Termes fonts (msharpe) (c:/texlive/2021/texmf-dist/tex/latex/fontaxes/fontaxes.sty) (c:/texlive/2021/texmf-dist/tex/latex/xkeyval/xkeyval.sty (c:/texlive/2021/texmf-dist/tex/generic/xkeyval/xkeyval.tex (c:/texlive/2021/texmf-dist/tex/generic/xkeyval/xkvutils.tex))) (c:/texlive/2021/texmf-dist/tex/generic/xstring/xstring.sty (c:/texlive/2021/texmf-dist/tex/generic/xstring/xstring.tex)) (c:/texlive/2021/texmf-dist/tex/latex/base/ifthen.sty) (c:/texlive/2021/texmf-dist/tex/latex/carlisle/scalefnt.sty) (c:/texlive/2021/texmf-dist/tex/latex/base/fontenc.sty (c:/texlive/2021/texmf-dist/tex/latex/newtx/t1ntxtlf.fd)) (c:/texlive/2021/texmf-dist/tex/latex/base/textcomp.sty)) (c:/texlive/2021/texmf-dist/tex/latex/tools/indentfirst.sty) (c:/texlive/2021/texmf-dist/tex/latex/anyfontsize/anyfontsize.sty) (c:/texlive/2021/texmf-dist/tex/latex/graphics/graphicx.sty (c:/texlive/2021/texmf-dist/tex/latex/graphics/graphics.sty (c:/texlive/2021/texmf-dist/tex/latex/graphics/trig.sty) (c:/texlive/2021/texmf-dist/tex/latex/graphics-cfg/graphics.cfg) (c:/texlive/2021/texmf-dist/tex/latex/graphics-def/pdftex.def))) (c:/texlive/2021/texmf-dist/tex/latex/booktabs/booktabs.sty) (c:/texlive/2021/texmf-dist/tex/latex/xcolor/xcolor.sty (c:/texlive/2021/texmf-dist/tex/latex/graphics-cfg/color.cfg)) (c:/texlive/2021/texmf-dist/tex/latex/hyperref/hyperref.sty (c:/texlive/2021/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty (c:/texlive/2021/texmf-dist/tex/generic/infwarerr/infwarerr.sty)) (c:/texlive/2021/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty) (c:/texlive/2021/texmf-dist/tex/generic/pdfescape/pdfescape.sty) (c:/texlive/2021/texmf-dist/tex/latex/hycolor/hycolor.sty) (c:/texlive/2021/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty) (c:/texlive/2021/texmf-dist/tex/latex/auxhook/auxhook.sty) (c:/texlive/2021/texmf-dist/tex/latex/hyperref/pd1enc.def) (c:/texlive/2021/texmf-dist/tex/latex/hyperref/hyperref-langpatches.def) (c:/texlive/2021/texmf-dist/tex/generic/intcalc/intcalc.sty) (c:/texlive/2021/texmf-dist/tex/generic/etexcmds/etexcmds.sty) (c:/texlive/2021/texmf-dist/tex/latex/hyperref/puenc.def) (c:/texlive/2021/texmf-dist/tex/latex/url/url.sty) (c:/texlive/2021/texmf-dist/tex/generic/bitset/bitset.sty (c:/texlive/2021/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty)) (c:/texlive/2021/texmf-dist/tex/latex/base/atbegshi-ltx.sty)) (c:/texlive/2021/texmf-dist/tex/latex/hyperref/hpdftex.def (c:/texlive/2021/texmf-dist/tex/latex/base/atveryend-ltx.sty) (c:/texlive/2021/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty (c:/texlive/2021/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty))) (c:/texlive/2021/texmf-dist/tex/latex/xpatch/xpatch.sty) (c:/texlive/2021/texmf-dist/tex/generic/hologo/hologo.sty) (c:/texlive/2021/texmf-dist/tex/latex/silence/silence.sty) (c:/texlive/2021/texmf-dist/tex/latex/caption/caption.sty (c:/texlive/2021/texmf-dist/tex/latex/caption/caption3.sty)) (c:/texlive/2021/texmf-dist/tex/latex/enumitem/enumitem.sty) (c:/texlive/2021/texmf-dist/tex/latex/footmisc/footmisc.sty) (c:/texlive/2021/texmf-dist/tex/latex/titlesec/titlesec.sty) (c:/texlive/2021/texmf-dist/tex/latex/geometry/geometry.sty (c:/texlive/2021/texmf-dist/tex/generic/iftex/ifvtex.sty)) (c:/texlive/2021/texmf-dist/tex/latex/extsizes/extsizes.sty (c:/texlive/2021/texmf-dist/tex/latex/base/size11.clo)) (c:/texlive/2021/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty) (c:/texlive/2021/texmf-dist/tex/latex/gbt7714/gbt7714.sty (c:/texlive/2021/texmf-dist/tex/latex/natbib/natbib.sty)) (c:/texlive/2021/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty (c:/texlive/2021/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty (c:/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex)) (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def) (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/pgf.revision.tex))) (c:/texlive/2021/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (c:/texlive/2021/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (c:/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex)) (c:/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg) (c:/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def (c:/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def))) (c:/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex)) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex))) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex)) (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex)) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex))) (c:/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex) (c:/texlive/2021/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty) (c:/texlive/2021/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty)) (c:/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgffor.sty (c:/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) (c:/texlive/2021/texmf-dist/tex/latex/pgf/math/pgfmath.sty (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) (c:/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex))) (c:/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex) (c:/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex))) (c:/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex (c:/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex))) (c:/texlive/2021/texmf-dist/tex/latex/listings/listings.sty (c:/texlive/2021/texmf-dist/tex/latex/listings/lstmisc.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/listings.cfg)) (c:/texlive/2021/texmf-dist/tex/latex/lstaddons/lstautogobble.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang1.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang2.sty)
(c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang3.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang1.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang2.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang3.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang1.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang2.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstlang3.sty) (c:/texlive/2021/texmf-dist/tex/latex/listings/lstmisc.sty)) (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.bdg) (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.enc) (c:/texlive/2021/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.chr) (./econ 341 13-16.aux) (c:/texlive/2021/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
) (c:/texlive/2021/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty (c:/texlive/2021/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg)) (c:/texlive/2021/texmf-dist/tex/latex/hyperref/nameref.sty (c:/texlive/2021/texmf-dist/tex/latex/refcount/refcount.sty) (c:/texlive/2021/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty))
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
(c:/texlive/2021/texmf-dist/tex/generic/ctex/zhmap/ctex-zhmap-windows.tex{c:/texlive/2021/texmf-var/fonts/map/pdftex/updmap/pdftex.map}{UGBK.sfd}{Unicode.sfd}) [1] [2]
Overfull \hbox (104.8006pt too wide) in paragraph at lines 77--81
\T1/ntxtlf/b/n/10.95 Ar-bi-trage\T1/ntxtlf/m/n/10.95 . $\OML/cmm/m/it/10.95 text[] \OMS/cmsy/m/n/10.95 ! []$ 
[3] [4] [5] (c:/texlive/2021/texmf-dist/tex/latex/ctex/fd/c70rm.fd) [6 <./Code_RGCfrOVjkn.png>] [7] [8 <./Code_TtV2H21FVL.png>] [9 <./Code_rDYFCVcro2.png>] [10 <./Code_8PUnn1uNZo.png>] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21 <./Code_YL9Wle6Xa6.png> <./firefox_PnEA0dzVqO.png>] [22] [23] [24]

c:/Users/[REDACTED USER]/Desktop/Latex/econ 341 13-16.tex:608: LaTeX Error: Environment warpfigure undefined.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              

l.608 \begin{warpfigure}
                        [h]

c:/Users/[REDACTED USER]/Desktop/Latex/econ 341 13-16.tex:610: LaTeX Error: \begin{document} ended by \end{warpfigure}.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              

l.610 \end{warpfigure}

[25 <./Code_732godPRNB.png>] [26] (./econ 341 13-16.aux)

Package rerunfilecheck Warning: File `"econ 341 13-16".out' has changed.
(rerunfilecheck)                Rerun to get outlines right
(rerunfilecheck)                or use package `bookmark'.

 )
(see the transcript file for additional information)<c:/Windows/Fonts/simhei.ttf><c:/Windows/Fonts/simhei.ttf><c:/Windows/Fonts/simhei.ttf><c:/Windows/Fonts/simhei.ttf><c:/Windows/Fonts/simhei.ttf>{c:/texlive/2021/texmf-dist/fonts/enc/dvips/cm-super/cm-super-t1.enc}{c:/texlive/2021/texmf-dist/fonts/enc/dvips/newtx/ntx-ec-tlf.enc}<c:/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb><c:/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb><c:/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb><c:/texlive/2021/texmf-dist/fonts/type1/public/cm-super/sftt1000.pfb><c:/texlive/2021/texmf-dist/fonts/type1/public/newtx/ztmb.pfb><c:/texlive/2021/texmf-dist/fonts/type1/public/newtx/ztmr.pfb><c:/texlive/2021/texmf-dist/fonts/type1/public/newtx/ztmri.pfb>
Output written on "econ 341 13-16.pdf" (26 pages, 717121 bytes).SyncTeX written on "econ 341 13-16.synctex.gz"

Transcript written on "econ 341 13-16.log".
Latexmk: References changed.
Latexmk: Log file says output to 'econ 341 13-16.pdf'
Collected error summary (may duplicate other messages):
  pdflatex: Command for 'pdflatex' gave return code 1
      Refer to 'econ 341 13-16.log' for details
Latexmk: Use the -f option to force complete processing,
 unless error was exceeding maximum runs, or warnings treated as errors.
Latexmk: Examining 'econ 341 13-16.log'
=== TeX engine is 'pdfTeX'
Latexmk: Errors, so I did not complete making targets
C:\texlive\2021\bin\win32\runscript.tlu:915: command failed with exit code 12:
perl.exe c:\texlive\2021\texmf-dist\scripts\latexmk\latexmk.pl -synctex=1 -interaction=nonstopmode -file-line-error -pdf -outdir=c:/Users/[REDACTED USER]/Desktop/Latex "c:/Users/[REDACTED USER]/Desktop/Latex/econ 341 13-16"

The interesting thing to note is that it seems that a pop-up error will say "Recipe terminated with error. Retry building the project"

and the LaTex compiler will run the second time

But I want to ask: do you want the project files?

jlelong commented 2 years ago

The interesting thing to note is that it seems that a pop-up error will say "Recipe terminated with error. Retry building the project" and the LaTex compiler will run the second time

This is because latex-workshop.latex.autoBuild.cleanAndRetry.enabled is set to true.

I cannot reproduce the issue, nor figure out what could be wrong. If you can give the exact file you use, I can try it.

lightningHoneypot commented 2 years ago

The interesting thing to note is that it seems that a pop-up error will say "Recipe terminated with error. Retry building the project" and the LaTex compiler will run the second time

This is because latex-workshop.latex.autoBuild.cleanAndRetry.enabled is set to true.

I cannot reproduce the issue, nor figure out what could be wrong. If you can give the exact file you use, I can try it.

ok! sending the files now! Latex issues.zip

jlelong commented 2 years ago

Everything works fine for me with your files. I am afraid there is not much we can do to help.

lightningHoneypot commented 2 years ago

Everything works fine for me with your files. I am afraid there is not much we can do to help.

so basically you have something like this on both of the files? image

jlelong commented 2 years ago

Yes!

lightningHoneypot commented 2 years ago

Yes!

alrightly then 😢 I think I will reinstall everything just to check if everything will be fixed at a later date But one last question before I do that: is there some sort of configuration file that I have to make to get those errors to come out?

jlelong commented 2 years ago

No, the errors should show up automatically after building the project.

lightningHoneypot commented 2 years ago

No, the errors should show up automatically after building the project.

ok, thanks for trying your best to help. maybe its the file that is the problem, maybe it's my installation, or something else entirely I will reinstall everything at a later date, thank you for your time to help :) Closing this issue for now :(

tamuratak commented 2 years ago

Please open a new issue if any progress.