Page Layoutbeamer | Formatting of Slides

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
erotavlas
Posts: 19
Joined: Thu Aug 04, 2011 3:53 pm

beamer | Formatting of Slides

Post by erotavlas »

Hi,

I have two question about the beamer formatting. I have redefined the slide environment with

Code: Select all

\newenvironment{myslide}[1] 
{\begin{frame}{\begin{center}#1\vskip-10pt\end{center}}}{\end{frame}}
but I don't know how I can reduce the distance between the text of the slide and the title and from it to the top margin os the slide. The same from the text of the slide and the bottom margin.
I have tried by modifying the parameters of the theme, but without success.

Code: Select all

\usetheme[headheight=0.005cm,footheight=0.001cm]{Goettingen}
How can I do?
The second question is related to the links that are automatic generate by latex and depending on theme are placed on the left or right side of each slide. In the case of Goettingen theme, they are placed on the right side. The problem is that if I try to click on of these link, then I redirect to the wrong slide.
Each link is generated by adding the \section*{} command

Thank you

Here is my complete code

Code: Select all

\documentclass[9pt]{beamer}

\usepackage{amsmath,amssymb,amsfonts}
\usepackage{amsthm}
\usepackage{graphicx}
\usepackage{graphics}
\usepackage{url}
\usepackage{hyperref}
\usepackage{setspace}

\graphicspath{{figure/}}

\newenvironment{myslide}[1] 
{\begin{frame}{\begin{center}#1\vskip-10pt\end{center}}}{\end{frame}}

\mode<presentation>
{
\usetheme[headheight=0.005cm,footheight=0.001cm]{Goettingen}
\usecolortheme{lily}
\setbeamertemplate{theorem}[ams style]
\setbeamertemplate{theorems}[numbered]
}

\setbeamertemplate{footline}[frame number]
\setbeamersize{text margin left=0.15cm,text margin 
\begin{document}

\section*{start}
\section*{References}
\begin{myslide} {References}
\bibliographystyle{plain}
\bibliography{bibliography} 
\end{myslide}

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

Post Reply