aboutsummaryrefslogtreecommitdiffstats
path: root/vorlesungen/16_transfer
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@ost.ch>2022-03-09 11:22:17 +0100
committerAndreas Müller <andreas.mueller@ost.ch>2022-03-09 11:22:17 +0100
commit293c84dfc5ec8511af15d699ccc9140c8b9b3679 (patch)
tree41860ce0854a04a435b53c07c52d660962640200 /vorlesungen/16_transfer
parentadd order statistics graph (diff)
downloadSeminarSpezielleFunktionen-293c84dfc5ec8511af15d699ccc9140c8b9b3679.tar.gz
SeminarSpezielleFunktionen-293c84dfc5ec8511af15d699ccc9140c8b9b3679.zip
add sample slides and presentations
Diffstat (limited to 'vorlesungen/16_transfer')
-rw-r--r--vorlesungen/16_transfer/Makefile33
-rw-r--r--vorlesungen/16_transfer/MathSem-16-transfer.tex14
-rw-r--r--vorlesungen/16_transfer/common.tex16
-rw-r--r--vorlesungen/16_transfer/slides.tex6
-rw-r--r--vorlesungen/16_transfer/transfer-handout.tex11
5 files changed, 80 insertions, 0 deletions
diff --git a/vorlesungen/16_transfer/Makefile b/vorlesungen/16_transfer/Makefile
new file mode 100644
index 0000000..bc704e5
--- /dev/null
+++ b/vorlesungen/16_transfer/Makefile
@@ -0,0 +1,33 @@
+#
+# Makefile -- transfer
+#
+# (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil
+#
+all: transfer-handout.pdf MathSem-16-transfer.pdf
+
+include ../slides/Makefile.inc
+
+SOURCES = common.tex slides.tex $(slides)
+
+MathSem-16-transfer.pdf: MathSem-16-transfer.tex $(SOURCES)
+ pdflatex MathSem-16-transfer.tex
+
+transfer-handout.pdf: transfer-handout.tex $(SOURCES)
+ pdflatex transfer-handout.tex
+
+thumbnail: thumbnail.jpg # fix1.jpg
+
+thumbnail.pdf: MathSem-16-transfer.pdf
+ pdfjam --outfile thumbnail.pdf --papersize '{16cm,9cm}' \
+ MathSem-16-transfer.pdf 1
+thumbnail.jpg: thumbnail.pdf
+ convert -density 300 thumbnail.pdf \
+ -resize 1920x1080 -units PixelsPerInch thumbnail.jpg
+
+fix1.pdf: MathSem-16-transfer.pdf
+ pdfjam --outfile fix1.pdf --papersize '{16cm,9cm}' \
+ MathSem-16-transfer.pdf 1
+fix1.jpg: fix1.pdf
+ convert -density 300 fix1.pdf \
+ -resize 1920x1080 -units PixelsPerInch fix1.jpg
+
diff --git a/vorlesungen/16_transfer/MathSem-16-transfer.tex b/vorlesungen/16_transfer/MathSem-16-transfer.tex
new file mode 100644
index 0000000..d975f11
--- /dev/null
+++ b/vorlesungen/16_transfer/MathSem-16-transfer.tex
@@ -0,0 +1,14 @@
+%
+% MathSem-16-transfer.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}
+\titlepage
+\end{frame}
+\input{slides.tex}
+\end{document}
diff --git a/vorlesungen/16_transfer/common.tex b/vorlesungen/16_transfer/common.tex
new file mode 100644
index 0000000..61fc97f
--- /dev/null
+++ b/vorlesungen/16_transfer/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[Transferfunktionen]{Transferfunktionen}
+\author[Marc Benz]{Marc Benz}
+\date[]{}
+\newboolean{presentation}
+
diff --git a/vorlesungen/16_transfer/slides.tex b/vorlesungen/16_transfer/slides.tex
new file mode 100644
index 0000000..bcfeb20
--- /dev/null
+++ b/vorlesungen/16_transfer/slides.tex
@@ -0,0 +1,6 @@
+%
+% slides.tex -- transfer
+%
+% (c) 2017 Prof Dr Andreas Müller, Hochschule Rapperswil
+%
+\folie{transfer/test.tex}
diff --git a/vorlesungen/16_transfer/transfer-handout.tex b/vorlesungen/16_transfer/transfer-handout.tex
new file mode 100644
index 0000000..7e48e0b
--- /dev/null
+++ b/vorlesungen/16_transfer/transfer-handout.tex
@@ -0,0 +1,11 @@
+%
+% transfer-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}