Add elements on the title page beamer template












1















enter image description hereI am using the Metropolis Beamer Template https://it.overleaf.com/latex/templates/metropolis-beamer-theme/qzyvdhrntfmr.



How can I put some other words, like supervisor and co-supervisor, in the right side of the title page?



I tried editing the beamerinnerthememetropolis.sty file, but I am not completely understanding how that code works.










share|improve this question

























  • Related: tex.stackexchange.com/a/444958/31034

    – ferahfeza
    Mar 5 at 21:16











  • @ferahfeza I'm sorry but that isn't helping me...

    – ScTALE
    Mar 5 at 21:24
















1















enter image description hereI am using the Metropolis Beamer Template https://it.overleaf.com/latex/templates/metropolis-beamer-theme/qzyvdhrntfmr.



How can I put some other words, like supervisor and co-supervisor, in the right side of the title page?



I tried editing the beamerinnerthememetropolis.sty file, but I am not completely understanding how that code works.










share|improve this question

























  • Related: tex.stackexchange.com/a/444958/31034

    – ferahfeza
    Mar 5 at 21:16











  • @ferahfeza I'm sorry but that isn't helping me...

    – ScTALE
    Mar 5 at 21:24














1












1








1








enter image description hereI am using the Metropolis Beamer Template https://it.overleaf.com/latex/templates/metropolis-beamer-theme/qzyvdhrntfmr.



How can I put some other words, like supervisor and co-supervisor, in the right side of the title page?



I tried editing the beamerinnerthememetropolis.sty file, but I am not completely understanding how that code works.










share|improve this question
















enter image description hereI am using the Metropolis Beamer Template https://it.overleaf.com/latex/templates/metropolis-beamer-theme/qzyvdhrntfmr.



How can I put some other words, like supervisor and co-supervisor, in the right side of the title page?



I tried editing the beamerinnerthememetropolis.sty file, but I am not completely understanding how that code works.







beamer beamer-metropolis






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 6 at 7:18







ScTALE

















asked Mar 5 at 21:11









ScTALEScTALE

21218




21218













  • Related: tex.stackexchange.com/a/444958/31034

    – ferahfeza
    Mar 5 at 21:16











  • @ferahfeza I'm sorry but that isn't helping me...

    – ScTALE
    Mar 5 at 21:24



















  • Related: tex.stackexchange.com/a/444958/31034

    – ferahfeza
    Mar 5 at 21:16











  • @ferahfeza I'm sorry but that isn't helping me...

    – ScTALE
    Mar 5 at 21:24

















Related: tex.stackexchange.com/a/444958/31034

– ferahfeza
Mar 5 at 21:16





Related: tex.stackexchange.com/a/444958/31034

– ferahfeza
Mar 5 at 21:16













@ferahfeza I'm sorry but that isn't helping me...

– ScTALE
Mar 5 at 21:24





@ferahfeza I'm sorry but that isn't helping me...

– ScTALE
Mar 5 at 21:24










2 Answers
2






active

oldest

votes


















3














You'll have to adjust vertical space, font size, etc., but you can start from this:



documentclass{beamer}
usetheme{metropolis}

setbeamertemplate{title page}{
begin{minipage}[b][paperheight]{textwidth}
ifxinserttitlegraphic@emptyelseusebeamertemplate*{title graphic}fi
vfill%
ifxinserttitle@emptyelseusebeamertemplate*{title}fi
ifxinsertsubtitle@emptyelseusebeamertemplate*{subtitle}fi
usebeamertemplate*{title separator}
begin{minipage}[t]{.5textwidth}
ifxbeamer@shortauthor@emptyelseusebeamertemplate*{author}fi
ifxinsertdate@emptyelseusebeamertemplate*{date}fi
ifxinsertinstitute@emptyelseusebeamertemplate*{institute}fi
end{minipage}
begin{minipage}[t]{.5textwidth}
vspace*{2em}
{tiny Super Visor: Super Visor's name%
par}
vspace*{1em}
{tiny Co supervisor: Co supervisor's name%
par}
end{minipage}
vfill
vspace*{1mm}
end{minipage}
}

