Document ClassesBottom right Title on Slides

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
yperionas
Posts: 8
Joined: Fri Dec 03, 2010 6:56 pm

Bottom right Title on Slides

Post by yperionas »

Greetings to all!

The problem I am having is that the title of the presentation at the bottom right corner (next to page numbering) does not change when I compile the .tex file.

I have already included a section \title{Presentation name}.

Note: I am using the structure of a previous presentation. However, the new title that I have inserted is not updated but each of the slides keep the previous one.

What you think is the problem?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

Bottom right Title on Slides

Post by localghost »

yperionas wrote:[…] What you think is the problem?
Perhaps the fact that you don't give useful information at the moment because you don't show us what you are doing. Hence you should prepare a self-contained and minimal example in order to avoid speculations and guesswork.


Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
yperionas
Posts: 8
Joined: Fri Dec 03, 2010 6:56 pm

Bottom right Title on Slides

Post by yperionas »

Hello Thorsten and thanx for your reply. I have found the solution to my problem although I will elaborate on it for others that are new with LaTeX presentation.

I have been using a structure for my presentation that I borrowed from another researcher (to get things going faster):

Code: Select all

Code, edit and compile here:
\documentclass[xcolor={dvipsnames,table}]{beamer}
\mode<presentation>
{
\usetheme{Warsaw}
\useoutertheme{split} % <<<<<<<
\setbeamercovered{transparent}
}
\usepackage[french]{babel}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{times}
\usepackage[T1]{fontenc}
\usepackage{hyperref}
\usepackage{url}
\urlstyle{sf}
\setbeamertemplate{items}[triangle]
%-------------- TITLE PAGE---------------
\title{Problem with Title}
\author{Author}
\date{Date}
\institute{Institute}
%----------------------------------------
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\begin{frame}[plain]{Presentation Outline}
\tableofcontents
\end{frame}
\section{Section title 1}
\subsection{Subsection title 1}
\section{Section title 2}
\subsection{Subsection title 2}
\begin{frame}{Problem with title bottom right of this slide}
\end{frame}
\end{document}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
It seems that the "outer theme" was not of one of the standard ones (see here). Thus, when I changed the presentation title, the theme was remaining unchanged! Instead a theme called "mysplit" was used (?). Some kind of a modified theme version? Is this a possibility?
Last edited by localghost on Thu Oct 31, 2013 9:43 pm, edited 1 time in total.
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

Bottom right Title on Slides

Post by localghost »

yperionas wrote:[…] Some kind of a modified theme version? Is this a possibility?
Possible. But since we don't have that modified theme present here, a further diagnose is very difficult.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Post Reply