From bcb9a689555f4bcf9273e4edd5f3436c146a9c87 Mon Sep 17 00:00:00 2001 From: Mart Lubbers Date: Thu, 17 Nov 2016 12:43:40 +0100 Subject: [PATCH] fix makefile and finalize presentation --- Makefile | 12 +++++++++--- mv.tex | 23 +++++++++++++++++------ 2 files changed, 26 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 9783c1d..fd319ec 100644 --- a/Makefile +++ b/Makefile @@ -11,9 +11,15 @@ all: $(DOC).pdf %.fmt: preamble.tex $(LATEX) $(LATEXFLAGS) -ini -jobname="$(basename $@)" "&$(LATEX) $<\dump" -%.pdf: %.tex %.fmt $(TEXS) - $(LATEX) $(LATEXFLAGS) $< +%.mlog: %.tex %.fmt $(TEXS) $(LATEX) $(LATEXFLAGS) $< + grep -q '^\\bibdata{' $(basename $<).aux && $(BIBTEX) $(basename $<) || true + $(LATEX) $(LATEXFLAGS) $< | tee $@ + +%.pdf: %.mlog + grep -qF 'Please rerun LaTeX.' $< &&\ + $(LATEX) $(LATEXFLAGS) $(basename $<) || touch $@ clean: - $(RM) $(addprefix $(DOC).,aux fmt log nav out pdf snm toc vrb) + $(RM) $(addprefix $(DOC).,\ + aux log fmt toc bbl blg mlog run.xml out pdf -blx.bib snm nav) diff --git a/mv.tex b/mv.tex index 2ecce77..c4c90a3 100644 --- a/mv.tex +++ b/mv.tex @@ -1,7 +1,6 @@ %&mv \begin{document} \frame{\maketitle} -\frame{\tableofcontents} \begin{frame} \frametitle{Where did I come from?} @@ -35,7 +34,7 @@ \begin{itemize} \item Interesting compulsory courses \item Freedom in specialization - %TODO + \item Advanced programming, Compiler construction \end{itemize} \end{block} @@ -52,10 +51,22 @@ \begin{frame} \frametitle{Curriculum customization} - \begin{itemize} - \item You can go all directions - \item %TODO - \end{itemize} + \begin{block}{Curriculum} + \begin{itemize} + \item You can go all directions + \item Choose what you like + \end{itemize} + \end{block} + + \pause% + + \begin{block}{Research Intership} + \begin{itemize} + \item IoT in iTasks + \item New Devices Lab + \item Shallow embedded DSL + \end{itemize} + \end{block} \end{frame} \begin{frame} -- 2.20.1