Two ready-to-use Beamer templates featuring University of Minnesota colors and logos. Zip file contains a light (white background with maroon and gold trim) and dark (maroon background with white text and gold trim) version, with accompanying graphics. Just unzip into a folder and compile in LaTeX.
UMN templates for Beamer (ZIP file)
View light template (PDF) View dark template (PDF)
It can be very frustrating to start a bunch of simulations and check them the next day, only to find out that they failed due to some error 3 minutes after you set them running. This script is designed to monitor R simulations and notify you by email when they terminate. Say you want to run simulations using the R file "runsims.R", with screen output written to "runrecord.txt". Then customize the indicated lines of the script below, save it to the server as "runSim.sh", give it executable permissions (e.g., chmod 711 runSim.sh), and enter the command
./runSim.sh runsims.R runrecord.txt &
Here is the script as a GitHub Gist. Save it as runSim.sh in the same directory as your R file.
Some of these may require the following packages:
\usepackage{bbm}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsfonts}
\newcommand\independent{\protect\mathpalette{\protect\independenT}{\perp}}
\def\independenT#1#2{\mathrel{\rlap{$#1#2$}\mkern2mu{#1#2}}}
Example usage: A \independent B
\newcommand{\indicator}[1]{\mathbbm{1}_{\left[ {#1} \right] }}
Example usage: \indicator{X=x}
\def\liminf{\mathop{\lim\,\inf}\limits}%
\def\limsup{\mathop{\lim\,\sup}\limits}%
\def\argmin{\mathop{\arg\,\min}\limits}%
\def\argmax{\mathop{\arg\,\max}\limits}%
Example usage: \liminf_n A_n
\newcommand{\QED}{\begin{flushright} {\bf QED} \end{flushright}}
Example usage: And hence, $a^n + b^n = c^n$ has no solutions in the positive integers for $n > 2$. \QED