aboutsummaryrefslogtreecommitdiffstats
path: root/vorlesungen
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@ost.ch>2022-02-18 08:44:06 +0100
committerAndreas Müller <andreas.mueller@ost.ch>2022-02-18 08:44:06 +0100
commita611f5b86b6575435e4e8fc3abea98529e8a7b60 (patch)
treee74c737b9c1ddacb69e889a09ac68a3ca32fcd64 /vorlesungen
parentVorlesungsnotizen für Sitzung 1 (diff)
downloadSeminarSpezielleFunktionen-a611f5b86b6575435e4e8fc3abea98529e8a7b60.tar.gz
SeminarSpezielleFunktionen-a611f5b86b6575435e4e8fc3abea98529e8a7b60.zip
Startpräsentation
Diffstat (limited to 'vorlesungen')
-rw-r--r--vorlesungen/01_start/Makefile33
-rw-r--r--vorlesungen/01_start/MathSem-01-start.tex18
-rw-r--r--vorlesungen/01_start/common.tex16
-rw-r--r--vorlesungen/01_start/slides.tex6
-rw-r--r--vorlesungen/01_start/start-handout.tex11
5 files changed, 84 insertions, 0 deletions
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<beamer>{%
+\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}