Skip to content
This repository has been archived by the owner on Oct 19, 2020. It is now read-only.

Commit

Permalink
Initial style setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Jun 21, 2008
0 parents commit 3cdc5d8
Show file tree
Hide file tree
Showing 6 changed files with 150 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
@@ -0,0 +1,9 @@
*.nav
*.aux
out/*.pdf
*.toc
*.snm
*.log
*~
.*.swp
*.out
32 changes: 32 additions & 0 deletions beamercolorthemebear.sty
@@ -0,0 +1,32 @@
% Copyright 2004 by Madhusudan Singh <madhusudan.singh@gmail.com>
%
% This file may be distributed and/or modified
%
% 1. under the LaTeX Project Public License and/or
% 2. under the GNU Public License.
%
% See the file doc/licenses/LICENSE for more details.

\mode<presentation>

\setbeamercolor{alerted text}{fg=darkblue!80!yellow}
\setbeamercolor*{palette primary}{fg=white,bg=brown}
\setbeamercolor*{palette secondary}{fg=white,bg=brown!50!black}
\setbeamercolor*{palette tertiary}{fg=white,bg=brown!20!black}
\setbeamercolor*{palette quaternary}{fg=white,bg=yellow}

%\setbeamercolor*{sidebar}{fg=darkblue,bg=orange!75!white}

%\setbeamercolor*{palette sidebar primary}{fg=darkblue!10!black}
%\setbeamercolor*{palette sidebar secondary}{fg=white}
%\setbeamercolor*{palette sidebar tertiary}{fg=darkblue!50!black}
%\setbeamercolor*{palette sidebar quaternary}{fg=yellow!10!orange}

\setbeamercolor*{structure}{fg=red!70!black,bg=white}
\setbeamercolor{frametitle}{bg=brown,fg=white}
%\setbeamercolor{frametitle right}{bg=yellow!60!orange}

%\setbeamercolor*{separation line}{}
%\setbeamercolor*{fine separation line}{}

\mode<all>
Binary file added brown-logo.pdf
Binary file not shown.
3 changes: 3 additions & 0 deletions out/clean.sh
@@ -0,0 +1,3 @@
#! /bin/sh

rm -f *.{nav,aux,pdf,toc,snm,log,out}
2 changes: 2 additions & 0 deletions out/make.sh
@@ -0,0 +1,2 @@
#! /bin/sh
TEXINPUTS=$TEXINPUTS:.. pdflatex ../pic-stuttgart.tex
104 changes: 104 additions & 0 deletions pic-stuttgart.tex
@@ -0,0 +1,104 @@
%\documentclass[handout,t]{beamer}
\documentclass{beamer}
\batchmode
%\usepackage[utf-8]{inputenc}
% \usepackage{pgfpages}
% \pgfpagesuselayout{4 on 1}[letterpaper,landscape,border shrink=5mm]


\usepackage{amsmath,amssymb,enumerate,epsfig,bbm,calc,color,ifthen,capt-of}

%\usepackage{beamerthemesplit}
\usetheme{Berlin}
\usecolortheme{bear}

\title{Methods for High-Order\\Particle-in-Cell Simulation}
\author[Jan S. Hesthaven and Andreas Kl\"ockner]{Jan S. Hesthaven\\Andreas Kl\"ockner}
\date[IAG Uni Stuttgart]{IAG Uni Stuttgart, Arbeitsgruppe Prof. Munz\\July 21, 2007}
\pgfdeclareimage[height=1cm]{brown-logo}{brown-logo.pdf}
\logo{\pgfuseimage{brown-logo}\hspace*{0.3cm}}

\def\bnabla{\mathbf \nabla}
\def\E{\mathbf E}
\def\H{\mathbf H}
\def\r{\mathbf r}
\def\k{\mathbf k}
\def\R{\mathbf R}
\def\K{\mathbf K}

\AtBeginSection[]
{
\begin{frame}<beamer>
\frametitle{Outline}
\tableofcontents[currentsection]
\end{frame}
}
\beamerdefaultoverlayspecification{<+->}

% -----------------------------------------------------------------------------
\newcommand{\assign}{:=}
\newcommand{\tmmathbf}[1]{\boldsymbol{#1}}
\newcommand{\tmop}[1]{\operatorname{#1}}
% -----------------------------------------------------------------------------
\newcommand{\discretized}[2]{{#1}^\triangle_{#2}}
\newcommand{\discretizedtwo}[2]{{#1}^{\triangle,2}_{#2}}
\newcommand{\anyip}[2]{\left\langle#1,#2\right\rangle}
\newcommand{\ip}[2]{\left\langle#1,#2\right\rangle_{\mathbb{R}^d}}
\newcommand{\ippc}[2]{\left\langle#1,#2\right\rangle_P}
\newcommand{\grad}{\tmmathbf{\nabla}}
\newcommand{\laplace}{\nabla^2}
\newcommand{\ipkgrad}[2]{\left\langle#1,#2\right\rangle_{\grad\Omega}}
\newcommand{\ipkgradmv}[2]{\left\langle#1,#2\right\rangle_{\grad\Omega}^{\text{MV}}}
\newcommand{\trp}[1]{{#1}^T}
\newcommand{\herm}[1]{{#1}^H}
\newcommand{\conj}[1]{{#1}^*}
\newcommand{\dimtimes}{\times}
\let\oldepsilon=\epsilon
\let\epsilon=\varepsilon

\newcommand{\identifier}[1]{{\tt#1}}
\newcommand{\inserttext}[1]{\verbatiminput{#1}}

\newcommand{\insertimage}[2]{\includegraphics[#1]{#2}}
% -----------------------------------------------------------------------------
\begin{document}
% -----------------------------------------------------------------------------

\frame{\titlepage}

\section[Outline]{}
\begin{frame}{Outline}
\tableofcontents
\end{frame}

% -----------------------------------------------------------------------------
\section{Introduction}
\subsection{Why should and how can this be done?}
\begin{frame}{Why High-Order PIC?}
\begin{itemize}
\item Long Time Integration
\item Improved Phase Error
\item etc.
\end{itemize}

\end{frame}
\begin{frame}{Why High-Order PIC?}
\begin{itemize}
\item Long Time Integration
\item Improved Phase Error
\item etc.
\end{itemize}

\end{frame}
% -----------------------------------------------------------------------------
\section[Reconstruction]{Reconstructing the Current Density}
% -----------------------------------------------------------------------------
\section[Pushing]{Finding the per-Particle Forces}
% -----------------------------------------------------------------------------
\section[Resolution]{Resolution Management}
% -----------------------------------------------------------------------------
\section[Evaluating]{Evaluating Method Performance}
% -----------------------------------------------------------------------------
\section{Conclusions}
% -----------------------------------------------------------------------------
\end{document}

0 comments on commit 3cdc5d8

Please sign in to comment.