$(R) --encoding=utf-8 -e "library('knitr'); knit('$<')"
%.pdf: %.tex $(wildcard *.bib) $(wildcard *.tex)
- latexmk -pdf -pdflatex='xelatex -interaction=nonstopmode %O %S' -bibtex -use-make $<
+ latexmk -pdf -pdflatex='xelatex -shell-escape -8bit -interaction=nonstopmode %O %S' -bibtex -use-make $<
\pagestyle{fancy}
}
+\usepackage{minted}
+
\mode<presentation>{
\usetheme{CambridgeUS}
% http://identitystandards.illinois.edu/graphicstandardsmanual/generalguidelines/colors.html
\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}