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?
Document Classes ⇒ Bottom right Title on Slides
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Bottom right Title on Slides
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.yperionas wrote:[…] What you think is the problem?
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Bottom right Title on Slides
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):
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?
I have been using a structure for my presentation that I borrowed from another researcher (to get things going faster):
Code: Select all
\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}
Last edited by localghost on Thu Oct 31, 2013 9:43 pm, edited 1 time in total.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Bottom right Title on Slides
Possible. But since we don't have that modified theme present here, a further diagnose is very difficult.yperionas wrote:[…] Some kind of a modified theme version? Is this a possibility?
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10