]> git.donarmstrong.com Git - using_make_for_science.git/blobdiff - using_make_for_science.Rnw
fixup minted for tabs
[using_make_for_science.git] / using_make_for_science.Rnw
index d17222fec670c9b66c0be8d215a7c21996bb2a51..79034541d234b605c9e182ba2f66137b58d8dce3 100644 (file)
@@ -33,8 +33,6 @@
   \usepackage{geometry}
   \usepackage{pdflscape}
   \usepackage[hyperfigures,bookmarks,colorlinks]{hyperref}
-}
-\mode<article>{
   \oddsidemargin 0.0in 
   \textwidth 6.5in
   \raggedbottom
   \pagestyle{fancy}
 }
 
+\usepackage{minted}
+
 \mode<presentation>{ 
   \usetheme{CambridgeUS}
-  \usecolortheme{beaver}
+  % http://identitystandards.illinois.edu/graphicstandardsmanual/generalguidelines/colors.html
+  \definecolor{ilboldblue}{HTML}{002058}
+  \definecolor{ilboldorange}{HTML}{E87722}
+  \definecolor{ilblue}{HTML}{606EB2}
+  \definecolor{ilorange}{HTML}{D45D00}
+  \setbeamercolor{alerted text}{fg=ilboldblue}
+  \setbeamercolor*{palette primary}{fg=ilblue,bg=ilorange}
+  \setbeamercolor*{palette secondary}{fg=ilblue!20!white,bg=ilorange}
+  \setbeamercolor*{palette tertiary}{bg=ilblue,fg=ilorange}
+  \setbeamercolor*{palette quaternary}{fg=ilblue,bg=ilorange}
+  
+  \setbeamercolor*{sidebar}{fg=ilorange,bg=ilboldblue}
+  
+  \setbeamercolor*{palette sidebar primary}{fg=ilblue!10!white,bg=ilorange}
+  \setbeamercolor*{palette sidebar secondary}{fg=ilorange}
+  \setbeamercolor*{palette sidebar tertiary}{fg=ilblue}
+  \setbeamercolor*{palette sidebar quaternary}{fg=ilorange}
+  
+  % \setbeamercolor*{titlelike}{parent=palette primary}
+  \setbeamercolor{titlelike}{parent=palette primary,fg=ilboldblue,bg=ilorange}
+  \setbeamercolor{frametitle}{fg=ilboldorange,bg=ilblue!80!white}
+  \setbeamercolor{frametitle right}{fg=ilboldblue,bg=ilorange}
+  
+  \setbeamercolor*{separation line}{}
+  \setbeamercolor*{fine separation line}{}
   \setbeamercovered{transparent}  
   \logo{\begin{tikzpicture}% Pale figure
-      {\node[opacity=0.3] {%\includegraphics[width=2cm]{LOGO}%
+      {\node[opacity=0.7]{\IfFileExists{./logo.pdf}{\includegraphics[height=1.5cm]{logo.pdf}}{}%
         };}%
     \end{tikzpicture}}
 }
 
 \section{Introduction to Makefiles}
 
+\begin{frame}[fragile]{Simple Makefile}
+\begin{minted}[showtabs]{make}
+hello_world:
+       echo "hello world" > hello_world
+\end{minted}
+\end{frame}
+
+\subsection{General Syntax}
+
+
+\begin{frame}[fragile]{Simple Makefile}
+\begin{minted}[showtabs]{make}
+hello_world:
+       echo "hello world" > hello_world
+\end{minted}
+\end{frame}
+
+\subsection{Variables}
+
+\subsection{Rules}
+
+\subsubsection{Default Target}
+
+\subsubsection{Special Targets}
+
+\subsubsection{Pattern Rules}
+
+\subsection{Functions}
+
+
 \section{Examples}
 
 \subsection{This Presentation}