logo in the first page only











up vote
44
down vote

favorite
13












I want to insert the logo in the title page only. However, it displays on all pages!
How can I make these two figurs display as logo in the title page only?



I type in the preamble:



logo{%
includegraphics[scale=.2]{fig1.pdf}hspace*{4.75cm}~%
includegraphics[scale=.2]{fig2.jpg}hspace*{0.75cm}%
}


then



begin{document}

maketitle

begin{frame}
frametitle{}
...
end{frame}









share|improve this question
























  • I use logo{includegraphics{Image/linuxLogo.png}} but image is appeared in slides.
    – alhelal
    Feb 6 at 13:22















up vote
44
down vote

favorite
13












I want to insert the logo in the title page only. However, it displays on all pages!
How can I make these two figurs display as logo in the title page only?



I type in the preamble:



logo{%
includegraphics[scale=.2]{fig1.pdf}hspace*{4.75cm}~%
includegraphics[scale=.2]{fig2.jpg}hspace*{0.75cm}%
}


then



begin{document}

maketitle

begin{frame}
frametitle{}
...
end{frame}









share|improve this question
























  • I use logo{includegraphics{Image/linuxLogo.png}} but image is appeared in slides.
    – alhelal
    Feb 6 at 13:22













up vote
44
down vote

favorite
13









up vote
44
down vote

favorite
13






13





I want to insert the logo in the title page only. However, it displays on all pages!
How can I make these two figurs display as logo in the title page only?



I type in the preamble:



logo{%
includegraphics[scale=.2]{fig1.pdf}hspace*{4.75cm}~%
includegraphics[scale=.2]{fig2.jpg}hspace*{0.75cm}%
}


then



begin{document}

maketitle

begin{frame}
frametitle{}
...
end{frame}









share|improve this question















I want to insert the logo in the title page only. However, it displays on all pages!
How can I make these two figurs display as logo in the title page only?



I type in the preamble:



logo{%
includegraphics[scale=.2]{fig1.pdf}hspace*{4.75cm}~%
includegraphics[scale=.2]{fig2.jpg}hspace*{0.75cm}%
}


then



begin{document}

maketitle

begin{frame}
frametitle{}
...
end{frame}






beamer titles themes






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Sep 18 '12 at 16:45









Claudio Fiandrino

52k11152303




52k11152303










asked Jun 24 '12 at 16:41









Aya

4761715




4761715












  • I use logo{includegraphics{Image/linuxLogo.png}} but image is appeared in slides.
    – alhelal
    Feb 6 at 13:22


















  • I use logo{includegraphics{Image/linuxLogo.png}} but image is appeared in slides.
    – alhelal
    Feb 6 at 13:22
















I use logo{includegraphics{Image/linuxLogo.png}} but image is appeared in slides.
– alhelal
Feb 6 at 13:22




I use logo{includegraphics{Image/linuxLogo.png}} but image is appeared in slides.
– alhelal
Feb 6 at 13:22










2 Answers
2






active

oldest

votes

















up vote
50
down vote



accepted










The command to be used to display the logo only in the titlepage is titlegraphic.



For example:



documentclass{beamer}

author{Me}
title{The title}
institute{My institute}

% logo of my university
titlegraphic{includegraphics[width=2cm]{logopolito}hspace*{4.75cm}~%
includegraphics[width=2cm]{logopolito}
}

begin{document}
begin{frame}
titlepage
end{frame}

begin{frame}{Test 1}
test
end{frame}

begin{frame}{Test 2}
test
end{frame}
end{document}


I report the first two frames:



enter image description here



enter image description here






