Initial commit for Group Meeting presentation

This commit is contained in:
Eric Teunis de Boone 2022-01-31 12:18:14 +01:00
parent f86090fd2a
commit 9b42271b2f
4 changed files with 52 additions and 0 deletions

View file

@ -0,0 +1,22 @@
\documentclass[showdate=false]{beamer}
\addtobeamertemplate{navigation symbols}{}{%
\usebeamerfont{footline}%
\usebeamercolor[fg]{footline}%
\hspace{1em}%
\insertframenumber
}
\title{}
\date{February 03, 2022}
\author{E.T. de Boone}
\begin{document}
\frame{\titlepage}
\begin{frame}
\end{frame}
\end{document}

View file

@ -0,0 +1,24 @@
# vim:ft=make
-include config.mk
.PHONY: all clean
### Variables
MAIN_SRC ?= main.tex
TEXENGINE ?= pdflatex
### Targets
MAIN_TARGET=$(patsubst %.tex,%.pdf,$(MAIN_SRC))
all: $(MAIN_TARGET)
$(MAIN_TARGET): $(MAIN_SRC)
$(TEXENGINE) $^
$(TEXENGINE) $^
clean:
@rm -f *.dat *.log *.out *.aux *.dvi *.ps *.nav *.snm *.toc *.vrb *~
@rm -f *.pdf *.eps

View file

@ -0,0 +1,4 @@
# Short Presentation on current status
Mostly to show what I've been doing uptil now.
Maybe short description of experimental setup?

View file

@ -0,0 +1,2 @@
MAIN_SRC=2022-02-03_group_meeting.tex
TEXENGINE=pdflatex