title{Metropolis}
subtitle{A modern beamer theme}
author{Matthias Vogelgesang}
institute{Center for modern beamer themes}
date{}

begin{document}
maketitle
end{document}


enter image description here






share|improve this answer
























  • I would like to move those elements a little bit on the right: why this code doesn't align them properly? begin{minipage}[t]{.5textwidth} vspace*{2em} {hfilsmall Super Visor:% par} {hfilsmall Co supervisor: % par} end{minipage} vfill vspace*{1mm} end{minipage}

    – ScTALE
    Mar 6 at 9:11











  • @ScTALE to move them to the right, change minipages width to your taste. About vertical alignment, I don't know how to do it better. You'll have to play with vertical distances to adjust. Unless you wait for a better answer.

    – Ignasi
    Mar 6 at 9:27



















2














If I understand your question correctly, the answer in my comment can help us. Changing includegraphics with minipage environment in that answer, following code is extracted.



documentclass{beamer}

usetheme[numbering=none,block=fill]{metropolis}

%setbeamerfont{frametitle}{size=normalsize,series=normalfontbfseries}
setbeamerfont{frametitle}{size=Huge,series=normalfontbfseries}
setbeamerfont{page number in head/foot}{size=normalsize,series=normalfontbfseries}

setbeamercolor{footline}{fg=black!2, bg=mDarkTeal}
setbeamertemplate{frame footer}{My footline}

makeatletter
setlength{metropolis@frametitle@padding}{0.7ex}% <- default 2.2 ex

setbeamertemplate{footline}{%
begin{beamercolorbox}[wd=textwidth, sep=0.7ex]{footline}% <- default 3ex
usebeamerfont{page number in head/foot}%
usebeamertemplate*{frame footer}
hfill%
usebeamertemplate*{frame numbering}
end{beamercolorbox}%
}

setbeamertemplate{frametitle}{%
nointerlineskip%
begin{beamercolorbox}[%
wd=paperwidth,%
sep=0pt,%
leftskip=metropolis@frametitle@padding,%
rightskip=metropolis@frametitle@padding,%
]{frametitle}%
metropolis@frametitlestrut@start%
insertframetitle%
nolinebreak%
metropolis@frametitlestrut@end%
hfill
begin{minipage}[t]{0.3textwidth}
small Prof.Dr. Nikola Tesla
small Prof.Dr. John Doe
end{minipage}

end{beamercolorbox}%
}


makeatother

begin{document}

begin{frame}{My frame title}
begin{block}{Some itemize}
begin{itemize}
item alert{Item 1}
item Item 2
end{itemize}
end{block}
begin{block}{Some maths}
[sum_{n=1}^{infty}frac{1}{n^2}=frac{pi^2}{6}=zeta(2)]
end{block}
end{frame}

end{document}


enter image description here






share|improve this answer
























  • I edited the question and I added an image to explain better what I would like to have

    – ScTALE
    Mar 6 at 7:19











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%2f477927%2fadd-elements-on-the-title-page-beamer-template%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









3














You'll have to adjust vertical space, font size, etc., but you can start from this:



documentclass{beamer}
usetheme{metropolis}

setbeamertemplate{title page}{
begin{minipage}[b][paperheight]{textwidth}
ifxinserttitlegraphic@emptyelseusebeamertemplate*{title graphic}fi
vfill%
ifxinserttitle@emptyelseusebeamertemplate*{title}fi
ifxinsertsubtitle@emptyelseusebeamertemplate*{subtitle}fi
usebeamertemplate*{title separator}
begin{minipage}[t]{.5textwidth}
ifxbeamer@shortauthor@emptyelseusebeamertemplate*{author}fi
ifxinsertdate@emptyelseusebeamertemplate*{date}fi
ifxinsertinstitute@emptyelseusebeamertemplate*{institute}fi
end{minipage}
begin{minipage}[t]{.5textwidth}
vspace*{2em}
{tiny Super Visor: Super Visor's name%
par}
vspace*{1em}
{tiny Co supervisor: Co supervisor's name%
par}
end{minipage}
vfill
vspace*{1mm}
end{minipage}
}

