Advertisement
mayankjoin3

mwe-animation.tex

Jan 13th, 2025
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.31 KB | None | 0 0
  1. \documentclass{beamer}
  2.  
  3. \usepackage{tikz}
  4. \usepackage{animate}
  5.  
  6. \title{Beamer Animation Commands}
  7. \author{Your Name}
  8. \date{\today}
  9.  
  10. \begin{document}
  11.  
  12. \frame{\titlepage}
  13.  
  14. % Frame Overlays with \pause
  15. \begin{frame}{Frame Overlays with \textbackslash pause}
  16.    This is the first line. \pause
  17.    This is the second line. \pause
  18.    This is the third line.
  19. \end{frame}
  20.  
  21. % Itemize/Enumerate with Overlay Specifications
  22. \begin{frame}{Itemize with Overlay Specifications}
  23.    \begin{itemize}
  24.        \item<1-> First item
  25.        \item<2-> Second item
  26.        \item<3-> Third item
  27.    \end{itemize}
  28. \end{frame}
  29.  
  30. % General Overlay Specifications
  31. \begin{frame}{General Overlays}
  32.    \onslide<1->{This text appears on the first overlay.}
  33.    \onslide<2->{This text appears on the second overlay.}
  34. \end{frame}
  35.  
  36. % Highlight Changes with \only
  37. \begin{frame}{Highlight Changes with \textbackslash only}
  38.    \only<1>{Content for overlay 1}
  39.    \only<2>{Content for overlay 2}
  40. \end{frame}
  41.  
  42. % Smooth Transitions with \uncover
  43. \begin{frame}{Smooth Transitions with \textbackslash uncover}
  44.    \uncover<1->{This will appear on overlay 1.}
  45.    \uncover<2->{This will appear on overlay 2.}
  46. \end{frame}
  47.  
  48. % Text Highlighting with \alert
  49. \begin{frame}{Text Highlighting with \textbackslash alert}
  50.    \alert<1>{Highlighted text for overlay 1.}
  51.    \alert<2>{Highlighted text for overlay 2.}
  52. \end{frame}
  53.  
  54. % Transition Effects for Entire Frames
  55. \begin{frame}[<+->]{Transition Effects for Entire Frames}
  56.    \begin{itemize}
  57.        \item First item
  58.        \item Second item
  59.        \item Third item
  60.    \end{itemize}
  61. \end{frame}
  62.  
  63. % Animated Figures
  64. \begin{frame}{Animated Figures}
  65.    \includegraphics<1>[width=0.8\textwidth]{figure1.png} % Replace with your own image
  66.     \includegraphics<2>[width=0.8\textwidth]{figure2.png} % Replace with your own image
  67. \end{frame}
  68.  
  69. % TikZ Animations
  70. \begin{frame}{TikZ Animations}
  71.    \begin{tikzpicture}
  72.        \draw<1>[red] (0,0) circle (1cm);
  73.        \draw<2>[blue] (0,0) rectangle (2cm, 1cm);
  74.    \end{tikzpicture}
  75. \end{frame}
  76.  
  77. % Advanced Animations with animate package
  78. \begin{frame}{Advanced Animations with animate Package}
  79.    \animategraphics[loop,autoplay,width=0.8\textwidth]{10}{frame_}{1}{10} % Replace with your animation frames
  80. \end{frame}
  81.  
  82. \end{document}
  83.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement