beamerについて

覚え書き

documentclassで指定できるフォントサイズ

8pt, 9pt, 10pt, 11pt(デフォルト), 12pt, 14pt, 17pt, 20pt

thebibliography環境で項目の先頭を変更するには

目次の出力の制御

コマンド結果
\tableofcontentsすべての目次を表示
\tableofcontents[currentsection] 現在の節以外を薄く表示
\tableofcontents[currentsection,currentsubsection] 現在のsectionおよびsubsection以外を薄く表示
\tableofcontents[subsectionstyle=hide] subsectionをすべて非表示
\tableofcontents[subsectionstyle=show/show/hide] 現在のsection以外のsubsectionは非表示
\tableofcontents[subsectionstyle=show/shaded/hide] 現subsectionは表示,現sectionの他のsubsectionは薄く表示, 他のsectionのsubsectionは非表示

詳細は beameruserguideの「Adding a Table of Contents」を参照

付録の部分は総ページ数に入れたくない

\begin{frame}[noframenumbering]{タイトル}
...
\end{frame}

スライドを半分に分ける

\begin{columns}
  \column{.5\textwidth}
  \begin{corollary}
   corollary
  \end{corollary}

  \column{.5\textwidth}
  \begin{example}
   example
  \end{example}
\end{columns}

スライドの上から表示するには

\begin{frame}[t]{Title}
...  
\end{frame}

handoutで、特定のページを除外

  1. 該当ページにoverlay specification「handout:0」 を指定する。例えば,
          \begin{frame}<handout:0>[t]{タイトル}
  2. handout」オプションを指定して、typesetする。
          \documentclass[handout]{beamer}

節の最初に目次を表示する

\AtBeginSection[]{%
\begin{frame}{目次}
\tableofcontents[currentsection] \end{frame}}

URL(hyperlink)


リンク