summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/texmf-dist/doc/latex/medstarbeamer/README.txt44
-rw-r--r--Master/texmf-dist/doc/latex/medstarbeamer/medstarpresentation.Rnw64
-rw-r--r--Master/texmf-dist/doc/latex/medstarbeamer/medstarpresentation.pdfbin0 -> 105532 bytes
-rw-r--r--Master/texmf-dist/doc/latex/medstarbeamer/presentationtex.pdfbin0 -> 101716 bytes
-rw-r--r--Master/texmf-dist/tex/latex/medstarbeamer/medstarbeamer.cls44
-rwxr-xr-xMaster/tlpkg/bin/tlpkg-ctan-check3
-rw-r--r--Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc1
-rw-r--r--Master/tlpkg/tlpsrc/medstarbeamer.tlpsrc0
8 files changed, 155 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/latex/medstarbeamer/README.txt b/Master/texmf-dist/doc/latex/medstarbeamer/README.txt
new file mode 100644
index 00000000000..1f5cc244ed6
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/medstarbeamer/README.txt
@@ -0,0 +1,44 @@
+%%%%%%%%% MedStar Beamer Template %%%%%%%%%
+%%%%%%%% Written By: Anagha Kumar %%%%%
+%%%%%%%% License: lppl1.3 %%%%%%%%%%%%%%%%
+
+% I wrote a beamer template for MedStar Health presentations. %%
+%% I've included sample presentations using both .tex files and .rnw files%%
+%% The document class is obviously compatible with both %%
+%% The advantage of the .rnw file is that it can be used with knitr such that you can weave your R code with your presentation %%
+
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesClass{medstarbeamer}
+\LoadClassWithOptions{beamer}
+\RequirePackage{anysize}
+\RequirePackage{hyperref}
+\RequirePackage{graphicx}
+\RequirePackage{pgf}
+\RequirePackage{xcolor}
+\RequirePackage{booktabs}
+\RequirePackage{soul}
+\RequirePackage{background}
+\RequirePackage{cancel}
+\RequirePackage{amsmath}
+\RequirePackage{enumerate}
+
+
+\usetheme{CambridgeUS} % for an extensive list of themes, this is a useful website: http://deic.uab.es/~iblanes/beamer_gallery/index_by_theme.html %
+\definecolor{citrine}{rgb}{0.89, 0.82, 0.04}
+\definecolor{coolblack}{rgb}{0.0, 0.18, 0.39}
+
+\usecolortheme{lily}
+\setbeamercolor{frametitle}{fg=white, bg=coolblack}
+\setbeamercolor{title}{fg=coolblack}
+\setbeamercolor{subtitle}{fg=coolblack}
+\setbeamercolor{palette primary}{fg=white, bg=coolblack} % controls the foreground and background colors for the strip at the bottom right
+\setbeamercolor{palette secondary}{fg=white, bg=coolblack} % controls the foreground and background colors for the bottom left strip and the second strip at the top
+\setbeamercolor{palette tertiary}{fg=black, bg=citrine} %controls the foreground and background colors for the middle strip at the bottom and the top strip
+\useoutertheme{miniframes}
+\setbeamercolor{item}{fg=coolblack} %customizing the colors for the inner theme
+\logo{\includegraphics[ height=1cm, width=2cm]{medstarlogo}} %the size of the logo to be included in every frame
+
+\setbeamercovered{dynamic} %overlays appear faintly
+\setbeamertemplate{navigation symbols}{} % since I dislike the navigation symbols
+\setbeamertemplate{caption}[numbered] % since beamer does not number captions without setting this
+\setbeamercolor{caption}{fg=coolblack} \ No newline at end of file
diff --git a/Master/texmf-dist/doc/latex/medstarbeamer/medstarpresentation.Rnw b/Master/texmf-dist/doc/latex/medstarbeamer/medstarpresentation.Rnw
new file mode 100644
index 00000000000..2f33e5935b1
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/medstarbeamer/medstarpresentation.Rnw
@@ -0,0 +1,64 @@
+\documentclass{medstarbeamer}
+\title[ Applied Bayesian Data Analysis]{Binary Response Regression and Model Selection}
+\author[ Anagha Kumar]{Anagha Kumar}
+\institute[MHRI]{\textit{MEDSTAR HEALTH RESEARCH INSTITUTE}}
+\date{August 26th, 2015}
+\begin{document}
+
+\begin{frame}
+\maketitle
+\end{frame}
+
+\begin{frame}{Table of Contents}
+\tableofcontents
+\end{frame}
+
+\section{The Problem of Interest}
+\begin{frame}{Dataset}
+\footnotesize{
+\begin{enumerate}
+\item{The dataset used was from ``Survival Analysis - Techniques for Censored and Truncated Data".}
+\item{It was a hypothetical study of the mortality experience of diabetics. }
+\item{30 diabetics were followed till death or the end of the study.}
+\item{The subject's age at entry into the study and the age at the end of the study or death were recorded.}
+\item{Rather than time to event analysis, I was interested in how ``entry age" and ``exit age", affected survival.}
+\item{The response variable, survival, was binary (=1 if alive, =0 if dead).}
+\item{The dataset contained no missing data.}
+\end{enumerate}
+}
+\end{frame}
+
+<<echo=FALSE, results='hide', warning=FALSE, message=FALSE>>=
+options(repos = c(CRAN = "http://cran.rstudio.com"))
+install.packages("LearnBayes")
+library(LearnBayes)
+library(xtable)
+entry_age <- c(58, 58, 59, 60, 60, 61, 61, 62, 62, 62, 63, 63, 64, 66, 66, 67, 67, 67, 68, 69, 69, 69, 70, 70, 70, 71, 72, 72, 73, 73)
+exit_age <- c(60, 63, 69, 62, 65, 72, 69, 73, 66, 65, 68, 74, 71, 68, 69, 70, 77, 69, 72, 79, 72, 70, 76, 71, 78, 79, 76, 73, 80, 74)
+survive <- c(0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0)
+@
+<<echo=FALSE, results='hide'>>=
+table.entry_age <- t(table(entry_age))
+Xtable.entry_age <- xtable(table.entry_age, caption="Descriptive Statistics for Entry Age")
+table.exit_age <- t(table(exit_age))
+Xtable.exit_age <- xtable(table.exit_age, caption="Descriptive Statistics for Exit Age")
+table.survive <- t(table(survive))
+Xtable.survive <- xtable(table.survive, caption="Survival Counts")
+@
+\subsection{Exploratory Data Analysis}
+\begin{frame}{Descriptive Statistics}
+\tiny{
+<<echo=FALSE, results='asis'>>=
+rownames(Xtable.entry_age) <- c("Counts")
+print(Xtable.entry_age, caption.placement="top", booktabs=TRUE, rownames=TRUE)
+rownames(Xtable.exit_age) <- c("Counts")
+print(Xtable.exit_age, caption.placement="top", booktabs=TRUE, rownames=TRUE)
+@
+<<echo=FALSE, results='asis'>>=
+rownames(Xtable.survive) <- c("Counts")
+print(Xtable.survive, caption.placement="top", booktabs=TRUE, rownames=TRUE)
+@
+}
+\end{frame}
+
+\end{document} \ No newline at end of file
diff --git a/Master/texmf-dist/doc/latex/medstarbeamer/medstarpresentation.pdf b/Master/texmf-dist/doc/latex/medstarbeamer/medstarpresentation.pdf
new file mode 100644
index 00000000000..a4224c742f6
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/medstarbeamer/medstarpresentation.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/medstarbeamer/presentationtex.pdf b/Master/texmf-dist/doc/latex/medstarbeamer/presentationtex.pdf
new file mode 100644
index 00000000000..55ab6a9593d
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/medstarbeamer/presentationtex.pdf
Binary files differ
diff --git a/Master/texmf-dist/tex/latex/medstarbeamer/medstarbeamer.cls b/Master/texmf-dist/tex/latex/medstarbeamer/medstarbeamer.cls
new file mode 100644
index 00000000000..43920d8f8c9
--- /dev/null
+++ b/Master/texmf-dist/tex/latex/medstarbeamer/medstarbeamer.cls
@@ -0,0 +1,44 @@
+%%%%%%%%% MedStar Beamer Template %%%%%%%%%
+%%%%%%%% Written By: Anagha Kumar %%%%%
+%%%%%%%% License: lppl1.3 %%%%%%%%%%%%%%%%
+
+% I wrote a beamer template for MedStar Health presentations. %%
+%% I've included sample presentations using both .tex files and .rnw files%%
+%% The document class is obviously compatible with both
+%% The advantage of the .rnw file is that it can be used with knitr such that you can weave your R code with your presentation %%
+
+\NeedsTeXFormat{LaTeX2e}
+\ProvidesClass{medstarbeamer}
+\LoadClassWithOptions{beamer}
+\RequirePackage{anysize}
+\RequirePackage{hyperref}
+\RequirePackage{graphicx}
+\RequirePackage{pgf}
+\RequirePackage{xcolor}
+\RequirePackage{booktabs}
+\RequirePackage{soul}
+\RequirePackage{background}
+\RequirePackage{cancel}
+\RequirePackage{amsmath}
+\RequirePackage{enumerate}
+
+
+\usetheme{CambridgeUS} % for an extensive list of themes, this is a useful website: http://deic.uab.es/~iblanes/beamer_gallery/index_by_theme.html %
+\definecolor{citrine}{rgb}{0.89, 0.82, 0.04}
+\definecolor{coolblack}{rgb}{0.0, 0.18, 0.39}
+
+\usecolortheme{lily}
+\setbeamercolor{frametitle}{fg=white, bg=coolblack}
+\setbeamercolor{title}{fg=coolblack}
+\setbeamercolor{subtitle}{fg=coolblack}
+\setbeamercolor{palette primary}{fg=white, bg=coolblack} % controls the foreground and background colors for the strip at the bottom right
+\setbeamercolor{palette secondary}{fg=white, bg=coolblack} % controls the foreground and background colors for the bottom left strip and the second strip at the top
+\setbeamercolor{palette tertiary}{fg=black, bg=citrine} %controls the foreground and background colors for the middle strip at the bottom and the top strip
+\useoutertheme{miniframes}
+\setbeamercolor{item}{fg=coolblack} %customizing the colors for the inner theme
+\logo{\includegraphics[ height=1cm, width=2cm]{medstarlogo}} %the size of the logo to be included in every frame
+
+\setbeamercovered{dynamic} %overlays appear faintly
+\setbeamertemplate{navigation symbols}{} % since I dislike the navigation symbols
+\setbeamertemplate{caption}[numbered] % since beamer does not number captions without setting this
+\setbeamercolor{caption}{fg=coolblack}
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check
index 1e16d1b7961..501cb951c44 100755
--- a/Master/tlpkg/bin/tlpkg-ctan-check
+++ b/Master/tlpkg/bin/tlpkg-ctan-check
@@ -364,7 +364,8 @@ my @TLP_working = qw(
mathspec mathtools matlab-prettifier mathspic maths-symbols
mattens maybemath mbenotes
mcaption mceinleger mcf2graph mcite mciteplus mcmthesis
- mdframed mdputu mdsymbol mdwtools media9 meetingmins memdesign memexsupp
+ mdframed mdputu mdsymbol mdwtools media9 medstarbeamer
+ meetingmins memdesign memexsupp
memoir MemoirChapStyles memory mentis
menu menukeys merriweather
metafont-beginners metago metalogo metaobj metaplot
diff --git a/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
index 5f9ec9d2edb..a3e49183748 100644
--- a/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
+++ b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
@@ -596,6 +596,7 @@ depend mcite
depend mciteplus
depend mdframed
depend media9
+depend medstarbeamer
depend meetingmins
depend memexsupp
depend memory
diff --git a/Master/tlpkg/tlpsrc/medstarbeamer.tlpsrc b/Master/tlpkg/tlpsrc/medstarbeamer.tlpsrc
new file mode 100644
index 00000000000..e69de29bb2d
--- /dev/null
+++ b/Master/tlpkg/tlpsrc/medstarbeamer.tlpsrc