|
|
Subject: Re: A different logo on each frame? - msg#00018
List: tex.latex.beamer.general
Am Dienstag, 19. Februar 2008 19:06:22 schrieb Alok Singhal:
> Ideally I would like to use
> \logo in a way that it keeps changing on each slide, but any other
> solution is also welcome. I am thinking of putting this 'dynamic
> logo' in the bottom left part of my presentation, but that is not
> critical.
I have not encountered any problems with a straightforward use of TikZ and
\insertframenumber (dynamic, no hardcoding needed):
\documentclass{beamer}
\usepackage{tikz}
\logo{%
\begin{tikzpicture}
\draw (0,0) circle (1cm);
\draw (0,0) -- node[auto] {\insertframenumber~/~\inserttotalframenumber}
(\insertframenumber*360/\inserttotalframenumber:1);
\end{tikzpicture}}
\begin{document}
\foreach \n in {1,2,...,20}{%
\begin{frame}
\frametitle{Frame no. \n}
\end{frame}
}
\end{document}
--
Ciao, / /
/--/
/ / ANS
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
Was this page helpful?
Thread at a glance:
Previous Message by Date:
click to view message preview
plain notes
Hello List, I'm preparing a presentation and I'm using the show
notes option to prepare my notes. I was wondering if it possible to
remove the header and inset image on the notes page? I think it has to
do with the plain option, but I cannot figure out how to set it. I
just want my notes pages to be simple bullets and text - no header.
Thanks,Sam Stewart
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/_______________________________________________
Latex-beamer-users mailing list
Latex-beamer-users@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/latex-beamer-users
Next Message by Date:
click to view message preview
Re: A different logo on each frame?
On 20/02/08: 09:59, Hans Meine wrote:
> I have not encountered any problems with a straightforward use of TikZ and
> \insertframenumber (dynamic, no hardcoding needed):
>
> \documentclass{beamer}
> \usepackage{tikz}
>
> \logo{%
> \begin{tikzpicture}
> \draw (0,0) circle (1cm);
> \draw (0,0) -- node[auto] {\insertframenumber~/~\inserttotalframenumber}
> (\insertframenumber*360/\inserttotalframenumber:1);
> \end{tikzpicture}}
Thanks! This is what I needed. I should have looked at the manual
more closely.
-Alok
--
Alok Singhal * *
Graduate Student, dept. of Astronomy * * *
University of Virginia
http://www.astro.virginia.edu/~as8ca/ * *
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
Previous Message by Thread:
click to view message preview
Re: A different logo on each frame?
Alok Singhal skrev:
> Hi,
>
> I have a small image, created in tikz, and I want to use that as a
> logo in my presentation. That is fairly easy, but now I want to be
> able to 'animate' the logo by rotating it by a few degrees on the
> frames (so that it completes one rotation by the time the presentation
> is over). I.e., the first slide has the image unrotated, the second
> slide has it rotated by 360/(n-1) degrees (where n is the number of
> frames in my presentation), and so on. Ideally I would like to use
> \logo in a way that it keeps changing on each slide, but any other
> solution is also welcome. I am thinking of putting this 'dynamic
> logo' in the bottom left part of my presentation, but that is not
> critical.
>
> I don't mind doing things 'by hand', so it's OK if I have to hard-code
> the value of n and the frame number in calculating the amount of
> rotation needed.
>
> If there is a way to do it, please let me know.
\documentclass{beamer}
\usepackage{tikz}
\newcounter{ang}
\setcounter{ang}{0}
\begin{document}
\foreach \n in {1,2,...,11}{%
\begin{frame}
\frametitle{Frame no. \n}
\begin{tikzpicture}
\draw (0,0) circle (2cm);
\draw (0,0) -- (\theang:2);
\end{tikzpicture}
\addtocounter{ang}{36}
\end{frame}
}
\end{document}
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
Next Message by Thread:
click to view message preview
Re: A different logo on each frame?
On 20/02/08: 09:59, Hans Meine wrote:
> I have not encountered any problems with a straightforward use of TikZ and
> \insertframenumber (dynamic, no hardcoding needed):
>
> \documentclass{beamer}
> \usepackage{tikz}
>
> \logo{%
> \begin{tikzpicture}
> \draw (0,0) circle (1cm);
> \draw (0,0) -- node[auto] {\insertframenumber~/~\inserttotalframenumber}
> (\insertframenumber*360/\inserttotalframenumber:1);
> \end{tikzpicture}}
Thanks! This is what I needed. I should have looked at the manual
more closely.
-Alok
--
Alok Singhal * *
Graduate Student, dept. of Astronomy * * *
University of Virginia
http://www.astro.virginia.edu/~as8ca/ * *
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
|
|