- This is a "fun" project.
- I want to create a
beamerpresentation with a fancy title frame. - The goal is to have a black title frame with "bight colorful" text on it that looks like neon text (glowing).
- It's a bit inspired by the intro of the TV show "Stranger Things".
- Ideally, I want to stick to beamer's
beamercolorboxapproach to build the title frame template. - I found some (partly older) related questions but I was hoping that by now there is a simple solution available. There seems to be solutions available to generate this effect for boxes but not for text.
- Question: Any idea how to generate a "neon glow" for normal text on the title frame with
tikzand friends?
\documentclass{beamer}
\usepackage{tikz}
% Potentially Useful Libraries
\usetikzlibrary{
shadows.blur, % "pgf-blur" package
}
% Title of Presentation
\title{Presentation Title}
% Definition of Title Frame
\setbeamertemplate{title page}
{
\begin{beamercolorbox}[center]{title}
\usebeamerfont{title}\inserttitle
\end{beamercolorbox}
}
% Definition of Font Color of Title (Used in "\setbeamertemplate{title page}")
\setbeamercolor{title}{fg=pink}
% Related
% https://tex.stackexchange.com/questions/315989
% https://tex.stackexchange.com/questions/401032
% https://tex.stackexchange.com/questions/493401
% https://tex.stackexchange.com/questions/315989
% https://tex.stackexchange.com/questions/446841
\begin{document}
% Title Frame
\setbeamercolor{background canvas}{bg=black}
\begin{frame}
\maketitle
\end{frame}
\setbeamercolor{background canvas}{bg=}
% Normal Frame
\begin{frame}{Frame Title}
Text
\end{frame}
\end{document}



