如何从乳胶侧边栏中删除作者姓名?

Bha*_*rma 6 latex author beamer

我正在用 Latex 编写演示文稿(在 overleaf.com 中)。我不想在下面给出的投影仪右侧的垂直栏中添加作者姓名,

封面

我还提供了该标题页的乳胶代码,如下所示:

\documentclass[14pt,aspectratio=169]{beamer}
\usetheme{Marburg}
\graphicspath{{Arquivos/}}
\usepackage[utf8]{inputenc}
\usepackage[portuguese]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}

\title{Image and Audio Hybrid Watermarking against Synchronization Attacks}
\author{Bhavneet Sharma (31703102)\\[\baselineskip] \small{{Supervised By}
  \and\\Prof. Dr. Mayank Dave}}
%\setbeamercovered{transparent} 
\institute{\includegraphics[width=2cm, height=1cm]{NITKKR_logo.png}
\\National Institute of Technology, Kurukshetra
}
\date{September 22, 2019} 
%\subject{} 
\begin{document}

\begin{frame}
\titlepage
\end{frame}
Run Code Online (Sandbox Code Playgroud)

在垂直条中,仅需要第一页的标题,然后以简介开头。

所需输出

我不知道该怎么做。帮助解决这个问题。

Ala*_*got 3

在投影仪中,您可以使用替代的较短作者姓名(演示文稿标题或机构也是如此)。

\author[Short name]{Author loooong name}
Run Code Online (Sandbox Code Playgroud)

如果这样做,短名称将在侧面(或底部,具体取决于您的主题)栏中使用。因此,为了解决您的问题,声明一个空的短名称就足够了。

\documentclass[14pt,aspectratio=169]{beamer}
\usetheme{Marburg}
\graphicspath{{Arquivos/}}
\usepackage[utf8]{inputenc}
\usepackage[portuguese]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}

\title{Image and Audio Hybrid Watermarking against Synchronization Attacks}
\author[]{Bhavneet Sharma (31703102)\\[\baselineskip] \small{{Supervised By}
  \and\\Prof. Dr. Mayank Dave}}
%\setbeamercovered{transparent} 
\institute{%\includegraphics[width=2cm, height=1cm]{NITKKR_logo.png}\\
  National Institute of Technology, Kurukshetra
}
\date{September 22, 2019} 
%\subject{} 
\begin{document}

\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\section{This is section 1}
\end{frame}
\begin{frame}
\section{and this is section 2}
\titlepage
\end{frame}
\end{document}
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述