Latex beamer

追記: 2012/10/05

今の私のプレゼンツールはPPTに落ち着いております。
自分の用途以上に TeX Live が巨大だったため、
現在は W32 TeX (TeX の Win32 関連のバイナリ) のみインストールしております。
W32 TeX, http://w32tex.org/index-ja.html

LaTeX beamer

Latex beamer 便利ですね。

texlive(注1)を導入→付属のマニュアルを読みながら、サンプルを修正。
って感じでさくっとスライドができました。

texliveごと、是非とも。

texlive, http://tug.org/texlive/

(注1)texlive: texのあれこれが揃う凄いやつ

ソースコード

\documentclass[xcolor]{beamer}


\mode<presentation>
{
  %\usetheme{Warsaw}
  \usetheme{Rochester}
  
  % or ...
  \usecolortheme{dolphin}
  % or whatever (possibly just delete it)
}


\usepackage[english]{babel}
% or whatever

\usepackage[latin1]{inputenc}

%\setbeamercolor{title}{fg=black!80!black}

\title
{yaa.} % (optional)

\author[Author, Another] % (optional, use only with lots of authors)
{salmonsnare\inst{1}}

\date[Short Occasion] % (optional)
{2010/9/3 / @salmonsnare}

\subject{Talks}

\AtBeginSubsection[]
{
  \begin{frame}<beamer>{Outline}
    \tableofcontents[currentsection,currentsubsection]
  \end{frame}
}

\begin{document}

\begin{frame}
  \titlepage
\end{frame}

\begin{frame}{Outline}
  \tableofcontents
  % You might wish to add the option [pausesections]
\end{frame}


\section{Introduction}

\subsection[What is yaa?]{What is yaa?}

\begin{frame}{What is yaa?}
 
\begin{itemize}
    \item Yaa is yaa.
    \item Yaa is a simple greeting. 
    \begin{figure}[tb]\centering
\includegraphics[scale=.43]{./salmoncube01.JPG}
\caption{salmoncube}
\end{figure}


\end{itemize}
\end{frame}

\end{document}