From a611f5b86b6575435e4e8fc3abea98529e8a7b60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Fri, 18 Feb 2022 08:44:06 +0100 Subject: =?UTF-8?q?Startpr=C3=A4sentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vorlesungen/01_start/Makefile | 33 +++++++++++++++++++++++++++++++ vorlesungen/01_start/MathSem-01-start.tex | 18 +++++++++++++++++ vorlesungen/01_start/common.tex | 16 +++++++++++++++ vorlesungen/01_start/slides.tex | 6 ++++++ vorlesungen/01_start/start-handout.tex | 11 +++++++++++ 5 files changed, 84 insertions(+) create mode 100644 vorlesungen/01_start/Makefile create mode 100644 vorlesungen/01_start/MathSem-01-start.tex create mode 100644 vorlesungen/01_start/common.tex create mode 100644 vorlesungen/01_start/slides.tex create mode 100644 vorlesungen/01_start/start-handout.tex (limited to 'vorlesungen') diff --git a/vorlesungen/01_start/Makefile b/vorlesungen/01_start/Makefile new file mode 100644 index 0000000..0e0bac2 --- /dev/null +++ b/vorlesungen/01_start/Makefile @@ -0,0 +1,33 @@ +# +# Makefile -- start +# +# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +# +all: start-handout.pdf MathSem-01-start.pdf + +include ../slides/Makefile.inc + +SOURCES = common.tex slides.tex $(slides) + +MathSem-01-start.pdf: MathSem-01-start.tex $(SOURCES) + pdflatex MathSem-01-start.tex + +start-handout.pdf: start-handout.tex $(SOURCES) + pdflatex start-handout.tex + +thumbnail: thumbnail.jpg # fix1.jpg + +thumbnail.pdf: MathSem-01-start.pdf + pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \ + MathSem-01-start.pdf 1 +thumbnail.jpg: thumbnail.pdf + convert -density 300 thumbnail.pdf \ + -resize 1920x1080 -units PixelsPerInch thumbnail.jpg + +fix1.pdf: MathSem-01-start.pdf + pdfjam --outfile fix1.pdf --papersize '{16cm,9cm}' \ + MathSem-01-start.pdf 1 +fix1.jpg: fix1.pdf + convert -density 300 fix1.pdf \ + -resize 1920x1080 -units PixelsPerInch fix1.jpg + diff --git a/vorlesungen/01_start/MathSem-01-start.tex b/vorlesungen/01_start/MathSem-01-start.tex new file mode 100644 index 0000000..f0be577 --- /dev/null +++ b/vorlesungen/01_start/MathSem-01-start.tex @@ -0,0 +1,18 @@ +% +% MathSem-01-start.tex -- Präsentation +% +% (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +% +\documentclass[aspectratio=169]{beamer} +\input{common.tex} +\setboolean{presentation}{true} +\begin{document} +\begin{frame} +%\vspace{-2cm} +\begin{center} +\includegraphics[width=6cm]{../../cover/front.png} +\end{center} +%\titlepage +\end{frame} +\input{slides.tex} +\end{document} diff --git a/vorlesungen/01_start/common.tex b/vorlesungen/01_start/common.tex new file mode 100644 index 0000000..814e985 --- /dev/null +++ b/vorlesungen/01_start/common.tex @@ -0,0 +1,16 @@ +% +% common.tex -- gemeinsame definition +% +% (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +% +\input{../common/packages.tex} +\input{../common/common.tex} +\mode{% +\usetheme[hideothersubsections,hidetitle]{Hannover} +} +\beamertemplatenavigationsymbolsempty +\title[Spez Fun]{Spezielle Funktionen} +\author[A.~Müller]{Prof. Dr. Andreas Müller} +\date[]{} +\newboolean{presentation} + diff --git a/vorlesungen/01_start/slides.tex b/vorlesungen/01_start/slides.tex new file mode 100644 index 0000000..5678823 --- /dev/null +++ b/vorlesungen/01_start/slides.tex @@ -0,0 +1,6 @@ +% +% slides.tex -- XXX +% +% (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +% + diff --git a/vorlesungen/01_start/start-handout.tex b/vorlesungen/01_start/start-handout.tex new file mode 100644 index 0000000..0771f0f --- /dev/null +++ b/vorlesungen/01_start/start-handout.tex @@ -0,0 +1,11 @@ +% +% start-handout.tex -- Handout XXX +% +% (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil +% +\documentclass[handout,aspectratio=169]{beamer} +\input{common.tex} +\setboolean{presentation}{false} +\begin{document} +\input{slides.tex} +\end{document} -- cgit v1.2.1