I have been working on my documents for quite some time without any major problem. I was making small changes to the code then compiling, making more small changes and compiling again, then, out of nowhere, nothing is compiling and I'm getting the error message "File not found".
I have no idea what this is talking about or how to fix it. I didn't move or delete or rename any files, so what file can it not find?
What's going on?
Update 1: Now the program just appears frozen in "Process started" state.
Update 2: I should add that my files are synced by Dropbox and that I'm having similar problems on my laptop and desktop.
Texmaker and TeXstudio ⇒ Error: File Not Found
-
- Posts: 139
- Joined: Tue Mar 10, 2015 11:06 am
Error: File Not Found
Last edited by LaTexLearner on Fri Dec 04, 2015 8:52 pm, edited 1 time in total.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: Error: File Not Found
With the amount of information given, it is impossible to help.
Did you check if the file is there? Which file is missing?
Can you show us the log file?
Did you check if the file is there? Which file is missing?
Can you show us the log file?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
-
- Posts: 139
- Joined: Tue Mar 10, 2015 11:06 am
Error: File Not Found
I don't even know which file the program is talking about. I did not delete or move or rename anything. All the old folders are still in place. Just out of the blue, as I was coding/compiling, it worked a bunch of times, then, out of the blue, "File not found".Johannes_B wrote:With the amount of information given, it is impossible to help.
Did you check if the file is there? Which file is missing?
Can you show us the log file?
The .tex file opens. The "old" PDF is still there.
I'm not sure what you meant by "log file" but if you meant where the messages go on the bottom left of the UI, that no longer does anything. It just says "Process started" then freezes, and, a few minutes later, it crashes my computer.
If by "log file" you're referring to something else, please let me know how to get it and post it here.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: Error: File Not Found
The GUI shows you some extracts from the actual log-file, and in almost all cases, those extraxt are absolutely worthless. Show us the real log-file. Close the pdf. Especially adobe reader cannot work properly when it comes to LaTeX. Show us screeshots.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
-
- Posts: 139
- Joined: Tue Mar 10, 2015 11:06 am
Error: File Not Found
What do you mean by "real log-file"?Johannes_B wrote:The GUI shows you some extracts from the actual log-file, and in almost all cases, those extraxt are absolutely worthless. Show us the real log-file. Close the pdf. Especially adobe reader cannot work properly when it comes to LaTeX. Show us screeshots.
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Error: File Not Found
That is the file in your document folder with the name extension
Stefan
.log
. You can post it as attachment here.Stefan
LaTeX.org admin
Error: File Not Found
One of the solutions in texmaker related to Error:File Not Found is-->>
1. Options -> Configure TexMaker -->> TexMaker Commands
2. Change the PdfLatex from
to
and XeLatex from
to
These changes i.e. using ...-pdf %.tex and ... %.tex interchangeably is frequently required for Xelatex users with LatexMk
packages.
Yours Sincerely,
Anil Kunwar
1. Options -> Configure TexMaker -->> TexMaker Commands
2. Change the PdfLatex from
Code: Select all
pdflatex -synctex=1 -interaction=nonstopmode %.tex
Code: Select all
pdflatex -synctex=1 -interaction=nonstopmode -pdf %.tex
and XeLatex from
Code: Select all
xelatex -synctex=1 -interaction=nonstopmode %.tex
Code: Select all
xelatex -synctex=1 -interaction=nonstopmode -pdf %.tex
packages.
Yours Sincerely,
Anil Kunwar