1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 19:36:26 +02:00

ID-6: Individuelle Aufgabe bearbeitet

This commit is contained in:
Jim Martens
2014-05-16 22:09:37 +02:00
parent 43eccce6d5
commit 2bc9022d1c
2 changed files with 153 additions and 0 deletions

54
id/blatt6/hci.sty Executable file
View File

@ -0,0 +1,54 @@
\usepackage[ngerman]{babel}
\usepackage{geometry}
\usepackage{fancyhdr}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{listings}
\usepackage{bold-extra}
\usepackage{ifpdf}
\usepackage{pgfplots}
\usepackage{tikz}
\usetikzlibrary{automata,trees,matrix,fadings,calc,positioning,decorations.pathreplacing,arrows,decorations.markings}
\geometry{left=2.5cm,right=2.5cm,top=2.0cm,bottom=2.0cm}
\parindent0mm
\pagestyle{fancy}
\ifpdf
\pdfinfo {
/Author (\autor)
/Title (Interaktionsdesign I \blatt)
}
\fi
\newcommand{\betreuer}{Prof. Dr. Frank Steinicke, Dr. Gerd Bruder, Dr. Sven Magg}
\renewcommand{\figurename}{Abbildung}
\newcommand{\kopf}{
\Large
\centerline{\textbf{Human-Computer Interaction}}
\vspace*{0.1\baselineskip}
\large
\centerline{\textbf{Bearbeitung zu \emph{Interaktionsdesign}, SoSe 2014}}
\vspace*{0.1\baselineskip}
\normalsize
Betreuer:~\betreuer\\
Autor(en):~\autor~\hfill~{\"U}bung~\blatt \\
\rule{\textwidth}{.25pt}
}
\headsep.5cm
\renewcommand{\headrulewidth}{.25pt}
\renewcommand{\footrulewidth}{.25pt}
\renewcommand{\labelenumi}{(\alph{enumi})}
\renewcommand{\labelenumii}{(\roman{enumii})}
\newcommand{\aufgabe}[1]{\section*{Aufgabe #1}}
\newcommand{\sourcecode}[1]{\lstinputlisting[caption={#1},label=lst:#1,language=C++,frame=single,showstringspaces=false,basicstyle={\ttfamily \small},breaklines=true,breakatwhitespace=true,tabsize=4,numbers=left,stepnumber=5,numberfirstline=false,firstnumber=1,numberstyle={\scriptsize}]{#1}}

View File

@ -0,0 +1,99 @@
\documentclass[a4paper,10pt]{scrartcl}
% Hier die Nummer des Blatts und Autoren angeben.
\newcommand{\blatt}{6}
\newcommand{\autor}{Jim Martens}
\usepackage{hci}
\usepackage[utf8]{inputenc}
\usepackage{float}
\usepackage[official]{eurosym}
\begin{document}
% Seitenkopf mit Informationen
\kopf
\renewcommand{\figurename}{Figure}
\aufgabe{1}
Erste Skizze:\\
\begin{tikzpicture}[
goal/.style={rectangle,draw,fill=yellow!40,align=left},
plan/.style={align=left},
level 1/.style={sibling distance=7.5em},
nextLevel/.style={level distance=40ex},
nextLevel2/.style={level distance=30ex},
nextLevel3/.style={level distance=18ex}]
\coordinate
child[grow=up] {node[goal,anchor=south] (start) {0. Recorder programmieren}}
child[grow=down,level distance=0ex]
[edge from parent fork down]
% sub goals
child {node[goal] (one) {1. Geräte \\ einschalten}
child[nextLevel2] {node[goal]{1.1 Fernseher \\ einschalten}}
child[nextLevel2] {node[goal]{1.2 Recorder \\ einschalten}}
}
child {node[goal]{2. Programm \\ öffnen}}
child {node[goal]{4. Aufnahme \\ auswählen}}
child {node[goal] (three) {3. Sendung \\ auswählen}
child[nextLevel2] {node[goal]{3.1 Tag \\ auswählen}}
child[nextLevel2] {node[goal]{3.2 Zur Uhrzeit \\ navigieren}}
child[nextLevel2] {node[goal]{3.3 Sendung \\ selektieren}}
}
child {node[goal]{5. Programmie- \\ rung speichern}};
\node[plan] [below right=0.4 and -2.0 of start] {\underline{Plan 0:} \\
IF ein Gerät aus DO 1. \\
DO 2.-5.
};
\node[plan] [below left=0.4 and -1.0 of one] {\underline{Plan 1:} \\
IF Fernseher aus DO 1.1 \\
IF Recorder aus DO 1.2};
\node[plan] [below left=0.4 and -1.0 of three] {\underline{Plan 3:} \\
DO 3.1-3.3};
\end{tikzpicture}
\newpage
heuristisch verbessert:\\
\begin{tikzpicture}[
goal/.style={rectangle,draw,fill=yellow!40,align=left},
plan/.style={align=left},
level 1/.style={sibling distance=7.5em},
nextLevel/.style={level distance=40ex},
nextLevel2/.style={level distance=30ex},
nextLevel3/.style={level distance=18ex}]
\coordinate
child[grow=up] {node[goal,anchor=south] (start) {0. Recorder programmieren}}
child[grow=down,level distance=0ex]
[edge from parent fork down]
% sub goals
child {node[goal] (one) {1. Geräte \\ einschalten}
child[nextLevel2] {node[goal]{1.1 Fernseher \\ einschalten}}
child[nextLevel2] {node[goal]{1.2 Recorder \\ einschalten}}
}
child {node[goal]{2. Programm \\ öffnen}}
child {node[goal]{4. Aufnahme \\ auswählen}}
child {node[goal] (three) {3. Sendungen \\ auswählen}
child[nextLevel2] {node[goal]{3.1 Tag \\ auswählen}}
child[nextLevel2] {node[goal]{3.2 Zur Uhrzeit \\ navigieren}}
child[nextLevel2] {node[goal]{3.3 Sendung \\ selektieren}}
}
child {node[goal]{5. Programmie- \\ rung speichern}};
\node[plan] [below right=0.4 and -2.0 of start] {\underline{Plan 0:} \\
IF ein Gerät aus DO 1. \\
DO 2.-5.
};
\node[plan] [below left=0.4 and -1.0 of one] {\underline{Plan 1:} \\
IF Fernseher aus DO 1.1 \\
IF Recorder aus DO 1.2};
\node[plan] [below left=0.4 and -1.0 of three] {\underline{Plan 3:} \\
FOR all Sendungen DO 3.1-3.3};
\end{tikzpicture}
\end{document}