share|improve this answer





















  • This was by far the best way to display logo only on the first page. I did, however, played with the vspace{+ or - ...cm} and the hspace{+ or - ...cm} to try and position the logo where I wanted them to go. The other thing I did was to ensure by reducing size or words of my title text so that it doesn't take up too many lines as this reduces the space at the bottom of the page where the logo needs to go. Many thanks
    – user18981
    Sep 21 '12 at 13:36












  • @Richard: notice that there are other ways, for example customizing directly the titlepage template. See also as reference Logo situated only on titlepage of Beamer presentation
    – Claudio Fiandrino
    Sep 22 '12 at 8:23






  • 1




    While this answer solves the asker's problem, I think it does not answer the question: How to make the logo - declared by logo{} only appear on the title slide. titlegraphic should be used for what it says: place a title graphic, not the logo. A better way to solve the asker's problem would be in the style files where you could turn off the logo placement.
    – mpe
    Sep 13 '14 at 14:20






  • 2




    @mpe: I'm afraid, I disagree. The titlegraphic macro should be used exactly for the purpose of setting a logo only in the title page, so I'm wondering, why one should modify logo when it exists titlegraphic? Take into account that very often logo and title graphic are used interchangeably.
    – Claudio Fiandrino
    Sep 13 '14 at 14:38








  • 2




    That is correct, but if one wants to display an istitutional logo only on the first page, this the simplest way to go. The only is what I implicitly assumed while answering. Of course there are other tricks, however none of them is as simple as this one. But you have a point with your comment ;)
    – Claudio Fiandrino
    Mar 3 '17 at 17:31




















up vote
0
down vote













I had a similar issue and didn't like the titlegraphic solution. Here is what I did:



documentclass{beamer}

author{Me}
title{The title}
institute{My institute}

% logo of my university
logo{includegraphics[width=2cm]{logopolito}hspace*{8cm}~%
includegraphics[width=2cm]{logopolito}
}

begin{document}
begin{frame}
titlepage
end{frame}

logo{}

begin{frame}{Test 1}
test
end{frame}

begin{frame}{Test 2}
test
end{frame}
end{document}


This gave me the following output:



TitlepageFirst frameSecond frame





