In beamer, when I start a slide with equation, then when the slide is full, the slide starts way below the slide title.
When I start a slide with text, then when the slide is full, it starts very minimally below the slide title. I like this to happen even for equation.
Entire source code for this example:
% Preview source code
%% LyX 2.3.3 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[english]{beamer}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
% this default might be overridden by plain title style
\newcommand\makebeamertitle{\frame{\maketitle}}%
% (ERT) argument for the TOC
\AtBeginDocument{%
\let\origtableofcontents=\tableofcontents
\def\tableofcontents{\@ifnextchar[{\origtableofcontents}{\gobbletableofcontents}}
\def\gobbletableofcontents#1{\origtableofcontents}
}
\makeatother
\usepackage{babel}
\begin{document}
\begin{frame}{A}
\[
1
\]
\begin{itemize}
\item {\Huge{}dd}{\Huge\par}
\item {\Huge{}dd}{\Huge\par}
\item {\Huge{}dd}{\Huge\par}
\item {\Huge{}dd}{\Huge\par}
\item {\Huge{}dd}{\Huge\par}
\item {\Huge{}dd}{\Huge\par}
\item {\Huge{}dd}{\Huge\par}
\end{itemize}
\end{frame}
\begin{frame}{B}
1
\begin{itemize}
\item {\Huge{}dd}{\Huge\par}
\item {\Huge{}dd}{\Huge\par}
\item {\Huge{}dd}{\Huge\par}
\item {\Huge{}dd}{\Huge\par}
\item {\Huge{}dd}{\Huge\par}
\item {\Huge{}dd}{\Huge\par}
\item {\Huge{}dd}{\Huge\par}
\end{itemize}
\end{frame}
\end{document}
This question may sound similar with Weird gap within box if I type equation instead of text but that question was the gap within a box.

