mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m.internship-documentation.git
synced 2024-11-13 02:43:32 +01:00
Initialise student seminar presentation
This commit is contained in:
parent
3df5748bd7
commit
bb712d1ffa
4 changed files with 70 additions and 0 deletions
|
@ -0,0 +1,39 @@
|
||||||
|
\documentclass[showdate=false]{beamer}
|
||||||
|
|
||||||
|
\usepackage[british]{babel}
|
||||||
|
\usepackage{amsmath}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage[backend=bibtex,style=trad-plain]{biblatex}
|
||||||
|
\usepackage{graphicx}
|
||||||
|
\graphicspath{{.}{../../figures/}}
|
||||||
|
\usepackage{todo}
|
||||||
|
|
||||||
|
\addbibresource{../../../bibliotheca/bibliography.bib}
|
||||||
|
|
||||||
|
% Disable Captions
|
||||||
|
\setbeamertemplate{caption}{\raggedright\small\insertcaption\par}
|
||||||
|
|
||||||
|
% Show Section overview at beginning of section
|
||||||
|
%\AtBeginSection[]
|
||||||
|
%{
|
||||||
|
% \begin{frame}<beamer>{Table of Contents}
|
||||||
|
% \tableofcontents[currentsection, currentsubsection, sectionstyle=show/shaded, subsectionstyle=hide]
|
||||||
|
% \end{frame}
|
||||||
|
%}
|
||||||
|
|
||||||
|
% no to navigation, yes to frame numbering
|
||||||
|
\beamertemplatenavigationsymbolsempty
|
||||||
|
\setbeamerfont{page number in head/foot}{size=\normalsize}
|
||||||
|
\setbeamertemplate{footline}[frame number]
|
||||||
|
|
||||||
|
\title[]{}
|
||||||
|
\date{March 08, 2023}
|
||||||
|
\author{E.T. de Boone}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\frame{\titlepage}
|
||||||
|
|
||||||
|
\begin{frame}{Enhancing time accuracy}
|
||||||
|
|
||||||
|
\end{frame}
|
||||||
|
\end{document}
|
24
presentations/2023-03-08_hep_student_seminar/Makefile
Normal file
24
presentations/2023-03-08_hep_student_seminar/Makefile
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# vim:ft=make
|
||||||
|
-include config.mk
|
||||||
|
|
||||||
|
.PHONY: all clean dist-clean
|
||||||
|
|
||||||
|
### Variables
|
||||||
|
MAIN_SRC ?= main.tex
|
||||||
|
TEXENGINE ?= latexmk --pdf
|
||||||
|
|
||||||
|
MAIN_TARGET = $(patsubst %.tex,%.pdf,$(MAIN_SRC))
|
||||||
|
|
||||||
|
### Targets
|
||||||
|
all: $(MAIN_TARGET)
|
||||||
|
|
||||||
|
dist: all clean
|
||||||
|
|
||||||
|
$(MAIN_TARGET): $(MAIN_SRC)
|
||||||
|
$(TEXENGINE) $^
|
||||||
|
|
||||||
|
dist-clean: clean
|
||||||
|
@rm -vf *.pdf *.eps *.dvi *.ps
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@rm -vf *.dat *.log *.out *.aux *.nav *.snm *.toc *.vrb *~ *.fls *.fdb_latexmk *-blx.bib *.bbl *.blg *.run.xml
|
6
presentations/2023-03-08_hep_student_seminar/README.md
Normal file
6
presentations/2023-03-08_hep_student_seminar/README.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# HEP Student Seminar
|
||||||
|
|
||||||
|
Small talks by students during a lunch break.
|
||||||
|
Can be about anything.
|
||||||
|
|
||||||
|
Expected date: 2023-03-08.
|
1
presentations/2023-03-08_hep_student_seminar/config.mk
Normal file
1
presentations/2023-03-08_hep_student_seminar/config.mk
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MAIN_SRC=2023-HEP-student-seminar.tex
|
Loading…
Reference in a new issue