Document Classesbeamer class

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
omkardpd
Posts: 86
Joined: Sun Feb 24, 2008 7:23 am

beamer class

Post by omkardpd »

Hi,

I am using a beamer class. In the printed output, how do I remove the bottom "bar" (in any theme) which has details about the name of the author and title of the presentation? Actually, the name and title are so long that they don't fit in the "bottom" bar. So I want to remove it completely.

Is there a way to modify structure of the title page or do I have to stick to the format given for any specific theme?

Thank you in advance.

Omkar

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

beamer class

Post by Stefan Kottwitz »

Hi Omkar,

try:

Code: Select all

\setbeamertemplate{footline}{}
or use the optional parameters of \title and \author like:

Code: Select all

\title[short title]{long title}
Stefan
LaTeX.org admin
omkardpd
Posts: 86
Joined: Sun Feb 24, 2008 7:23 am

Re: beamer class

Post by omkardpd »

Hi Stefen,

Yes, your suggestion has resolved my issue. Thank you.

I guess I had one more question, but not clearly framed. "Is there a way to modify structure of the title page or do I have to stick to the format given for any specific theme?" This is because I need to write the names of the authors in 2 columns. I tried "\column", "\block" commands. However, that does not allow in the title page. The beamer documentclass says write multiple authors under "\author" using "\and". It is not going to help me.

So, can we modify the structure for list of authors in the titlepage and still use "\frame{titepage}"?

Regards,

Omkar
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

beamer class

Post by localghost »

omkardpd wrote:[...] I guess I had one more question, but not clearly framed. "Is there a way to modify structure of the title page or do I have to stick to the format given for any specific theme?" This is because I need to write the names of the authors in 2 columns. I tried "\column", "\block" commands. However, that does not allow in the title page. The beamer documentclass says write multiple authors under "\author" using "\and". It is not going to help me. [...]
If you would clarify what exactly you want do, it would be much easier to help. For the present take a look at the following example and see if it fits to your needs.

Code: Select all

\documentclass[english,professionalfonts,smaller]{beamer}
\usetheme{Warsaw}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\usepackage{isodate}

\institute{User \and Moderator}
\author{omkardpd\inst{1} \and localghost\inst{2}}
\title{Presentation with more than one author}
\date{\today}

\begin{document}
  \begin{frame}[plain]
    \maketitle
  \end{frame}
\end{document}
omkardpd
Posts: 86
Joined: Sun Feb 24, 2008 7:23 am

Re: beamer class

Post by omkardpd »

Hi,
I think I am making things very confusing. Let me explain the structure of the title page that I want.

Title of the paper
Author :omkar
institute: XYZ
Column 1 : Advisors Column 2 : Examiners
Prof. one Prof. two
Prof. three Prof. four

Logo of the institute

Regards,

Omkar
omkardpd
Posts: 86
Joined: Sun Feb 24, 2008 7:23 am

beamer class

Post by omkardpd »

Hello,
Is it possible to customize the title page under the beamer class? The document explains the customization of the frames, but not sure if title page customization is possible. May I have some inputs on it?
Thanks all,
Suvarna
Post Reply