share





















    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',
    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%2f61051%2flogo-in-the-first-page-only%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    50
    down vote



    accepted










    The command to be used to display the logo only in the titlepage is titlegraphic.



    For example:



    documentclass{beamer}

    author{Me}
    title{The title}
    institute{My institute}

    % logo of my university
    titlegraphic{includegraphics[width=2cm]{logopolito}hspace*{4.75cm}~%
    includegraphics[width=2cm]{logopolito}
    }

    begin{document}
    begin{frame}
    titlepage
    end{frame}

    begin{frame}{Test 1}
    test
    end{frame}

    begin{frame}{Test 2}
    test
    end{frame}
    end{document}


    I report the first two frames:



    enter image description here



    enter image description here






    share|improve this answer





















    • This was by far the best way to display logo only on the first page. I did, however, played with the vspace{+ or - ...cm} and the hspace{+ or - ...cm} to try and position the logo where I wanted them to go. The other thing I did was to ensure by reducing size or words of my title text so that it doesn't take up too many lines as this reduces the space at the bottom of the page where the logo needs to go. Many thanks
      – user18981
      Sep 21 '12 at 13:36












    • @Richard: notice that there are other ways, for example customizing directly the titlepage template. See also as reference Logo situated only on titlepage of Beamer presentation
      – Claudio Fiandrino
      Sep 22 '12 at 8:23






    • 1




      While this answer solves the asker's problem, I think it does not answer the question: How to make the logo - declared by logo{} only appear on the title slide. titlegraphic should be used for what it says: place a title graphic, not the logo. A better way to solve the asker's problem would be in the style files where you could turn off the logo placement.
      – mpe
      Sep 13 '14 at 14:20






    • 2




      @mpe: I'm afraid, I disagree. The titlegraphic macro should be used exactly for the purpose of setting a logo only in the title page, so I'm wondering, why one should modify logo when it exists titlegraphic? Take into account that very often logo and title graphic are used interchangeably.
      – Claudio Fiandrino
      Sep 13 '14 at 14:38








    • 2




      That is correct, but if one wants to display an istitutional logo only on the first page, this the simplest way to go. The only is what I implicitly assumed while answering. Of course there are other tricks, however none of them is as simple as this one. But you have a point with your comment ;)
      – Claudio Fiandrino
      Mar 3 '17 at 17:31

















    up vote
    50
    down vote



    accepted










    The command to be used to display the logo only in the titlepage is titlegraphic.



    For example:



    documentclass{beamer}

    author{Me}
    title{The title}
    institute{My institute}

    % logo of my university
    titlegraphic{includegraphics[width=2cm]{logopolito}hspace*{4.75cm}~%
    includegraphics[width=2cm]{logopolito}
    }

    begin{document}
    begin{frame}
    titlepage
    end{frame}

    begin{frame}{Test 1}
    test
    end{frame}

    begin{frame}{Test 2}
    test
    end{frame}
    end{document}


    I report the first two frames:



    enter image description here



    enter image description here






    share|improve this answer





















    • This was by far the best way to display logo only on the first page. I did, however, played with the vspace{+ or - ...cm} and the hspace{+ or - ...cm} to try and position the logo where I wanted them to go. The other thing I did was to ensure by reducing size or words of my title text so that it doesn't take up too many lines as this reduces the space at the bottom of the page where the logo needs to go. Many thanks
      – user18981
      Sep 21 '12 at 13:36












    • @Richard: notice that there are other ways, for example customizing directly the titlepage template. See also as reference Logo situated only on titlepage of Beamer presentation
      – Claudio Fiandrino
      Sep 22 '12 at 8:23






    • 1




      While this answer solves the asker's problem, I think it does not answer the question: How to make the logo - declared by logo{} only appear on the title slide. titlegraphic should be used for what it says: place a title graphic, not the logo. A better way to solve the asker's problem would be in the style files where you could turn off the logo placement.
      – mpe
      Sep 13 '14 at 14:20






    • 2




      @mpe: I'm afraid, I disagree. The titlegraphic macro should be used exactly for the purpose of setting a logo only in the title page, so I'm wondering, why one should modify logo when it exists titlegraphic? Take into account that very often logo and title graphic are used interchangeably.
      – Claudio Fiandrino
      Sep 13 '14 at 14:38








    • 2




      That is correct, but if one wants to display an istitutional logo only on the first page, this the simplest way to go. The only is what I implicitly assumed while answering. Of course there are other tricks, however none of them is as simple as this one. But you have a point with your comment ;)
      – Claudio Fiandrino
      Mar 3 '17 at 17:31















    up vote
    50
    down vote



    accepted







    up vote
    50
    down vote



    accepted






    The command to be used to display the logo only in the titlepage is titlegraphic.



    For example:



    documentclass{beamer}

    author{Me}
    title{The title}
    institute{My institute}

    % logo of my university
    titlegraphic{includegraphics[width=2cm]{logopolito}hspace*{4.75cm}~%
    includegraphics[width=2cm]{logopolito}
    }

    begin{document}
    begin{frame}
    titlepage
    end{frame}

    begin{frame}{Test 1}
    test
    end{frame}

    begin{frame}{Test 2}
    test
    end{frame}
    end{document}


    I report the first two frames:



    enter image description here



    enter image description here






    share|improve this answer












    The command to be used to display the logo only in the titlepage is titlegraphic.



    For example:



    documentclass{beamer}

    author{Me}
    title{The title}
    institute{My institute}

    % logo of my university
    titlegraphic{includegraphics[width=2cm]{logopolito}hspace*{4.75cm}~%
    includegraphics[width=2cm]{logopolito}
    }

    begin{document}
    begin{frame}
    titlepage
    end{frame}

    begin{frame}{Test 1}
    test
    end{frame}

    begin{frame}{Test 2}
    test
    end{frame}
    end{document}


    I report the first two frames:



    enter image description here



    enter image description here







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Jun 24 '12 at 16:49









    Claudio Fiandrino

    52k11152303




    52k11152303












    • This was by far the best way to display logo only on the first page. I did, however, played with the vspace{+ or - ...cm} and the hspace{+ or - ...cm} to try and position the logo where I wanted them to go. The other thing I did was to ensure by reducing size or words of my title text so that it doesn't take up too many lines as this reduces the space at the bottom of the page where the logo needs to go. Many thanks
      – user18981
      Sep 21 '12 at 13:36












    • @Richard: notice that there are other ways, for example customizing directly the titlepage template. See also as reference Logo situated only on titlepage of Beamer presentation
      – Claudio Fiandrino
      Sep 22 '12 at 8:23






    • 1




      While this answer solves the asker's problem, I think it does not answer the question: How to make the logo - declared by logo{} only appear on the title slide. titlegraphic should be used for what it says: place a title graphic, not the logo. A better way to solve the asker's problem would be in the style files where you could turn off the logo placement.
      – mpe
      Sep 13 '14 at 14:20






    • 2




      @mpe: I'm afraid, I disagree. The titlegraphic macro should be used exactly for the purpose of setting a logo only in the title page, so I'm wondering, why one should modify logo when it exists titlegraphic? Take into account that very often logo and title graphic are used interchangeably.
      – Claudio Fiandrino
      Sep 13 '14 at 14:38








    • 2




      That is correct, but if one wants to display an istitutional logo only on the first page, this the simplest way to go. The only is what I implicitly assumed while answering. Of course there are other tricks, however none of them is as simple as this one. But you have a point with your comment ;)
      – Claudio Fiandrino
      Mar 3 '17 at 17:31




















    • This was by far the best way to display logo only on the first page. I did, however, played with the vspace{+ or - ...cm} and the hspace{+ or - ...cm} to try and position the logo where I wanted them to go. The other thing I did was to ensure by reducing size or words of my title text so that it doesn't take up too many lines as this reduces the space at the bottom of the page where the logo needs to go. Many thanks
      – user18981
      Sep 21 '12 at 13:36












    • @Richard: notice that there are other ways, for example customizing directly the titlepage template. See also as reference Logo situated only on titlepage of Beamer presentation
      – Claudio Fiandrino
      Sep 22 '12 at 8:23






    • 1




      While this answer solves the asker's problem, I think it does not answer the question: How to make the logo - declared by logo{} only appear on the title slide. titlegraphic should be used for what it says: place a title graphic, not the logo. A better way to solve the asker's problem would be in the style files where you could turn off the logo placement.
      – mpe
      Sep 13 '14 at 14:20






    • 2




      @mpe: I'm afraid, I disagree. The titlegraphic macro should be used exactly for the purpose of setting a logo only in the title page, so I'm wondering, why one should modify logo when it exists titlegraphic? Take into account that very often logo and title graphic are used interchangeably.
      – Claudio Fiandrino
      Sep 13 '14 at 14:38








    • 2




      That is correct, but if one wants to display an istitutional logo only on the first page, this the simplest way to go. The only is what I implicitly assumed while answering. Of course there are other tricks, however none of them is as simple as this one. But you have a point with your comment ;)
      – Claudio Fiandrino
      Mar 3 '17 at 17:31


















    This was by far the best way to display logo only on the first page. I did, however, played with the vspace{+ or - ...cm} and the hspace{+ or - ...cm} to try and position the logo where I wanted them to go. The other thing I did was to ensure by reducing size or words of my title text so that it doesn't take up too many lines as this reduces the space at the bottom of the page where the logo needs to go. Many thanks
    – user18981
    Sep 21 '12 at 13:36






    This was by far the best way to display logo only on the first page. I did, however, played with the vspace{+ or - ...cm} and the hspace{+ or - ...cm} to try and position the logo where I wanted them to go. The other thing I did was to ensure by reducing size or words of my title text so that it doesn't take up too many lines as this reduces the space at the bottom of the page where the logo needs to go. Many thanks
    – user18981
    Sep 21 '12 at 13:36














    @Richard: notice that there are other ways, for example customizing directly the titlepage template. See also as reference Logo situated only on titlepage of Beamer presentation
    – Claudio Fiandrino
    Sep 22 '12 at 8:23




    @Richard: notice that there are other ways, for example customizing directly the titlepage template. See also as reference Logo situated only on titlepage of Beamer presentation
    – Claudio Fiandrino
    Sep 22 '12 at 8:23




    1




    1




    While this answer solves the asker's problem, I think it does not answer the question: How to make the logo - declared by logo{} only appear on the title slide. titlegraphic should be used for what it says: place a title graphic, not the logo. A better way to solve the asker's problem would be in the style files where you could turn off the logo placement.
    – mpe
    Sep 13 '14 at 14:20




    While this answer solves the asker's problem, I think it does not answer the question: How to make the logo - declared by logo{} only appear on the title slide. titlegraphic should be used for what it says: place a title graphic, not the logo. A better way to solve the asker's problem would be in the style files where you could turn off the logo placement.
    – mpe
    Sep 13 '14 at 14:20




    2




    2




    @mpe: I'm afraid, I disagree. The titlegraphic macro should be used exactly for the purpose of setting a logo only in the title page, so I'm wondering, why one should modify logo when it exists titlegraphic? Take into account that very often logo and title graphic are used interchangeably.
    – Claudio Fiandrino
    Sep 13 '14 at 14:38






    @mpe: I'm afraid, I disagree. The titlegraphic macro should be used exactly for the purpose of setting a logo only in the title page, so I'm wondering, why one should modify logo when it exists titlegraphic? Take into account that very often logo and title graphic are used interchangeably.
    – Claudio Fiandrino
    Sep 13 '14 at 14:38






    2




    2




    That is correct, but if one wants to display an istitutional logo only on the first page, this the simplest way to go. The only is what I implicitly assumed while answering. Of course there are other tricks, however none of them is as simple as this one. But you have a point with your comment ;)
    – Claudio Fiandrino
    Mar 3 '17 at 17:31






    That is correct, but if one wants to display an istitutional logo only on the first page, this the simplest way to go. The only is what I implicitly assumed while answering. Of course there are other tricks, however none of them is as simple as this one. But you have a point with your comment ;)
    – Claudio Fiandrino
    Mar 3 '17 at 17:31












    up vote
    0
    down vote













    I had a similar issue and didn't like the titlegraphic solution. Here is what I did:



    documentclass{beamer}

    author{Me}
    title{The title}
    institute{My institute}

    % logo of my university
    logo{includegraphics[width=2cm]{logopolito}hspace*{8cm}~%
    includegraphics[width=2cm]{logopolito}
    }

    begin{document}
    begin{frame}
    titlepage
    end{frame}

    logo{}

    begin{frame}{Test 1}
    test
    end{frame}

    begin{frame}{Test 2}
    test
    end{frame}
    end{document}


    This gave me the following output:



    TitlepageFirst frameSecond frame





    share

























      up vote
      0
      down vote













      I had a similar issue and didn't like the titlegraphic solution. Here is what I did:



      documentclass{beamer}

      author{Me}
      title{The title}
      institute{My institute}

      % logo of my university
      logo{includegraphics[width=2cm]{logopolito}hspace*{8cm}~%
      includegraphics[width=2cm]{logopolito}
      }

      begin{document}
      begin{frame}
      titlepage
      end{frame}

      logo{}

      begin{frame}{Test 1}
      test
      end{frame}

      begin{frame}{Test 2}
      test
      end{frame}
      end{document}


      This gave me the following output:



      TitlepageFirst frameSecond frame





      share























        up vote
        0
        down vote










        up vote
        0
        down vote









        I had a similar issue and didn't like the titlegraphic solution. Here is what I did:



        documentclass{beamer}

        author{Me}
        title{The title}
        institute{My institute}

        % logo of my university
        logo{includegraphics[width=2cm]{logopolito}hspace*{8cm}~%
        includegraphics[width=2cm]{logopolito}
        }

        begin{document}
        begin{frame}
        titlepage
        end{frame}

        logo{}

        begin{frame}{Test 1}
        test
        end{frame}

        begin{frame}{Test 2}
        test
        end{frame}
        end{document}


        This gave me the following output:



        TitlepageFirst frameSecond frame





        share












        I had a similar issue and didn't like the titlegraphic solution. Here is what I did:



        documentclass{beamer}

        author{Me}
        title{The title}
        institute{My institute}

        % logo of my university
        logo{includegraphics[width=2cm]{logopolito}hspace*{8cm}~%
        includegraphics[width=2cm]{logopolito}
        }

        begin{document}
        begin{frame}
        titlepage
        end{frame}

        logo{}

        begin{frame}{Test 1}
        test
        end{frame}

        begin{frame}{Test 2}
        test
        end{frame}
        end{document}


        This gave me the following output:



        TitlepageFirst frameSecond frame






        share











        share


        share










        answered 4 mins ago









        Nickolas Alves

        286




        286






























            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.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • 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%2f61051%2flogo-in-the-first-page-only%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

            Entries order in /etc/network/interfaces

            新発田市

            Grub takes very long (several minutes) to open Menu (in Multi-Boot-System)