Overleaf LaTex file not found error












1















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}









share|improve this question




















  • 3





    Try a file name without spaces: stars-convection.png.

    – moewe
    Mar 27 at 20:00






  • 3





    You loaded both graphics and graphicx: 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 wrote includegraphics{stars-convection.png, then the compiler would not find it.

    – LianTze Lim
    Mar 28 at 2:22
















1















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}









share|improve this question




















  • 3





    Try a file name without spaces: stars-convection.png.

    – moewe
    Mar 27 at 20:00






  • 3





    You loaded both graphics and graphicx: 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 wrote includegraphics{stars-convection.png, then the compiler would not find it.

    – LianTze Lim
    Mar 28 at 2:22














1












1








1


0






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}









share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 both graphics and graphicx: 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 wrote includegraphics{stars-convection.png, then the compiler would not find it.

    – LianTze Lim
    Mar 28 at 2:22














  • 3





    Try a file name without spaces: stars-convection.png.

    – moewe
    Mar 27 at 20:00






  • 3





    You loaded both graphics and graphicx: 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 wrote includegraphics{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










1 Answer
1






active

oldest

votes


















1














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.






share|improve this answer


























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    1














    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.






    share|improve this answer






























      1














      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.






      share|improve this answer




























        1












        1








        1







        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.






        share|improve this answer















        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.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 28 at 6:52

























        answered Mar 28 at 6:37









        CarLaTeXCarLaTeX

        34.4k552141




        34.4k552141






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

            ComboBox Display Member on multiple fields

            Is it possible to collect Nectar points via Trainline?