Add in the rest of the cool stuff
This commit is contained in:
parent
1566565ce9
commit
508c9bf1c1
|
@ -0,0 +1,2 @@
|
|||
# Build and build artifacts
|
||||
_build/
|
|
@ -0,0 +1,11 @@
|
|||
# Mostly blank makefile
|
||||
|
||||
all: prepare build
|
||||
|
||||
|
||||
prepare:
|
||||
mkdir -p _build/aux
|
||||
mkdir -p _build/pdf
|
||||
|
||||
build:
|
||||
pdflatex --enable-write18 -aux-directory=_build/aux -output-directory=_build/pdf my_pres.tex
|
Binary file not shown.
12
my_pres.tex
12
my_pres.tex
|
@ -2,7 +2,7 @@
|
|||
\usepackage[utf8]{inputenc}
|
||||
|
||||
% Special Build Variables
|
||||
\immediate\write18{describe > _build/artifacts.tex}
|
||||
\immediate\write18{git describe --abbrev=4 --always --tags > _build/artifacts.tex}
|
||||
|
||||
\title{Lab 1}
|
||||
\author{Joe Sedutto\\
|
||||
|
@ -25,10 +25,14 @@
|
|||
\vspace{0.5cm}
|
||||
Lab 3
|
||||
|
||||
\vspace{2cm}
|
||||
\input{_build/artifacts}
|
||||
\vspace{0.5cm}
|
||||
Revision: \input{_build/artifacts}
|
||||
|
||||
\textbf{Author Name}
|
||||
\vspace{2cm}
|
||||
\textbf{Joe Sedutto}
|
||||
|
||||
\vspace{0.1cm}
|
||||
Michael L, Ronan D, Samuel F, Arthur A
|
||||
|
||||
\vfill
|
||||
|
||||
|
|
Loading…
Reference in New Issue