Document Classes ⇒ Bottom right Title on Slides
Bottom right Title on Slides
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?
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
- 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
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Bottom right Title on Slides
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}
- 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?
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10