General ⇒ Beamer slides
Beamer slides
I did presentation with slides. These slides are being changed automatically one by one but this presentation stop on the last slide. I would like make loop (from last to first) . How ?
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Beamer slides
Hi, your question is hard to answer, because i do not understand the problem.
Did you make animations in any kind? Well, have a look at animate. media9 might be of interest to.
If this doesn't help you, please provide more information, maybe in form of a self-contained and minimal example.
Best regards
Johannes
Did you make animations in any kind? Well, have a look at animate. media9 might be of interest to.
If this doesn't help you, please provide more information, maybe in form of a self-contained and minimal example.
Best regards
Johannes
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Beamer slides
Code: Select all
Code, edit and compile here:
\lyxframeend{}\lyxframe{}\transblindsvertical\center\setbeamercovered{transparent}\transduration{2}\includegraphics[scale=.1]{cekin1.JPG}\lyxframeend{}
I would like go to the first slide automatically but this presentation stop.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Beamer slides
Since it seems that you use LyX, please prepare a proper LyX minimal example.
And we would appreciate it very much if you choose the right forum for questions more carefully.
Thorsten
And we would appreciate it very much if you choose the right forum for questions more carefully.
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
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Beamer slides
I still don't have any additional information. Are you using LyX? That would be worth mentioning.
Your example is not compilable.
Some things to say, you can put a navigation bar in your slides (please see the beamer-manual for more information) or manually add a link to the first slide. My pdf viewer views the first slide again, just as if the whole pdf would be on a roll.
Your example is not compilable.
Some things to say, you can put a navigation bar in your slides (please see the beamer-manual for more information) or manually add a link to the first slide. My pdf viewer views the first slide again, just as if the whole pdf would be on a roll.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Re: Beamer slides
Yes I'm using Lyx but in Kile this code works too.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Beamer slides
Which code? I can't see any working code example.butek wrote:Yes I'm using Lyx but in Kile this code works too.
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
Beamer slides
Ok this whole code
Code: Select all
Code, edit and compile here:
% Podgląd kodu źródłowego%% LyX 2.0.5.1 created this file. For more info, see http://www.lyx.org/.%% Do not edit unless you really know what you are doing.\documentclass[12pt,polish]{beamer}\usepackage[T1]{fontenc}\usepackage[utf8]{inputenc}\setcounter{secnumdepth}{3}\setcounter{tocdepth}{3}\makeatletter%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.% this default might be overridden by plain title style\newcommand\makebeamertitle{\frame{\maketitle}}%\AtBeginDocument{\let\origtableofcontents=\tableofcontents\def\tableofcontents{\@ifnextchar[{\origtableofcontents}{\gobbletableofcontents}}\def\gobbletableofcontents#1{\origtableofcontents}}\long\def\lyxframe#1{\@lyxframe#1\@lyxframestop}%\def\@lyxframe{\@ifnextchar<{\@@lyxframe}{\@@lyxframe<*>}}%\def\@@lyxframe<#1>{\@ifnextchar[{\@@@lyxframe<#1>}{\@@@lyxframe<#1>[]}}\def\@@@lyxframe<#1>[{\@ifnextchar<{\@@@@@lyxframe<#1>[}{\@@@@lyxframe<#1>[<*>][}}\def\@@@@@lyxframe<#1>[#2]{\@ifnextchar[{\@@@@lyxframe<#1>[#2]}{\@@@@lyxframe<#1>[#2][]}}\long\def\@@@@lyxframe<#1>[#2][#3]#4\@lyxframestop#5\lyxframeend{%\frame<#1>[#2][#3]{\frametitle{#4}#5}}\def\lyxframeend{} % In case there is a superfluous frame end%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.\usetheme{CambridgeUS}\definecolor{crimson}{rgb}{0.862745, 0.0784314, 0.235294}\definecolor{gainsboro}{rgb}{0.862745, 0.862745, 0.862745}\definecolor{darkseagreen}{rgb}{0.560784 0.737255 0.560784}\setbeamercolor{title}{fg=black,bg=darkseagreen}\setbeamercolor{frametitle}{fg=black,bg=darkseagreen}\setbeamercolor{background canvas}{bg=gainsboro!40!white}\setbeamercolor{block body}{fg=black,bg=darkseagreen!40!white}\setbeamercolor{block title}{fg=crimson!40!black,bg=darkseagreen}\setbeamercolor{item}{fg=crimson,bg=crimson}\setbeamertemplate{background canvas}{\includegraphics[width=\paperwidth]{FRONT.png}}
Beamer slides
This is simple presentation with 2 slides.
From slide 1 to slide 2 presentation go immediately and stop but I would like make loop , I would like that this presentation could go from 1->2->1->2->1 ... (without stop). Is it clear now ?
From slide 1 to slide 2 presentation go immediately and stop but I would like make loop , I would like that this presentation could go from 1->2->1->2->1 ... (without stop). Is it clear now ?
Code: Select all
Code, edit and compile here:
\documentclass{beamer}\usepackage[utf8]{inputenc}\usepackage{default}\begin{document}\begin{frame}\transblindsvertical\center\setbeamercovered{transparent}\transduration{2}Slide 1\end{frame}\begin{frame}\transblindsvertical\center\setbeamercovered{transparent}\transduration{2}Slide 2\end{frame}\end{document}
Beamer slides
I found solution http://tex.stackexchange.com/questions/ ... omatically