3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

環境

High Sierra 10.13.6

Beamerのインストール

LaTeX Beamerのインストール方法のメモと注意点
上記のサイトからBeamerのサイトに飛んで, latex-beamer, pgf, xcolorの最新版をダウンロード. 解凍して, ファイル名をそれぞれBeamer, pgf, xcolorにする.

TEXMFHOMEの利用
$ kpsewhich -var-value TEXMF
でTEXMFHOMEのありそうな場所を見つける.

$ kpsewhich -var-value TEXMF

bash
 {/Users/hogeuser/Library/texlive/2016/texmf-config,/Users/hogeuser/Library/texlive/2016/texmf-var,/Users/hogeuser/Library/texmf,!!/usr/local/texlive/2016/texmf-config,!!/usr/local/texlive/2016/texmf-var,!!/usr/local/texlive/texmf-local,!!/usr/local/texlive/2016/texmf-dist}

$ ls /usr/local/texlive/2016/

bash
   LICENSE.CTAN		     index.html          texmf-config
   LICENSE.TL		    install-tl		    texmf-dist
   README			    install-tl.log		texmf-var
   README.usergroups	readme-html.dir		texmf.cnf
   bin			        readme-txt.dir		texmfcnf.lua
   doc.html		        release-texlive.txt	tlpkg

ここのtexm-distTEXMFHOMEに値するらしいので, ここの
$ /usr/local/texlive/2016/texmf-dist/tex/latex
Beamer, pgf, xcolorを配置する.

そして
$ sudo mktexlsr

これでめでたく使える.

サンプル

tex
   \documentclass[dvipdfmx,12pt]{beamer}% dvipdfmxしたい
   \usepackage{bxdpx-beamer}% dvipdfmxなので必要
   \usepackage{pxjahyper}% 日本語で'しおり'したい
   \usepackage{minijs}% min10ヤダ
   \usepackage{graphicx}% 各種画像の張り込み
   \usetheme{CambridgeUS}
   \usepackage{url}
   
   \title{\TeX/\LaTeX 入門講座}
   \author{Jabelic}
   \date{\today}
   % ..に省略名が書ける
   \institute[IMS/MS]{明治大学総合数理学部現象数理学科}
   
   \begin{document}
   
   \begin{frame}
       \titlepage 
   \end{frame}
   
   \begin{frame}%<beamer>
           \frametitle{Agenda}
           \tableofcontents
   \end{frame}
   \begin{frame}{\TeX/\LaTeX\mbox{とは}}
   \begin{center}
   hoge
   
   huga
   \end{center}
   \end{frame}
   \section{はじめに}
   \begin{frame}{何を問題としているか}
   \begin{itemize}
   \item こんなこと
   \item あんなこと
   \item しかも\alert{そんなことまで}
   \end{itemize}
   \end{frame}
   
   
   \section{手始めに}
   
   \subsection{Blockの使い方}
   \begin{frame}{さまざまなBlock}
   \begin{block}{ブロック} 
   これがblock環境だ.
   \end{block}
   \begin{example}
   これはexample blockである.
   \end{example}
   
   \pause
   \begin{alertblock}{警告ブロック}
   alert block環境ではこうなる.
   \end{alertblock}
   \cite{1}
   \end{frame}
   
   \section{}
   \subsection{}
   \begin{frame}{参考文献}
   \begin{thebibliography}{99}
   \bibitem{1}\url{https://www.isc.meiji.ac.jp/~mizutani/tex/link_slide/beamer.html}
   \bibitem{2}\url{https://qiita.com/zr_tex8r/items/69e8cc32038ff29f5ac3}
   \end{thebibliography}
   \end{frame}
   
   \section{}
   \subsection{}
   \frame{\centering \Large Thank you for your attention !!}
   
   \end{document}

Beamerでプレゼンテーションをするのサンプルを参考にした.

参考文献

Beamer V3.0 を使ってみる

Beamerでプレゼンテーションをする

Beamerによるプレゼンテーション作成Turtorial

Beamerについての備忘録

3
1
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?