Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
StudyATHome_public
StudyATHome_public
Commits
9316bb9d
Commit
9316bb9d
authored
Nov 28, 2018
by
Alija Sabic
Browse files
Minor correction: sectioning, sidebar, link to project
parent
2a1068e3
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
presentations/project-overview/.latexmkrc
View file @
9316bb9d
# -*- cperl -*-
# latexmkrc
$builddir = $ENV{'BUILDDIR'};
$bibdirs = $ENV{'BIBDIRS'};
$target = $ENV{'TARGET'};
$type = $ENV{'TYPE'};
$viewer = $ENV{'VIEWER'};
$recorder = 1;
$pdf_mode = 1;
$bibtex_use = 2;
$force_mode = 1;
$dependents_list = 1;
$silence_logfile_warnings = 0;
$use_make_for_missing_files = 1;
$bibdir = $ENV{'BIBDIR'};
@BIBINPUTS = ('.',$bibdir);
$target = $ENV{'TARGET'};
$type = $ENV{'TYPE'};
$builddir = $ENV{'BUILDDIR'};
$dependents_list = 1;
$deps_file = "$builddir/$target.deps";
$out_dir = $builddir;
$pdf_previewer = $ENV{'VIEWER'};
$deps_file = "$builddir/$target.deps";
@BIBINPUTS = ('.',$bibdirs);
# $bibtex = 'bibtex %O %B';
$pdflatex = join '', 'pdflatex %O -interaction=nonstopmode -synctex=1 -file-line-error "\PassOptionsToClass{', $type, '}{beamer} \input{%S}"';
$pdf_previewer = $viewer;
push @generated_exts, 'blg', 'cut', 'nav', 'snm', 'vrb', 'synctex.gz';
\ No newline at end of file
presentations/project-overview/Makefile
View file @
9316bb9d
BASENAME
=
demo
BASENAME
=
project-overview
BUILDDIR
=
build
TARGETS
=
$(BASENAME)
-presentation
.pdf
\
$(BASENAME)
-handout
.pdf
\
$(BASENAME)
-notes
.pdf
VIEWER
=
xdg-open
VARIANTS
=
presentation handout notes
# Environment
TEXDIRS
=
resources/latex/:resources/latex-sty/:resources/images/:resources/listings/
BIBDIR
=
resources/latex/
BIBDIR
S
=
resources/latex/
BSTDIR
=
resources/latex-bst/
.EXPORT_ALL_VARIABLES
:
TEXINPUTS
:=
:.:
$(TEXDIRS)
# bibtex invoked from BUILDDIR, thus prepend './../'
BSTINPUTS
:=
./../
$(BSTDIR)
BIBINPUTS
:=
:.:./../
$(BIBDIR)
# cf. latexmkrc
LATEXMK
=
latexmk
-deps
-jobname
=
"
$(
basename
$1
)
"
$2
LATEXMKF
=
export
TARGET
=
$1
&&
export
TYPE
=
$2
&&
$(
call
LATEXMK,
$1
,
$(BASENAME)
)
LATEXMKC
=
export
TARGET
=
$1
&&
export
TYPE
=
""
&&
$(
call
LATEXMK,
$1
,
$2
)
all
:
$(TARGETS)
presentation
:
$(BUILDDIR)/ $(BASENAME)-presentation.pdf
handout
:
$(BUILDDIR)/ $(BASENAME)-handout.pdf
notes
:
$(BUILDDIR)/ $(BASENAME)-notes.pdf
$(BASENAME)-presentation.pdf
:
.FORCE | $(BUILDDIR)/
$(
call
LATEXMKF,
$@
,presentation
)
$(BASENAME)-handout.pdf
:
.FORCE | $(BUILDDIR)/
$(
call
LATEXMKF,
$@
,handout
)
$(BASENAME)-notes.pdf
:
.FORCE | $(BUILDDIR)/
$(
call
LATEXMKF,
$@
,notes
)
LATEXMKV
=
export
TYPE
=
$1
TARGET
=
"
$(BASENAME)
-
$1
"
&&
latexmk
-jobname
=
"
$(BASENAME)
-
$1
"
$2
LATEXMK
=
export
TYPE
=
TARGET
=
"
$(
basename
$(
notdir
$1
))
"
&&
latexmk
$(
basename
$1
)
$2
VIEWER
=
xdg-open
pvc
:
$(
call
LATEXMK,
$(BASENAME)
-handout
.pdf,-pvc
)
;
)
# main targets
all
:
$(VARIANTS
)
clean
:
$(
foreach
t,
$(TARGETS)
,
$(
call
LATEXMKC,
$(t)
,-c
)
;
)
find
$(BUILDDIR)
-type
f
-not
-name
"*.pdf"
-delete
distclean
:
$(
foreach
t,
$(TARGETS)
,
$(
call
LATEXMKC,
$(t)
,-C
)
;
)
rm
-rf
$(BUILDDIR)
define
TEMPLATE
=
$(BASENAME)-$(strip $(1)).pdf $(strip $(1)).build $(1)
:
setup
$(
call
LATEXMKV,
$(
strip
$(1)
)
,
)
$(strip $(1)).view
:
setup
$(
call
LATEXMKV,
$(
strip
$(1)
)
,-pv
)
$(strip $(1)).preview
:
setup
$(
call
LATEXMKV,
$(
strip
$(1)
)
,-pvc
)
$(strip $(1)).clean
:
setup
$(
call
LATEXMKV,
$(
strip
$(1)
)
,-c
)
$(strip $(1)).distclean
:
setup
$(
call
LATEXMKV,
$(
strip
$(1)
)
,-C
)
endef
$(foreach
variant,
$(VARIANTS),
$(eval
$(call
TEMPLATE,
$(variant))))
# dynamic targets
%.build
:
setup
$(
call
LATEXMK,
$@
,
)
%.view
:
setup
$(
call
LATEXMK,
$@
,
-pv
)
%.preview
:
setup
$(
call
LATEXMK,
$@
,
-pvc
)
%.clean
:
setup
$(
call
LATEXMK,
$@
,
-c
)
%.distclean
:
setup
$(
call
LATEXMK,
$@
,
-C
)
%/
:
mkdir
-p
$@
setup
:
.FORCE | $(BUILDDIR)/
.PHONY
:
all presentation handout notes clean distclean .FORCE
.EXPORT_ALL_VARIABLES
:
TEXINPUTS
:=
:.:
$(TEXDIRS)
# bibtex invoked from BUILDDIR, thus prepend './../'
BSTINPUTS
:=
./../
$(BSTDIR)
BIBINPUTS
:=
:.:./../
$(BIBDIRS)
# Disable implicit suffix and built-in rules (for performance and profit)
.SUFFIXES
:
MAKEFLAGS
+=
--no-builtin-rules
presentations/project-overview/build/.deps
deleted
100644 → 0
View file @
2a1068e3
This diff is collapsed.
Click to expand it.
presentations/project-overview/build/project-overview-handout.pdf
0 → 100644
View file @
9316bb9d
File added
presentations/project-overview/build/project-overview-notes.pdf
0 → 100644
View file @
9316bb9d
File added
presentations/project-overview/build/project-overview-presentation.pdf
0 → 100644
View file @
9316bb9d
File added
presentations/project-overview/
demo
.tex
→
presentations/project-overview/
project-overview
.tex
View file @
9316bb9d
...
...
@@ -34,13 +34,34 @@
\usepackage
{
lipsum
}
\usepackage
{
adjustbox
}
\usepackage
{
appendixnumberbeamer
}
% Colors
\def\primarycolor
{
tw-blue
}
\def\secondarycolor
{
tw-green
}
\def\accentcolor
{
tw-gray
}
% ----------------------------------------------------------------------------------------------------------------------------
% Hyperlinks
% ----------------------------------------------------------------------------------------------------------------------------
\usepackage
{
hyperref
}
\hypersetup
{
% colorlinks = false, linkbordercolor = {white}, linkbordercolor = tw-green!50, linkbordercolor = white,
% anchorcolor= tw-green, anchorcolor= white!0, citebordercolor = tw-gray!50, urlbordercolor = tw-blue!50,
colorlinks = true,
anchorcolor = black,
linkcolor =
\primarycolor
,
citecolor =
\primarycolor
,
urlcolor =
\primarycolor
}
% ----------------------------------------------------------------------------------------------------------------------------
% Customization
% ----------------------------------------------------------------------------------------------------------------------------
% Title
\makeatletter
\def\currentdate
{
\@
date
}
\makeatother
\def\title
{
StudyATHome Internationally - Project Overview
}
\def\shorttitle
{
\hspace
{
1.75em
}
\title
}
\def\title
{
StudyATHome Internationally
\\
Project Overview
}
\def\titletext
{
\href
{
https://embsys.technikum-wien.at/projects/studyathome-intl/index.php
}{
StudyATHome Internationally
}
\\
Project Overview
}
\def\shorttitle
{
\hspace
{
1.75em
}
Project Overview
}
\def\authorname
{
Martin Deinhofer, Alija Sabic
}
\def\authortext
{
\href
{
mailto:deinhofe@technikum-wien.at;sabic@technikum-wien.at?subject=
\title
}{
Ausgef
\"
uhrt von:
\authorname
}}
%\def\studentid{Personenkennzeichen: 1234567890}
...
...
@@ -48,14 +69,9 @@
%\def\supervisor{1\textsuperscript{st} Supervisor}
%\def\secondsupervisor{2\textsuperscript{nd} Supervisor}
\def\place
{
Vienna
}
% Colors
\def\primarycolor
{
tw-blue
}
\def\secondarycolor
{
tw-green
}
\def\accentcolor
{
tw-gray
}
% Misc
\author
{
\authorname
}
% ----------------------------------------------------------------------------------------------------------------------------
% Units
% ----------------------------------------------------------------------------------------------------------------------------
...
...
@@ -70,20 +86,6 @@
\usepackage
{
multirow
}
\usepackage
{
multicol
}
% ----------------------------------------------------------------------------------------------------------------------------
% Hyperlinks
% ----------------------------------------------------------------------------------------------------------------------------
\usepackage
{
hyperref
}
\hypersetup
{
% colorlinks = false, linkbordercolor = {white}, linkbordercolor = tw-green!50, linkbordercolor = white,
% anchorcolor= tw-green, anchorcolor= white!0, citebordercolor = tw-gray!50, urlbordercolor = tw-blue!50,
colorlinks = true,
anchorcolor = black,
linkcolor =
\primarycolor
,
citecolor =
\primarycolor
,
urlcolor =
\primarycolor
}
% ----------------------------------------------------------------------------------------------------------------------------
% Acronyms
% ----------------------------------------------------------------------------------------------------------------------------
...
...
@@ -121,27 +123,18 @@
\section
{
Agenda
}
\begin{frame}
{
Agenda
}
\begin{itemize}
\item
Project overview
\item
Identify synergies and potential problems
\item
Next steps
\begin{itemize}
\itemsep
3em
\item
<1->
Project overview
\item
<2->
Identify synergies and potential problems
\item
<3->
Next steps
\end{itemize}
\end{frame}
\note
{
Introduction
\begin{itemize}
\item
Issue 1
\item
Issue 2
\item
Issue 3
\end{itemize}
}
% ----------------------------------------------------------------------------------------------------------------------------
% Main Content
% ----------------------------------------------------------------------------------------------------------------------------
\section
{
Content
}
\section
{
Overview
}
\subsection
{
Project team
}
\begin{frame}
{
Project team
}
\begin{figure}
\centering
...
...
@@ -155,18 +148,17 @@
\end{figure}
\end{frame}
\subsection
{
Objectives
}
\begin{frame}
{
Objectives
}
\begin{itemize}
\itemsep
2
em
\begin{itemize}
\itemsep
3
em
\item
Objectives
\begin{itemize}
\itemsep
2
em
\begin{itemize}
\itemsep
1
em
\item
Implement international teaching setup for students in Assistive Technology (AT) and Smart Homes (SH)
\item
Improve attractivity for incoming students
\item
Improve accessibility of course contents
\end{itemize}
\end{itemize}
\begin{itemize}
\itemsep
2em
\item
Target group: People being „less mobile“ due to
\begin{itemize}
\itemsep
2
em
\begin{itemize}
\itemsep
1
em
\item
Job
\item
Family
\item
Disability
...
...
@@ -175,6 +167,7 @@
%Duration: 01.02.2018-31.01.2022
\end{frame}
\subsection
{
Tasks
}
\begin{frame}
{
Project tasks
}
\begin{itemize}
\itemsep
2em
\item
Internationalization at home (Proof of Concept)
...
...
@@ -187,6 +180,7 @@
\item
AsTeRICS eLearning
\end{itemize}
\end{frame}
\subsection
{
Network
}
\begin{frame}
{
Partner network
}
\begin{figure}
\centering
...
...
@@ -194,6 +188,7 @@
\caption
{
Network of partner universities
}
\end{figure}
\end{frame}
\subsection
{
Schedule
}
\begin{frame}
{
Schedule
}
\begin{figure}
\centering
...
...
@@ -203,29 +198,29 @@
\end{frame}
\
sub
section
{
eLearning
s
haring
}
\begin{frame}
{
Workflow - Main
}{
eLearning
s
haring
}
\section
{
eLearning
S
haring
}
\begin{frame}
{
eLearning
S
haring
}
{
Workflow - Main
}
\begin{figure}
\centering
\includegraphics
[width=0.7\textwidth]
{
eLearning-sharing-workflow-main.png
}
%
\caption
{
Workflow - Main
}
\end{figure}
\end{frame}
\begin{frame}
{
Workflow - Course Search
}
{
eLearning sharing
}
\begin{frame}
{
eLearning Sharing
}{
Workflow - Course Search
}
\begin{figure}
\centering
\includegraphics
[width=0.6\textwidth]
{
eLearning-sharing-course-search.pdf
}
%
\caption
{
Workflow - Course Search
}
\end{figure}
\end{frame}
\begin{frame}
{
Workflow - Matriculation
}
{
eLearning sharing
}
\begin{frame}
{
eLearning Sharing
}{
Workflow - Matriculation
}
\begin{figure}
\centering
\includegraphics
[width=0.6\textwidth]
{
eLearning-sharing-matriculation.pdf
}
%
\caption
{
Workflow - Matriculation
}
\end{figure}
\end{frame}
\begin{frame}
{
Workflow - Self Enrollment
}
{
eLearning sharing
}
\begin{frame}
{
eLearning Sharing
}{
Workflow - Self Enrollment
}
\begin{figure}
\centering
\includegraphics
[width=0.4\textwidth]
{
eLearning-sharing-self-enrollment.png
}
%
...
...
@@ -240,22 +235,22 @@
\end{figure}
\end{frame}
\
sub
section
{
Virtual
p
roject
t
eams
}
\begin{frame}
{
Workflow - Main
}{
Virtual
p
roject
t
eams
}
\section
{
Virtual
P
roject
T
eams
}
\begin{frame}
{
Virtual
P
roject
T
eams
}
{
Workflow - Main
}
\begin{figure}
\centering
\includegraphics
[width=0.65\textwidth]
{
virtual-project-teams-main.png
}
%
\caption
{
Workflow - Main
}
\end{figure}
\end{frame}
\begin{frame}
{
Workflow - Example
}{
Virtual
p
roject
t
eams
}
\begin{frame}
{
Virtual
P
roject
T
eams
}
{
Workflow - Example
}
\begin{figure}
\centering
\includegraphics
[width=0.85\textwidth]
{
virtual-project-teams-example.png
}
%
\caption
{
Workflow - Example
}
\end{figure}
\end{frame}
\begin{frame}
{
Workflow - Overview
}{
Virtual
p
roject
t
eams
}
\begin{frame}
{
Virtual
P
roject
T
eams
}
{
Workflow - Overview
}
\begin{figure}
\centering
\includegraphics
[width=0.7\textwidth]
{
virtual
_
project
_
teams.png
}
%
...
...
@@ -263,8 +258,8 @@
\end{figure}
\end{frame}
\
sub
section
{
Translation
/
Conversion
}
\begin{frame}
{
Translation
/
Conversion
}
\section
{
Translation
\&
Conversion
}
\begin{frame}
{
Translation
\&
Conversion
}
\begin{itemize}
\itemsep
2em
\item
Translation of learning material to English (3-5 courses)
\item
Conversion of learning material to accessible format (3-5 courses)
...
...
presentations/project-overview/resources/latex-sty/fhtw.sty
View file @
9316bb9d
...
...
@@ -174,7 +174,7 @@
\def\identation
{
0.4
}
% Content
\node
[title text style, shift={(\identation,8)}]
at (start)
{
\title
}
;
\node
[title text style, shift={(\identation,8)}]
at (start)
{
\title
text
}
;
\coordinate
(textstart) at (
$
(
current page.south west
)+(
0
.
1
,
-
0
.
1
)
$
);
\node
[norm text style, shift={(\identation,4.75)}]
at (textstart)
{
\authortext
}
;
%\node[norm text style, shift={(\identation,4.25)}] at (textstart) {\studentid};
...
...
@@ -222,13 +222,13 @@
%FIXME: Place via tikz environment
\vskip
0.75cm
{
\usebeamercolor
[fg]
{
author in sidebar
}
\insertshortauthor
[width=
\sidebarwidth
,center,respectlinebreaks]
\usebeamercolor
[fg]
{
author in sidebar
}
\hspace
{
1.1em
}
\insertshortauthor
[width=
8em
,center,respectlinebreaks]
}
\vskip
0.25cm
{
\usebeamercolor
[fg]
{
title in sidebar
}
\usebeamercolor
[fg]
{
title in sidebar
}
\hspace
{
-0.3em
}
\shorttitle
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment