]> git.donarmstrong.com Git - using_make_for_science.git/commitdiff
fixup minted for tabs
authorDon Armstrong <don@donarmstrong.com>
Mon, 3 Aug 2015 23:13:44 +0000 (18:13 -0500)
committerDon Armstrong <don@donarmstrong.com>
Mon, 3 Aug 2015 23:13:44 +0000 (18:13 -0500)
Makefile
using_make_for_science.Rnw

index 1acfd0180ffe0cd54c018d434bdf2c4d3af458cf..128cb194a93e38c7abb2959045baff32f25f52f5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -16,4 +16,4 @@ R ?= R
        $(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 $<
index 2aa23c99957c6397ee782f8881360df5b90809bc..79034541d234b605c9e182ba2f66137b58d8dce3 100644 (file)
@@ -41,6 +41,8 @@
   \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}