= Презентации в LaTeX -- beamer =

 * Пример простой презентации:
  {{{#!highlight latex
  \documentclass{beamer}

  % В классе beamer для большинства полей титульного слайда
  % есть необязательный параметр -- сокращённая версия поля.
  \title[Extracting $*@!#]{Some notes on extracting $*@!# gene from $*@!#philus}
  \subtitle[Thoroughly]{Using thorough extractor}
  \author[Me]{Me, The Great}
  \date[ICWB'2011]{MCMLII International Conference for Weird Biology 2011}
  \institute[FBB]{Faculty For Bioengineering and Bioinformatics}

  % \titlegraphic будет расположен где-то на титульном слайде
  \titlegraphic{\includegraphics{bigfancylogo}}

  % \logo будет расположен где-то в уголке на каждом слайте
  \logo{\includegraphics{smalllogo}}

  \begin{document}

  % слайд называется словом frame
  \begin{frame}
  \titlepage
  \end{frame}

  % у слайда есть два необязательных параметра в фигурых скобках:
  % заголовок и подзаголовок
  \begin{frame}{Introduction}{Why bother?}

  \begin{figure}
  \includegraphics{shit}
  \caption{Some serious shit}
  \end{figure}

  \begin{itemize}
  \item Some
  \item Serious
  \item Shit
  \end{itemize}

  \end{frame}
  \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}

 * \AtBeginSection{\begin{frame}{Outline}\tableofcontents[currentsection]\end{frame}}
 * \appendix

 * \againframe<overlay>{label}; \frame[label=label]{body}