Презентации в LaTeX -- beamer
- Пример простой презентации:
1 \documentclass{beamer} 2 3 % В классе beamer для большинства полей титульного слайда 4 % есть необязательный параметр -- сокращённая версия поля. 5 \title[Extracting $*@!#]{Some notes on extracting $*@!# gene from $*@!#philus} 6 \subtitle[Thoroughly]{Using thorough extractor} 7 \author[Me]{Me, The Great} 8 \date[ICWB'2011]{MCMLII International Conference for Weird Biology 2011} 9 \institute[FBB]{Faculty For Bioengineering and Bioinformatics} 10 11 % \titlegraphic будет расположен где-то на титульном слайде 12 \titlegraphic{\includegraphics{bigfancylogo}} 13 14 % \logo будет расположен где-то в уголке на каждом слайте 15 \logo{\includegraphics{smalllogo}} 16 17 \begin{document} 18 19 % слайд называется словом frame 20 \begin{frame} 21 \titlepage 22 \end{frame} 23 24 % у слайда есть два необязательных параметра в фигурых скобках: 25 % заголовок и подзаголовок 26 \begin{frame}{Introduction}{Why bother?} 27 28 \begin{figure} 29 \includegraphics{shit} 30 \caption{Some serious shit} 31 \end{figure} 32 33 \begin{itemize} 34 \item Some 35 \item Serious 36 \item Shit 37 \end{itemize} 38 39 \end{frame} 40 \end{document}
- \pause
overlay spec: \item<4->, \uncover<4->{text}, \only<4->{text}, \alert<-3>{text}, \begin{uncoverenv}<2>, \color<>, \text??, \structure
- \alert (по умолчанию, красный), \structure (по умолчанию жирный)
- \usetheme
- темы: default, Boadilla, Madrid, Pittsburgh, [height=7mm]Rochester, Copenhagen, Warsaw, Singapore, Malmoe
Не успели:
- \section, \subsection (снаружи от frame)
- \begin{block}{title}, alertblock, exampleblock (theorem, definition, example, proof, newtheorem{t}[samenum]{title}[withinnum]), beamercolorbox{color}
- \begin{columns}, \column{.5\textwidth} или \begin{column}{width}
- \useoutertheme{}, \useinnertheme{}, \usefonttheme{},
- \usecolortheme[RGB={R,G,B}]{structure}
- \useoutertheme{}, \useinnertheme{}, \usefonttheme{},
\AtBeginSection{\begin{frame}{Outline}\tableofcontents[currentsection]\end{frame}}
- \appendix
\againframe<overlay>{label}; \frame[label=label]{body}