title{Metropolis}
subtitle{A modern beamer theme}
author{Matthias Vogelgesang}
institute{Center for modern beamer themes}
date{}

begin{document}
maketitle
end{document}


enter image description here






share|improve this answer
























  • I would like to move those elements a little bit on the right: why this code doesn't align them properly? begin{minipage}[t]{.5textwidth} vspace*{2em} {hfilsmall Super Visor:% par} {hfilsmall Co supervisor: % par} end{minipage} vfill vspace*{1mm} end{minipage}

    – ScTALE
    Mar 6 at 9:11











  • @ScTALE to move them to the right, change minipages width to your taste. About vertical alignment, I don't know how to do it better. You'll have to play with vertical distances to adjust. Unless you wait for a better answer.

    – Ignasi
    Mar 6 at 9:27
















3














You'll have to adjust vertical space, font size, etc., but you can start from this:



documentclass{beamer}
usetheme{metropolis}

setbeamertemplate{title page}{
begin{minipage}[b][paperheight]{textwidth}
ifxinserttitlegraphic@emptyelseusebeamertemplate*{title graphic}fi
vfill%
ifxinserttitle@emptyelseusebeamertemplate*{title}fi
ifxinsertsubtitle@emptyelseusebeamertemplate*{subtitle}fi
usebeamertemplate*{title separator}
begin{minipage}[t]{.5textwidth}
ifxbeamer@shortauthor@emptyelseusebeamertemplate*{author}fi
ifxinsertdate@emptyelseusebeamertemplate*{date}fi
ifxinsertinstitute@emptyelseusebeamertemplate*{institute}fi
end{minipage}
begin{minipage}[t]{.5textwidth}
vspace*{2em}
{tiny Super Visor: Super Visor's name%
par}
vspace*{1em}
{tiny Co supervisor: Co supervisor's name%
par}
end{minipage}
vfill
vspace*{1mm}
end{minipage}
}

title{Metropolis}
subtitle{A modern beamer theme}
author{Matthias Vogelgesang}
institute{Center for modern beamer themes}
date{}

begin{document}
maketitle
end{document}


enter image description here






share|improve this answer
























  • I would like to move those elements a little bit on the right: why this code doesn't align them properly? begin{minipage}[t]{.5textwidth} vspace*{2em} {hfilsmall Super Visor:% par} {hfilsmall Co supervisor: % par} end{minipage} vfill vspace*{1mm} end{minipage}

    – ScTALE
    Mar 6 at 9:11











  • @ScTALE to move them to the right, change minipages width to your taste. About vertical alignment, I don't know how to do it better. You'll have to play with vertical distances to adjust. Unless you wait for a better answer.

    – Ignasi
    Mar 6 at 9:27














3












3








3







You'll have to adjust vertical space, font size, etc., but you can start from this:



documentclass{beamer}
usetheme{metropolis}

setbeamertemplate{title page}{
begin{minipage}[b][paperheight]{textwidth}
ifxinserttitlegraphic@emptyelseusebeamertemplate*{title graphic}fi
vfill%
ifxinserttitle@emptyelseusebeamertemplate*{title}fi
ifxinsertsubtitle@emptyelseusebeamertemplate*{subtitle}fi
usebeamertemplate*{title separator}
begin{minipage}[t]{.5textwidth}
ifxbeamer@shortauthor@emptyelseusebeamertemplate*{author}fi
ifxinsertdate@emptyelseusebeamertemplate*{date}fi
ifxinsertinstitute@emptyelseusebeamertemplate*{institute}fi
end{minipage}
begin{minipage}[t]{.5textwidth}
vspace*{2em}
{tiny Super Visor: Super Visor's name%
par}
vspace*{1em}
{tiny Co supervisor: Co supervisor's name%
par}
end{minipage}
vfill
vspace*{1mm}
end{minipage}
}

title{Metropolis}
subtitle{A modern beamer theme}
author{Matthias Vogelgesang}
institute{Center for modern beamer themes}
date{}

begin{document}
maketitle
end{document}


enter image description here






share|improve this answer













You'll have to adjust vertical space, font size, etc., but you can start from this:



documentclass{beamer}
usetheme{metropolis}

setbeamertemplate{title page}{
begin{minipage}[b][paperheight]{textwidth}
ifxinserttitlegraphic@emptyelseusebeamertemplate*{title graphic}fi
vfill%
ifxinserttitle@emptyelseusebeamertemplate*{title}fi
ifxinsertsubtitle@emptyelseusebeamertemplate*{subtitle}fi
usebeamertemplate*{title separator}
begin{minipage}[t]{.5textwidth}
ifxbeamer@shortauthor@emptyelseusebeamertemplate*{author}fi
ifxinsertdate@emptyelseusebeamertemplate*{date}fi
ifxinsertinstitute@emptyelseusebeamertemplate*{institute}fi
end{minipage}
begin{minipage}[t]{.5textwidth}
vspace*{2em}
{tiny Super Visor: Super Visor's name%
par}
vspace*{1em}
{tiny Co supervisor: Co supervisor's name%
par}
end{minipage}
vfill
vspace*{1mm}
end{minipage}
}

title{Metropolis}
subtitle{A modern beamer theme}
author{Matthias Vogelgesang}
institute{Center for modern beamer themes}
date{}

begin{document}
maketitle
end{document}


enter image description here







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 6 at 8:03









IgnasiIgnasi

94.6k4175318




94.6k4175318













  • I would like to move those elements a little bit on the right: why this code doesn't align them properly? begin{minipage}[t]{.5textwidth} vspace*{2em} {hfilsmall Super Visor:% par} {hfilsmall Co supervisor: % par} end{minipage} vfill vspace*{1mm} end{minipage}

    – ScTALE
    Mar 6 at 9:11











  • @ScTALE to move them to the right, change minipages width to your taste. About vertical alignment, I don't know how to do it better. You'll have to play with vertical distances to adjust. Unless you wait for a better answer.

    – Ignasi
    Mar 6 at 9:27



















  • I would like to move those elements a little bit on the right: why this code doesn't align them properly? begin{minipage}[t]{.5textwidth} vspace*{2em} {hfilsmall Super Visor:% par} {hfilsmall Co supervisor: % par} end{minipage} vfill vspace*{1mm} end{minipage}

    – ScTALE
    Mar 6 at 9:11











  • @ScTALE to move them to the right, change minipages width to your taste. About vertical alignment, I don't know how to do it better. You'll have to play with vertical distances to adjust. Unless you wait for a better answer.

    – Ignasi
    Mar 6 at 9:27

















I would like to move those elements a little bit on the right: why this code doesn't align them properly? begin{minipage}[t]{.5textwidth} vspace*{2em} {hfilsmall Super Visor:% par} {hfilsmall Co supervisor: % par} end{minipage} vfill vspace*{1mm} end{minipage}

– ScTALE
Mar 6 at 9:11





I would like to move those elements a little bit on the right: why this code doesn't align them properly? begin{minipage}[t]{.5textwidth} vspace*{2em} {hfilsmall Super Visor:% par} {hfilsmall Co supervisor: % par} end{minipage} vfill vspace*{1mm} end{minipage}

– ScTALE
Mar 6 at 9:11













@ScTALE to move them to the right, change minipages width to your taste. About vertical alignment, I don't know how to do it better. You'll have to play with vertical distances to adjust. Unless you wait for a better answer.

– Ignasi
Mar 6 at 9:27





@ScTALE to move them to the right, change minipages width to your taste. About vertical alignment, I don't know how to do it better. You'll have to play with vertical distances to adjust. Unless you wait for a better answer.

– Ignasi
Mar 6 at 9:27











2














If I understand your question correctly, the answer in my comment can help us. Changing includegraphics with minipage environment in that answer, following code is extracted.



documentclass{beamer}

usetheme[numbering=none,block=fill]{metropolis}

%setbeamerfont{frametitle}{size=normalsize,series=normalfontbfseries}
setbeamerfont{frametitle}{size=Huge,series=normalfontbfseries}
setbeamerfont{page number in head/foot}{size=normalsize,series=normalfontbfseries}

setbeamercolor{footline}{fg=black!2, bg=mDarkTeal}
setbeamertemplate{frame footer}{My footline}

