Overleaf LaTex file not found error
I'm having issues with Overleaf, the online LaTeX. I'm trying to include a figure like shown. It keeps saying the file can't be found. However, the p=figure is actually being shown on the pdf but with the title on it twice. There's an error somewhere. It does it normally with my other figures but just this one off the internet. I can't find a url for the picture so can't use alternative methods. Please can someone help me solve this. Thanks in advance.
documentclass[12pt]{report}
usepackage{graphics}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{stars convection.png}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
graphics overleaf
add a comment |
I'm having issues with Overleaf, the online LaTeX. I'm trying to include a figure like shown. It keeps saying the file can't be found. However, the p=figure is actually being shown on the pdf but with the title on it twice. There's an error somewhere. It does it normally with my other figures but just this one off the internet. I can't find a url for the picture so can't use alternative methods. Please can someone help me solve this. Thanks in advance.
documentclass[12pt]{report}
usepackage{graphics}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{stars convection.png}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
graphics overleaf
3
Try a file name without spaces:stars-convection.png
.
– moewe
Mar 27 at 20:00
3
You loaded bothgraphics
andgraphicx
: only one of them is needed.
– CarLaTeX
Mar 27 at 20:12
2
Check also that your file name and extensions have the right case, e.g. if you uploadedstars-convection.PNG
but you wroteincludegraphics{stars-convection.png
, then the compiler would not find it.
– LianTze Lim
Mar 28 at 2:22
add a comment |
I'm having issues with Overleaf, the online LaTeX. I'm trying to include a figure like shown. It keeps saying the file can't be found. However, the p=figure is actually being shown on the pdf but with the title on it twice. There's an error somewhere. It does it normally with my other figures but just this one off the internet. I can't find a url for the picture so can't use alternative methods. Please can someone help me solve this. Thanks in advance.
documentclass[12pt]{report}
usepackage{graphics}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{stars convection.png}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
graphics overleaf
I'm having issues with Overleaf, the online LaTeX. I'm trying to include a figure like shown. It keeps saying the file can't be found. However, the p=figure is actually being shown on the pdf but with the title on it twice. There's an error somewhere. It does it normally with my other figures but just this one off the internet. I can't find a url for the picture so can't use alternative methods. Please can someone help me solve this. Thanks in advance.
documentclass[12pt]{report}
usepackage{graphics}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{stars convection.png}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
graphics overleaf
graphics overleaf
edited Mar 27 at 19:59
moewe
96.2k10117361
96.2k10117361
asked Mar 27 at 19:57
Shazia ContostavlosShazia Contostavlos
61
61
3
Try a file name without spaces:stars-convection.png
.
– moewe
Mar 27 at 20:00
3
You loaded bothgraphics
andgraphicx
: only one of them is needed.
– CarLaTeX
Mar 27 at 20:12
2
Check also that your file name and extensions have the right case, e.g. if you uploadedstars-convection.PNG
but you wroteincludegraphics{stars-convection.png
, then the compiler would not find it.
– LianTze Lim
Mar 28 at 2:22
add a comment |
3
Try a file name without spaces:stars-convection.png
.
– moewe
Mar 27 at 20:00
3
You loaded bothgraphics
andgraphicx
: only one of them is needed.
– CarLaTeX
Mar 27 at 20:12
2
Check also that your file name and extensions have the right case, e.g. if you uploadedstars-convection.PNG
but you wroteincludegraphics{stars-convection.png
, then the compiler would not find it.
– LianTze Lim
Mar 28 at 2:22
3
3
Try a file name without spaces:
stars-convection.png
.– moewe
Mar 27 at 20:00
Try a file name without spaces:
stars-convection.png
.– moewe
Mar 27 at 20:00
3
3
You loaded both
graphics
and graphicx
: only one of them is needed.– CarLaTeX
Mar 27 at 20:12
You loaded both
graphics
and graphicx
: only one of them is needed.– CarLaTeX
Mar 27 at 20:12
2
2
Check also that your file name and extensions have the right case, e.g. if you uploaded
stars-convection.PNG
but you wrote includegraphics{stars-convection.png
, then the compiler would not find it.– LianTze Lim
Mar 28 at 2:22
Check also that your file name and extensions have the right case, e.g. if you uploaded
stars-convection.PNG
but you wrote includegraphics{stars-convection.png
, then the compiler would not find it.– LianTze Lim
Mar 28 at 2:22
add a comment |
1 Answer
1
active
oldest
votes
Put the name within "..."
with no file extension.
I tried this (of course, renaming and using a .png of mine, since I don't have yours) and it worked:
documentclass[12pt]{report}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{"stars convection"}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
Here the result on Overleaf.
Also includegraphics{"stars convection".png}
works:
documentclass[12pt]{report}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{"stars convection".png}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
Here the result on Overleaf.
And remember to load only graphicx
, without graphics
.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f481778%2foverleaf-latex-file-not-found-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Put the name within "..."
with no file extension.
I tried this (of course, renaming and using a .png of mine, since I don't have yours) and it worked:
documentclass[12pt]{report}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{"stars convection"}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
Here the result on Overleaf.
Also includegraphics{"stars convection".png}
works:
documentclass[12pt]{report}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{"stars convection".png}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
Here the result on Overleaf.
And remember to load only graphicx
, without graphics
.
add a comment |
Put the name within "..."
with no file extension.
I tried this (of course, renaming and using a .png of mine, since I don't have yours) and it worked:
documentclass[12pt]{report}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{"stars convection"}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
Here the result on Overleaf.
Also includegraphics{"stars convection".png}
works:
documentclass[12pt]{report}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{"stars convection".png}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
Here the result on Overleaf.
And remember to load only graphicx
, without graphics
.
add a comment |
Put the name within "..."
with no file extension.
I tried this (of course, renaming and using a .png of mine, since I don't have yours) and it worked:
documentclass[12pt]{report}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{"stars convection"}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
Here the result on Overleaf.
Also includegraphics{"stars convection".png}
works:
documentclass[12pt]{report}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{"stars convection".png}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
Here the result on Overleaf.
And remember to load only graphicx
, without graphics
.
Put the name within "..."
with no file extension.
I tried this (of course, renaming and using a .png of mine, since I don't have yours) and it worked:
documentclass[12pt]{report}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{"stars convection"}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
Here the result on Overleaf.
Also includegraphics{"stars convection".png}
works:
documentclass[12pt]{report}
usepackage{graphicx}
begin{document}
begin{figure}
centering
includegraphics{"stars convection".png}
caption{Caption}
label{fig:my_label}
end{figure}
end{document}
Here the result on Overleaf.
And remember to load only graphicx
, without graphics
.
edited Mar 28 at 6:52
answered Mar 28 at 6:37
CarLaTeXCarLaTeX
34.4k552141
34.4k552141
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f481778%2foverleaf-latex-file-not-found-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
Try a file name without spaces:
stars-convection.png
.– moewe
Mar 27 at 20:00
3
You loaded both
graphics
andgraphicx
: only one of them is needed.– CarLaTeX
Mar 27 at 20:12
2
Check also that your file name and extensions have the right case, e.g. if you uploaded
stars-convection.PNG
but you wroteincludegraphics{stars-convection.png
, then the compiler would not find it.– LianTze Lim
Mar 28 at 2:22