logo in the first page only
up vote
44
down vote
favorite
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
add a comment |
up vote
44
down vote
favorite
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
I uselogo{includegraphics{Image/linuxLogo.png}}but image is appeared in slides.
– alhelal
Feb 6 at 13:22
add a comment |
up vote
44
down vote
favorite
up vote
44
down vote
favorite
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
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
beamer titles themes
edited Sep 18 '12 at 16:45
Claudio Fiandrino
52k11152303
52k11152303
asked Jun 24 '12 at 16:41
Aya
4761715
4761715
I uselogo{includegraphics{Image/linuxLogo.png}}but image is appeared in slides.
– alhelal
Feb 6 at 13:22
add a comment |
I uselogo{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
add a comment |
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:


This was by far the best way to display logo only on the first page. I did, however, played with thevspace{+ or - ...cm}and thehspace{+ 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 thetitlepagetemplate. 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 bylogo{}only appear on the title slide.titlegraphicshould 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. Thetitlegraphicmacro should be used exactly for the purpose of setting a logo only in the title page, so I'm wondering, why one should modifylogowhen it existstitlegraphic? 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
|
show 5 more comments
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:



add a comment |
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:


This was by far the best way to display logo only on the first page. I did, however, played with thevspace{+ or - ...cm}and thehspace{+ 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 thetitlepagetemplate. 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 bylogo{}only appear on the title slide.titlegraphicshould 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. Thetitlegraphicmacro should be used exactly for the purpose of setting a logo only in the title page, so I'm wondering, why one should modifylogowhen it existstitlegraphic? 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
|
show 5 more comments
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:


This was by far the best way to display logo only on the first page. I did, however, played with thevspace{+ or - ...cm}and thehspace{+ 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 thetitlepagetemplate. 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 bylogo{}only appear on the title slide.titlegraphicshould 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. Thetitlegraphicmacro should be used exactly for the purpose of setting a logo only in the title page, so I'm wondering, why one should modifylogowhen it existstitlegraphic? 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
|
show 5 more comments
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:


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:


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 thevspace{+ or - ...cm}and thehspace{+ 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 thetitlepagetemplate. 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 bylogo{}only appear on the title slide.titlegraphicshould 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. Thetitlegraphicmacro should be used exactly for the purpose of setting a logo only in the title page, so I'm wondering, why one should modifylogowhen it existstitlegraphic? 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
|
show 5 more comments
This was by far the best way to display logo only on the first page. I did, however, played with thevspace{+ or - ...cm}and thehspace{+ 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 thetitlepagetemplate. 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 bylogo{}only appear on the title slide.titlegraphicshould 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. Thetitlegraphicmacro should be used exactly for the purpose of setting a logo only in the title page, so I'm wondering, why one should modifylogowhen it existstitlegraphic? 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
|
show 5 more comments
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:



add a comment |
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:



add a comment |
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:



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:



answered 4 mins ago
Nickolas Alves
286
286
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.
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.
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%2f61051%2flogo-in-the-first-page-only%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
I use
logo{includegraphics{Image/linuxLogo.png}}but image is appeared in slides.– alhelal
Feb 6 at 13:22