mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m.internship-documentation.git
synced 2024-11-22 07:03:30 +01:00
Initial commit for Group Meeting presentation
This commit is contained in:
parent
f86090fd2a
commit
9b42271b2f
4 changed files with 52 additions and 0 deletions
|
@ -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}
|
24
presentations/2022-02-03_group_meeting/Makefile
Normal file
24
presentations/2022-02-03_group_meeting/Makefile
Normal 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
|
4
presentations/2022-02-03_group_meeting/README.md
Normal file
4
presentations/2022-02-03_group_meeting/README.md
Normal 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?
|
2
presentations/2022-02-03_group_meeting/config.mk
Normal file
2
presentations/2022-02-03_group_meeting/config.mk
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
MAIN_SRC=2022-02-03_group_meeting.tex
|
||||||
|
TEXENGINE=pdflatex
|
Loading…
Reference in a new issue