差分
このページの2つのバージョン間の差分を表示します。
| 両方とも前のリビジョン前のリビジョン次のリビジョン | 前のリビジョン | ||
| latex:beamer:uec [2017/05/18 17:44] – [UEC] watalu | latex:beamer:uec [2022/04/07 15:21] (現在) – [UEC] watalu | ||
|---|---|---|---|
| 行 1: | 行 1: | ||
| ===== UEC ==== | ===== UEC ==== | ||
| - | UEC Beamerで検索していたら[[http:// | + | UEC Beamerで検索していたら[[http:// |
| - 青っぽい色を指定したい | - 青っぽい色を指定したい | ||
| 行 7: | 行 7: | ||
| だからouter themeとcolor themeだけを用意しました。 | だからouter themeとcolor themeだけを用意しました。 | ||
| - | 今はBoardillaテーマと組み合わせて使っていて、他のテーマとの組み合わせはまだ試していませんが、とりあえず公開します。 | + | 今はBoardillaテーマと組み合わせて使っていて、他のテーマとの組み合わせはまだ試していません。 |
| - | {{ : | + | 半端な状態ですが、もし他にも使う方がいたらと、2017年にとりあえず公開したのが、{{ : |
| + | 2022年にこれを更新して、{{ : | ||
| 手伝ってくださった久保田大樹さんに感謝しつつ。 | 手伝ってくださった久保田大樹さんに感謝しつつ。 | ||
| + | |||
| ==== Outer Theme ==== | ==== Outer Theme ==== | ||
| 行 99: | 行 101: | ||
| \definecolor{UECschoolcolor}{RGB}{26, | \definecolor{UECschoolcolor}{RGB}{26, | ||
| \definecolor{UECblue}{RGB}{26, | \definecolor{UECblue}{RGB}{26, | ||
| - | \definecolor{UECbluelight1}{RGB}{52, | ||
| - | \definecolor{UECbluelight2}{RGB}{78, | ||
| - | \definecolor{UECbluedark1}{RGB}{0, | ||
| - | \definecolor{ricegray}{RGB}{94, | ||
| - | \definecolor{royalblue}{RGB}{65, | ||
| \definecolor{UECalmostblack}{RGB}{38, | \definecolor{UECalmostblack}{RGB}{38, | ||
| + | \definecolor{dodgerblue}{RGB}{30, | ||
| \setbeamercolor*{normal text}{fg=UECalmostblack, | \setbeamercolor*{normal text}{fg=UECalmostblack, | ||
| 行 110: | 行 108: | ||
| \setbeamercolor*{structure}{fg=UECschoolcolor} | \setbeamercolor*{structure}{fg=UECschoolcolor} | ||
| - | \setbeamercolor*{palette primary}{use=structure, | + | \setbeamercolor*{palette primary}{use=structure, |
| - | \setbeamercolor*{palette secondary}{use=structure, | + | \setbeamercolor*{palette secondary}{use=structure, |
| - | \setbeamercolor*{palette tertiary}{use=structure, | + | \setbeamercolor*{palette tertiary}{use=structure, |
| \setbeamercolor*{palette quaternary}{fg=white, | \setbeamercolor*{palette quaternary}{fg=white, | ||
| 行 130: | 行 128: | ||
| <all> | <all> | ||
| </ | </ | ||
| + | |||
| + | ==== Sample ==== | ||
| + | < | ||
| + | \documentclass[dvipdfmx, | ||
| + | |||
| + | \usetheme{Boadilla} | ||
| + | \useoutertheme{UEC} | ||
| + | \usecolortheme{UEC} | ||
| + | %\usecolortheme{UECvivid} | ||
| + | %\usecolortheme{UECpastel} | ||
| + | |||
| + | \usepackage{txfonts} | ||
| + | \usepackage{color} | ||
| + | \usepackage[mathscr]{euscript} | ||
| + | %\usepackage{deluxe}{otf} | ||
| + | \renewcommand{\familydefault}{\sfdefault} | ||
| + | \renewcommand{\kanjifamilydefault}{\gtdefault} | ||
| + | \usefonttheme{structurebold} | ||
| + | \setbeamerfont{alerted text}{series=\bfseries} | ||
| + | \setbeamerfont{section in toc}{series=\mdseries} | ||
| + | \setbeamerfont{frametitle}{size=\Large} | ||
| + | \setbeamerfont{title}{size=\LARGE} | ||
| + | \setbeamerfont{date}{size=\small} | ||
| + | \uselanguage{japanese} | ||
| + | \languagepath{japanese} | ||
| + | |||
| + | \setbeamertemplate{navigation symbols}{} | ||
| + | |||
| + | \usepackage{graphicx} | ||
| + | |||
| + | %\usepackage{beamerthemesplit} | ||
| + | \usepackage{amsmath, | ||
| + | \usepackage{color} | ||
| + | \usepackage{float} | ||
| + | \usepackage{hyperref} | ||
| + | |||
| + | \def\vec# | ||
| + | {\mbox{\boldmath$\textstyle\bf# | ||
| + | {\mbox{\boldmath$\scriptstyle\bf# | ||
| + | {\mbox{\boldmath$\scriptscriptstyle\bf# | ||
| + | \title{Beamerのサンプル} | ||
| + | \subtitle{UEC} | ||
| + | \author[U.E.C]{電通 大} | ||
| + | \date{\today} | ||
| + | |||
| + | \begin{document} | ||
| + | \maketitle | ||
| + | |||
| + | \frame{ | ||
| + | \frametitle{目的} | ||
| + | \begin{enumerate} | ||
| + | \item ロゴを右上に出したい。 | ||
| + | \item 色にスクールカラーを使いたい。 | ||
| + | \end{enumerate} | ||
| + | } | ||
| + | |||
| + | \frame{ | ||
| + | \frametitle{テーマファイルを2つ用意した} | ||
| + | \begin{enumerate} | ||
| + | \item beamercolorthemeUEC.sty: | ||
| + | \item beamerouterthemeUEC.sty: | ||
| + | \end{enumerate} | ||
| + | } | ||
| + | |||
| + | \end{document} | ||
| + | </ | ||
| + | |||