[Tex/LaTex] remove this logo and the university name in this beamer presentation

beamerpresentations

Here's the template I've found:
https://www.overleaf.com/10676029dhrjkbgszmhh#/40012310/
Can I remove it form the first slide?

Best Answer

You can overwrite the logo definition by using

\makeatletter
\renewcommand\fibeamer@includeLogo[1][]{}
\makeatother

\documentclass{beamer}
\usetheme[faculty=ped]{fibeamer}
\usepackage[utf8]{inputenc}
\usepackage[main=english,portuges]{babel}     

\title{Presentation Title - template de slides bonito e que parece código}
\subtitle{Presentation Subtitle}
\author{Author's Name}

\makeatletter
\renewcommand\fibeamer@includeLogo[1][]{}
\makeatother

\begin{document}

\begin{frame}
\maketitle
\end{frame}

\begin{frame}
content...
\end{frame}


\end{document}

enter image description here

Related Question