Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3319188
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:47:43+00:00 2026-05-17T22:47:43+00:00

I have some frames in my presentation, where I want to get rid of

  • 0

I have some frames in my presentation, where I want to get rid of my standard Headline/Footline since i need the space for figures, which i include using \includegraphics. These figures take the whole space. Now i want to inset the frame number at the bottom right corner.

Note. I use the standard theme with a custom headline/footline. A working minimum example can be found here:
http://rapidshare.com/files/429008846/Beamer.zip

This is the code:

\documentclass{beamer}
\usepackage{german}
\usepackage{graphicx}
\usepackage{color}
\usepackage{colortbl}
\usepackage{pgf}
%----------------------------------------------------------------------
%----------------------------------------------------------------------
%new color
\definecolor{Gray}{gray}{0.9}
\def\textboxcolor{Gray}
%----------------------------------------------------------------------
%----------------------------------------------------------------------
\setbeamertemplate{headline}{%
\hspace{0.01\textwidth}\begin{minipage}[t]{0.88\textwidth}
\vspace{0.1cm}
\begin{tabular}{p{0.5\textwidth}p{0.4\textwidth}p{0.1\textwidth}}
Organisation - Institution&%
&%
\includegraphics[width=1cm]{pictures/logos/logo_ohne_text.jpg}\\
\hline\\
\end{tabular}
\end{minipage}}
%----------------------------------------------------------------------
\setbeamertemplate{footline}{%
\hspace{0.01\textwidth}\begin{minipage}[t]{0.88\textwidth}%
\begin{tabular}{p{0.3\textwidth}p{0.35\textwidth}p{0.2\textwidth}p{0.1\textwidth}}%
\rowcolor[rgb]{0.8,0.8,0.8}\hline%
\raggedright\begin{minipage}{0.3cm}\includegraphics[width=0.30cm]{pictures/logos/quadrat.jpg}\end{minipage}\ \insertauthor &%
\centering \    \usebeamerfont{date in head/foot}\insertshortdate{}& &%
Seite \insertframenumber{}/\inserttotalframenumber\\
\hline\\
\end{tabular}
\end{minipage}}
%----------------------------------------------------------------------
%----------------------------------------------------------------------
\begin{document}
%----------------------------------------------------------------------
    \begin{frame}{Normal Frame}
      \begin{block}{Blocktitle}
        Text
      \end{block}
    \end{frame}
%----------------------------------------------------------------------
    \begin{frame}[plain]{Frame with Images}
       \begin{center}
            \includegraphics[height=0.5\textheight]{pictures/cf.png}
            \includegraphics[height=0.5\textheight]{pictures/cf.png}\\
            \includegraphics[height=0.5\textheight]{pictures/cf.png}
            \includegraphics[height=0.5\textheight]{pictures/cf.png}
        \end{center}
        \begin{pgfpicture}{0}{0}{12.8cm}{9.6cm}
            \pgfputat{\pgfxy(10.62,1.05)}{\pgfbox[left,base]{ %
              \tiny{\insertframenumber{}/\inserttotalframenumber}}}
        \end{pgfpicture}
    \end{frame}
%----------------------------------------------------------------------
\end{document}
%----------------------------------------------------------------------
%----------------------------------------------------------------------
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T22:47:43+00:00Added an answer on May 17, 2026 at 10:47 pm

    In my original answer, I requested some pictures, which you posted. Many thanks; those were very helpful.


    Your slide looks like it’s using the Graz theme [1]. I downloaded that and came up with this solution. Try this (replace my \usetheme{Graz} with whatever you’ve called your version, as perhaps you’ve modified it a little):

    \documentclass{beamer}
    \usepackage{pgf} % make sure you use this!
    \setbeamertemplate{navigation symbols}{}
    \usetheme{Graz}
    
    \pgfdeclareimage[height=0.5cm]{university-logo}{images/uni_logo}
    \logo{\pgfuseimage{university-logo}}
    
    \begin{document}
    
    \begin{frame}[plain]{Test slide}
      \begin{pgfpicture}{0}{0}{12.8cm}{9.6cm} % see Note 1
    
        \pgfputat{\pgfxy(10.62,1.05)}{\pgfbox[left,base]{ % see Note 2
                  \tiny{\insertframenumber{}/\inserttotalframenumber}}}
    
       \pgfputat{\pgfxy(0.4,1.1)}{\pgfimage[width=0.95\textwidth]{figure}} % see Note 3
    
      \end{pgfpicture}
    \end{frame}
    
    \end{document}
    

    Note 1: If you’re unfamiliar with pgf[2], the syntax is:

    \begin{pgfpicture}{start x}{start y}{end x}{end y}
    

    So you could probably get away with just a pgf picture with {0}{0}{12.8}{1.05}, which would fill the whole width (0 -> 12.8cm x width) and just give you enough for the footer page number (0 -> 1.05cm y height).

    However, if you leave it, you can use pgf to place your images as well. It’s up to you. It doesn’t affect anything to leave it the size of the whole frame.

    Note 2: Alter these coordinates however you’d like. You can flip back and forth between a default slide and this one to tweak those coordinates until there is no discernible difference in the page #/tot pages listing between the two.

    One note is that if you start adding text and what have you to the frame, there is a slight chance that the placement of the pgfbox might get knocked around. If it does this, just get your frame how you like it with the figures and redo the coordinates of \pfgputat to get it where you want.

    Note 3: I took a screenshot of the figures from your link above and used pgf to place it in my frame. Your title is left aligned whereas mine is in the default centered position, but overall hopefully this looks like what you want (the LaTeX commands above generated this): IMAGE.

    Like I said, just tweak the various coordinates to get everything where you want.


    Update 11/5:

    As I suggested in Note 2, adding things to the frame might mess up the placement. I have looked at your updated code and made pgf play nicely. It probably should be considered a “hack” since all it’s doing is overcoming the downshift caused by the \includegraphics command. Essentially, it looks like pgfbox can’t reside where there are graphics placed with this method so you have to create a box “artificially” high up on the slide to force it to appear… but this works! I actually tweaked it so that if you go into full screen mode, there should be no shift whatsoever between “Seite 1/2” on the first slide and “2/2” on the second. Here it is:

    \begin{pgfpicture}{0}{0}{12.8cm}{9.6cm}
        \pgfputat{\pgfxy(10.585,9.74)}{\pgfbox[left,base]{ %
          \tiny{\insertframenumber{}/\inserttotalframenumber}}}
    \end{pgfpicture}
    

    Let me know how that goes!


    [1] www . ist . tugraz . at/staff/weiglhofer/misc/tugbeamer/

    [2] PGF manual on ctan: www . ctan . org/tex-archive/graphics/pgf in base/doc

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just need some quick guidance - I have a main frame, and I want
We have some web pages which have two frames, with one frame in the
i have found some ways but they are actually reading frames and applying transition
I'm having some trouble indexing data.frames in R. I'm an R beginner. I have
I'm trying to do some data manipulation in R. I have 2 data frames,
I'm using UIImageView's animationImages to show some frames over a second. I want to
I have some video that I would like to convert to images of frames
I have written some code which produces simple animations based on cycling through a
I have some code (Forms/Frames) in the repository, is there anyway to disable the
I was making a small thing in HTML and basically I have some frames

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.