در فایل راهنمای بیمر انتقالهای مختلفی وجود داره:
\transblindshorizontal
Show the slide as if horizontal blinds were pulled away.
\transblindsvertical
Show the slide as if vertical blinds were pulled away.
\transboxin
Show the slide by moving to the center from all four sides.
\transboxout
Show the slide by showing more and more of a rectangular area that is centered on the slide center.
\transcover
Show the slide by covering the content that was shown before.
\transdissolve
Show the slide by slowly dissolving what was shown before.
\transfade
Show the slide by slowly fading what was shown before.
\transfly
Show the slide by letting the new content fly in before removing the old slide.
\transglitter
Show the slide with a glitter effect that sweeps in the specified direction.
\transpush
Show the slide by pushing what was shown before off the screen using the new content.
\transreplace
Replace the previous slide directly (default behaviour).
\transsplitverticalin
Show the slide by sweeping two vertical lines from the sides inward.
\transsplitverticalout
Show the slide by sweeping two vertical lines from the center outward.
\transsplithorizontalin
Show the slide by sweeping two horizontal lines from the sides inward.
\transsplithorizontalout
Show the slide by sweeping two horizontal lines from the center outward.
\transwipe
Show the slide by sweeping a single line in the specified direction, thereby “wiping out” the previous contents.
برای مثال اگه بخواین در یک فریمی استفاده کنین، کافیه یکی از دستورهای بالایی رو در فریم موردنظرتون بیارید. برای مثال:
\documentclass{beamer}
\usepackage{lipsum}
\begin{document}
\begin{frame}
This is a sample.
\end{frame}
\begin{frame}
\transboxin
\lipsum[1]
\end{frame}
\end{document}
در مثال بالا بستهٔ lipsum
و دستور مربوطه صرفاً برای پُرکردن صفحه از متن آورده شده. اسلاید دومتون دارای انتقال جعبهای خواهد بود.
می تونین برای همهٔ انتقالها مدتزمان (با آپشن duration
بر حسب ثانیه که پیشفرضش یک ثانیه است) و برای برخیهاشون بسته به مورد، جهت هم تعیین کنین (با آپشن direction
با زوایای ۰، ۹۰، ۱۸۰ و ۲۷۰. برای glitter
۳۱۵ هم داره). برای مثال:
\documentclass{beamer}
\usepackage{lipsum}
\begin{document}
\begin{frame}
This is a sample.
\end{frame}
\begin{frame}
\transboxin[duration=2]
\lipsum[1]
\end{frame}
\begin{frame}
\transwipe[duration=2, direction=90]
\lipsum[2]
\end{frame}
\end{document}