makeatletter
setlength{metropolis@frametitle@padding}{0.7ex}% <- default 2.2 ex

setbeamertemplate{footline}{%
begin{beamercolorbox}[wd=textwidth, sep=0.7ex]{footline}% <- default 3ex
usebeamerfont{page number in head/foot}%
usebeamertemplate*{frame footer}
hfill%
usebeamertemplate*{frame numbering}
end{beamercolorbox}%
}

setbeamertemplate{frametitle}{%
nointerlineskip%
begin{beamercolorbox}[%
wd=paperwidth,%
sep=0pt,%
leftskip=metropolis@frametitle@padding,%
rightskip=metropolis@frametitle@padding,%
]{frametitle}%
metropolis@frametitlestrut@start%
insertframetitle%
nolinebreak%
metropolis@frametitlestrut@end%
hfill
begin{minipage}[t]{0.3textwidth}
small Prof.Dr. Nikola Tesla
small Prof.Dr. John Doe
end{minipage}

end{beamercolorbox}%
}


makeatother

begin{document}

begin{frame}{My frame title}
begin{block}{Some itemize}
begin{itemize}
item alert{Item 1}
item Item 2
end{itemize}
end{block}
begin{block}{Some maths}
[sum_{n=1}^{infty}frac{1}{n^2}=frac{pi^2}{6}=zeta(2)]
end{block}
end{frame}

end{document}


enter image description here






share|improve this answer
























  • I edited the question and I added an image to explain better what I would like to have

    – ScTALE
    Mar 6 at 7:19
















2














If I understand your question correctly, the answer in my comment can help us. Changing includegraphics with minipage environment in that answer, following code is extracted.



documentclass{beamer}

usetheme[numbering=none,block=fill]{metropolis}

%setbeamerfont{frametitle}{size=normalsize,series=normalfontbfseries}
setbeamerfont{frametitle}{size=Huge,series=normalfontbfseries}
setbeamerfont{page number in head/foot}{size=normalsize,series=normalfontbfseries}

setbeamercolor{footline}{fg=black!2, bg=mDarkTeal}
setbeamertemplate{frame footer}{My footline}

makeatletter
setlength{metropolis@frametitle@padding}{0.7ex}% <- default 2.2 ex

setbeamertemplate{footline}{%
begin{beamercolorbox}[wd=textwidth, sep=0.7ex]{footline}% <- default 3ex
usebeamerfont{page number in head/foot}%
usebeamertemplate*{frame footer}
hfill%
usebeamertemplate*{frame numbering}
end{beamercolorbox}%
}

setbeamertemplate{frametitle}{%
nointerlineskip%
begin{beamercolorbox}[%
wd=paperwidth,%
sep=0pt,%
leftskip=metropolis@frametitle@padding,%
rightskip=metropolis@frametitle@padding,%
]{frametitle}%
metropolis@frametitlestrut@start%
insertframetitle%
nolinebreak%
metropolis@frametitlestrut@end%
hfill
begin{minipage}[t]{0.3textwidth}
small Prof.Dr. Nikola Tesla
small Prof.Dr. John Doe
end{minipage}

end{beamercolorbox}%
}


makeatother

begin{document}

begin{frame}{My frame title}
begin{block}{Some itemize}
begin{itemize}
item alert{Item 1}
item Item 2
end{itemize}
end{block}
begin{block}{Some maths}
[sum_{n=1}^{infty}frac{1}{n^2}=frac{pi^2}{6}=zeta(2)]
end{block}
end{frame}

end{document}


enter image description here






share|improve this answer
























  • I edited the question and I added an image to explain better what I would like to have

    – ScTALE
    Mar 6 at 7:19














2












2








2







If I understand your question correctly, the answer in my comment can help us. Changing includegraphics with minipage environment in that answer, following code is extracted.



documentclass{beamer}

usetheme[numbering=none,block=fill]{metropolis}

%setbeamerfont{frametitle}{size=normalsize,series=normalfontbfseries}
setbeamerfont{frametitle}{size=Huge,series=normalfontbfseries}
setbeamerfont{page number in head/foot}{size=normalsize,series=normalfontbfseries}

setbeamercolor{footline}{fg=black!2, bg=mDarkTeal}
setbeamertemplate{frame footer}{My footline}

makeatletter
setlength{metropolis@frametitle@padding}{0.7ex}% <- default 2.2 ex

setbeamertemplate{footline}{%
begin{beamercolorbox}[wd=textwidth, sep=0.7ex]{footline}% <- default 3ex
usebeamerfont{page number in head/foot}%
usebeamertemplate*{frame footer}
hfill%
usebeamertemplate*{frame numbering}
end{beamercolorbox}%
}

setbeamertemplate{frametitle}{%
nointerlineskip%
begin{beamercolorbox}[%
wd=paperwidth,%
sep=0pt,%
leftskip=metropolis@frametitle@padding,%
rightskip=metropolis@frametitle@padding,%
]{frametitle}%
metropolis@frametitlestrut@start%
insertframetitle%
nolinebreak%
metropolis@frametitlestrut@end%
hfill
begin{minipage}[t]{0.3textwidth}
small Prof.Dr. Nikola Tesla
small Prof.Dr. John Doe
end{minipage}

end{beamercolorbox}%
}


makeatother

begin{document}

begin{frame}{My frame title}
begin{block}{Some itemize}
begin{itemize}
item alert{Item 1}
item Item 2
end{itemize}
end{block}
begin{block}{Some maths}
[sum_{n=1}^{infty}frac{1}{n^2}=frac{pi^2}{6}=zeta(2)]
end{block}
end{frame}

end{document}


enter image description here






share|improve this answer













If I understand your question correctly, the answer in my comment can help us. Changing includegraphics with minipage environment in that answer, following code is extracted.



documentclass{beamer}

usetheme[numbering=none,block=fill]{metropolis}

%setbeamerfont{frametitle}{size=normalsize,series=normalfontbfseries}
setbeamerfont{frametitle}{size=Huge,series=normalfontbfseries}
setbeamerfont{page number in head/foot}{size=normalsize,series=normalfontbfseries}

setbeamercolor{footline}{fg=black!2, bg=mDarkTeal}
setbeamertemplate{frame footer}{My footline}

makeatletter
setlength{metropolis@frametitle@padding}{0.7ex}% <- default 2.2 ex

setbeamertemplate{footline}{%
begin{beamercolorbox}[wd=textwidth, sep=0.7ex]{footline}% <- default 3ex
usebeamerfont{page number in head/foot}%
usebeamertemplate*{frame footer}
hfill%
usebeamertemplate*{frame numbering}
end{beamercolorbox}%
}

setbeamertemplate{frametitle}{%
nointerlineskip%
begin{beamercolorbox}[%
wd=paperwidth,%
sep=0pt,%
leftskip=metropolis@frametitle@padding,%
rightskip=metropolis@frametitle@padding,%
]{frametitle}%
metropolis@frametitlestrut@start%
insertframetitle%
nolinebreak%
metropolis@frametitlestrut@end%
hfill
begin{minipage}[t]{0.3textwidth}
small Prof.Dr. Nikola Tesla
small Prof.Dr. John Doe
end{minipage}

end{beamercolorbox}%
}


makeatother

begin{document}

begin{frame}{My frame title}
begin{block}{Some itemize}
begin{itemize}
item alert{Item 1}
item Item 2
end{itemize}
end{block}
begin{block}{Some maths}
[sum_{n=1}^{infty}frac{1}{n^2}=frac{pi^2}{6}=zeta(2)]
end{block}
end{frame}

end{document}


enter image description here







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 5 at 21:41









ferahfezaferahfeza

6,71611932




6,71611932













  • I edited the question and I added an image to explain better what I would like to have

    – ScTALE
    Mar 6 at 7:19



















  • I edited the question and I added an image to explain better what I would like to have

    – ScTALE
    Mar 6 at 7:19

















I edited the question and I added an image to explain better what I would like to have

– ScTALE
Mar 6 at 7:19





I edited the question and I added an image to explain better what I would like to have

– ScTALE
Mar 6 at 7:19


















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%2f477927%2fadd-elements-on-the-title-page-beamer-template%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?