Skip to content

Instantly share code, notes, and snippets.

@termoshtt
Created December 23, 2014 15:33
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save termoshtt/5c79107061d004d86d35 to your computer and use it in GitHub Desktop.
Save termoshtt/5c79107061d004d86d35 to your computer and use it in GitHub Desktop.
tutorial for Beamer
\documentclass[12pt, unicode]{beamer}
\usetheme{CambridgeUS}
\usepackage{luatexja}
\title{Beamer Tutorial}
\author{@termoshtt}
\date[2014/12/21]{\TeX \& \LaTeX Advent Calender 2014 12/21}
\institute{某大学院 物理っぽい研究室}
% [..]に省略名が書ける
\begin{document}
\frame{\maketitle}
\begin{frame}{ブロック環境を意味のまとまりとして使う}
\begin{block}{概略}
\begin{itemize}
\item usethemeでテーマを指定すると\structure{ブロックの領域}が装飾される
\item block, alertblock, exampleblock環境がある
\end{itemize}
\end{block}
\begin{alertblock}{注意}
\begin{itemize}
\item blockタイトルないと\alert{コンパイルエラー}になる
\end{itemize}
\end{alertblock}
\end{frame}
\begin{frame}{columnsを使用した配置}
\begin{block}{top block}
...
\end{block}
\begin{columns}[c] % 中央をあわせる
%\begin{columns}[t] % 上辺をあわせる
\begin{column}{0.3\textwidth} % 横幅の30%
\includegraphics[width=\columnwidth]{figure/fig1.pdf}
\end{column}
\begin{column}{0.65\textwidth} % 横幅の65%
\begin{block}{right block}
\begin{itemize}
\item<1-> 1以降出現するコメント
\item<2-> 2以降出現するコメント
\end{itemize}
\end{block}
\end{column}
\end{columns}
\uncover<3>{
\begin{block}{bottom block}
かわいいおんなのこだと思った?
\end{block}
}
\uncover<4>{
\begin{block}{bottom block}
残念さやかちゃんでした
\end{block}
}
\end{frame}
\frame{\centering \Large Thank you for your attention !!}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment